/* ============================================================
   IET-GH Homepage — Professional Redesign
   ============================================================ */

.home-page {
    --hp-radius: 12px;
    --hp-radius-sm: 8px;
    --hp-shadow: 0 4px 24px rgba(37, 38, 56, 0.08);
    --hp-shadow-lg: 0 20px 60px rgba(37, 38, 56, 0.12);
    --hp-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shared typography */
.hp-section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--iet-primary);
    margin-bottom: 12px;
}

.hp-section-label.light {
    color: rgba(255, 255, 255, 0.75);
}

.hp-section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--iet-heading);
}

.hp-section-title.light {
    color: var(--white);
}

.hp-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hp-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--iet-primary);
    white-space: nowrap;
}

.hp-link-arrow:hover {
    gap: 12px;
    color: var(--iet-dark);
}

.hp-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--iet-text);
    margin-bottom: 28px;
}

/* ── Hero ─────────────────────────────────────────────────── */

.hp-hero {
    position: relative;
    height: 580px;
    overflow: hidden;
}

.hp-hero-swiper,
.hp-hero-swiper .swiper-wrapper,
.hp-hero-swiper .swiper-slide {
    height: 100%;
}

.hp-hero-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
}

.hp-hero-bg {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hp-hero-swiper .swiper-slide-active .hp-hero-bg {
    transform: scale(1.06);
}

.hp-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(7, 7, 25, 0.92) 0%, rgba(7, 7, 25, 0.6) 50%, rgba(7, 7, 25, 0.3) 100%),
        linear-gradient(180deg, transparent 50%, rgba(37, 38, 56, 0.7) 100%);
    z-index: 1;
}

.hp-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 680px;
    padding: 48px 0;
    animation: hpFadeUp 0.8s ease both;
}

.hp-hero-swiper .swiper-slide-active .hp-hero-content {
    animation: hpFadeUp 0.8s ease both;
}

@keyframes hpFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hp-hero-index {
    color: var(--iet-primary);
    font-weight: 700;
}

.hp-hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}

.hp-hero-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 560px;
}

.hp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hp-hero-controls {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hp-hero-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 20px 0 24px;
    background: linear-gradient(180deg, transparent, rgba(7, 7, 25, 0.6));
}

/* ── Quick Access ─────────────────────────────────────────── */

.hp-quick-access {
    margin-top: -56px;
    position: relative;
    z-index: 10;
    padding-bottom: 0;
}

.hp-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hp-quick-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: var(--hp-radius);
    padding: 22px 20px;
    box-shadow: var(--hp-shadow-lg);
    border: 1px solid var(--iet-border);
    transition: var(--hp-transition);
    color: var(--iet-heading);
}

.hp-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(37, 38, 56, 0.15);
    border-color: var(--iet-primary);
    color: var(--iet-heading);
}

.hp-quick-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 30, 47, 0.08);
    color: var(--iet-primary);
    border-radius: var(--hp-radius-sm);
    font-size: 1.25rem;
}

.hp-quick-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.hp-quick-body strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
}

.hp-quick-body small {
    font-size: 0.78rem;
    color: var(--iet-muted);
}

.hp-quick-arrow {
    color: var(--iet-muted);
    transition: var(--hp-transition);
}

.hp-quick-card:hover .hp-quick-arrow {
    color: var(--iet-primary);
    transform: translateX(4px);
}

/* ── About ────────────────────────────────────────────────── */

.hp-about {
    padding: 100px 0 80px;
    background: var(--white);
}

.hp-values-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.hp-values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--iet-text);
}

.hp-values-list i {
    color: var(--iet-primary);
    font-size: 1.1rem;
}

.hp-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hp-stat-card {
    background: var(--bg-section);
    border: 1px solid var(--iet-border);
    border-radius: var(--hp-radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--hp-transition);
}

.hp-stat-card:hover {
    background: var(--iet-dark);
    border-color: var(--iet-dark);
}

.hp-stat-card:hover .hp-stat-value,
.hp-stat-card:hover .hp-stat-label {
    color: var(--white);
}

.hp-stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--iet-primary);
    line-height: 1;
    margin-bottom: 8px;
    transition: var(--hp-transition);
}

.hp-stat-label {
    font-size: 0.85rem;
    color: var(--iet-muted);
    font-weight: 500;
    transition: var(--hp-transition);
}

/* ── Sectors ──────────────────────────────────────────────── */

.hp-sectors {
    padding: 80px 0;
    background: var(--bg-section);
}

.hp-sector-card {
    display: block;
    background: var(--white);
    border-radius: var(--hp-radius);
    overflow: hidden;
    box-shadow: var(--hp-shadow);
    border: 1px solid var(--iet-border);
    transition: var(--hp-transition);
    height: 100%;
    color: var(--iet-heading);
}

.hp-sector-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-lg);
    color: var(--iet-heading);
}

.hp-sector-image {
    height: 180px;
    overflow: hidden;
    background: var(--iet-dark);
}

.hp-sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hp-sector-card:hover .hp-sector-image img {
    transform: scale(1.06);
}

.hp-sector-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.hp-sector-body {
    padding: 24px;
}

.hp-sector-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--iet-primary);
    font-weight: 700;
    font-family: var(--font-heading);
}

.hp-sector-body h3 {
    font-size: 1.1rem;
    margin: 8px 0 12px;
}

.hp-sector-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--iet-primary);
    font-family: var(--font-heading);
}

/* ── President ────────────────────────────────────────────── */

.hp-president {
    padding: 80px 0;
    background: var(--white);
}

.hp-president-card {
    border-radius: var(--hp-radius);
    overflow: hidden;
    box-shadow: var(--hp-shadow-lg);
    border: 1px solid var(--iet-border);
}

.hp-president-media {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.hp-president-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.hp-president-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    background: linear-gradient(transparent, rgba(7, 7, 25, 0.9));
    color: var(--white);
}

.hp-president-info h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.hp-president-info span {
    color: var(--iet-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.hp-president-content {
    padding: 48px 48px 48px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hp-president-quote {
    font-style: italic;
    font-size: 1rem;
    color: var(--iet-heading);
    border-left: 3px solid var(--iet-primary);
    padding-left: 16px;
    margin: 20px 0;
}

.hp-president-content > p {
    color: var(--iet-text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.hp-president-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.hp-president-signature {
    max-height: 50px;
    width: auto;
}

.hp-president-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hp-president-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--iet-text);
}

.hp-president-contacts a i {
    color: var(--iet-primary);
}

/* ── News ─────────────────────────────────────────────────── */

.hp-news {
    padding: 80px 0;
    background: var(--bg-section);
}

.hp-news-featured {
    background: var(--white);
    border-radius: var(--hp-radius);
    overflow: hidden;
    box-shadow: var(--hp-shadow);
    border: 1px solid var(--iet-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hp-news-featured-image {
    display: block;
    height: 300px;
    overflow: hidden;
}

.hp-news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hp-news-featured:hover .hp-news-featured-image img {
    transform: scale(1.04);
}

.hp-news-featured-body {
    padding: 28px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hp-news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.8rem;
}

.hp-news-cat {
    background: var(--iet-primary);
    color: var(--white);
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.hp-news-meta time {
    color: var(--iet-muted);
}

.hp-news-featured-body h3 {
    font-size: 1.4rem;
    line-height: 1.35;
    margin-bottom: 12px;
}

.hp-news-featured-body h3 a {
    color: var(--iet-heading);
}

.hp-news-featured-body h3 a:hover {
    color: var(--iet-primary);
}

.hp-news-featured-body p {
    color: var(--iet-text);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
}

.hp-news-list {
    background: var(--white);
    border-radius: var(--hp-radius);
    border: 1px solid var(--iet-border);
    box-shadow: var(--hp-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hp-news-item {
    display: flex;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--iet-border);
    transition: background 0.2s ease;
}

.hp-news-item:hover {
    background: var(--bg-section);
}

.hp-news-thumb {
    flex: 0 0 88px;
    height: 72px;
    border-radius: var(--hp-radius-sm);
    overflow: hidden;
}

.hp-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-news-item h4 {
    font-size: 0.92rem;
    line-height: 1.4;
    margin: 6px 0 0;
}

.hp-news-item h4 a {
    color: var(--iet-heading);
}

.hp-news-item h4 a:hover {
    color: var(--iet-primary);
}

.hp-news-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px;
    margin-top: auto;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--iet-primary);
    transition: var(--hp-transition);
}

.hp-news-more:hover {
    background: var(--iet-primary);
    color: var(--white);
}

/* ── Leadership ───────────────────────────────────────────── */

.hp-leadership {
    padding: 80px 0;
    background: var(--white);
}

.hp-leadership-tabs {
    gap: 8px;
}

.hp-leadership-tabs .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--iet-text);
    border-radius: 999px;
    padding: 10px 24px;
    border: 1px solid var(--iet-border);
    background: var(--white);
    transition: var(--hp-transition);
}

.hp-leadership-tabs .nav-link:hover {
    border-color: var(--iet-primary);
    color: var(--iet-primary);
}

.hp-leadership-tabs .nav-link.active {
    background: var(--iet-primary);
    border-color: var(--iet-primary);
    color: var(--white);
}

.hp-leader-card {
    text-align: center;
    background: var(--bg-section);
    border-radius: var(--hp-radius);
    padding: 28px 16px 24px;
    border: 1px solid var(--iet-border);
    transition: var(--hp-transition);
    height: 100%;
}

.hp-leader-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow);
    border-color: transparent;
}

.hp-leader-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hp-leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-leader-card h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.hp-leader-card p {
    font-size: 0.8rem;
    color: var(--iet-primary);
    font-weight: 600;
    margin: 0;
}

/* ── Divisions Carousel ───────────────────────────────────── */

.hp-divisions {
    padding: 80px 0;
    background: var(--bg-section);
}

.divisions-swiper {
    position: relative;
    padding-bottom: 8px;
}

.hp-division-card {
    display: block;
    background: var(--white);
    border-radius: var(--hp-radius);
    overflow: hidden;
    box-shadow: var(--hp-shadow);
    border: 1px solid var(--iet-border);
    transition: var(--hp-transition);
    height: 100%;
    color: var(--iet-heading);
}

.hp-division-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-lg);
    color: var(--iet-heading);
}

.hp-division-image {
    height: 200px;
    overflow: hidden;
}

.hp-division-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hp-division-card:hover .hp-division-image img {
    transform: scale(1.05);
}

.hp-division-body {
    padding: 24px;
}

.hp-division-body h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.hp-division-body p {
    font-size: 0.85rem;
    color: var(--iet-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.hp-division-body span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--iet-primary);
    font-family: var(--font-heading);
}

.divisions-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.divisions-prev,
.divisions-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--iet-border);
    background: var(--white);
    color: var(--iet-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--hp-transition);
    cursor: pointer;
}

.divisions-prev:hover,
.divisions-next:hover {
    background: var(--iet-primary);
    border-color: var(--iet-primary);
    color: var(--white);
}

/* ── Services ─────────────────────────────────────────────── */

.hp-services {
    padding: 80px 0;
    background: var(--iet-dark);
    position: relative;
    overflow: hidden;
}

.hp-services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(228, 30, 47, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hp-services-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 28px;
}

.hp-service-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--hp-radius-sm);
    color: var(--white);
    transition: var(--hp-transition);
    height: 100%;
}

.hp-service-tile:hover {
    background: var(--iet-primary);
    border-color: var(--iet-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.hp-service-tile i {
    font-size: 1.3rem;
    color: var(--iet-primary);
    transition: var(--hp-transition);
}

.hp-service-tile:hover i {
    color: var(--white);
}

.hp-service-tile span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ── Documents ────────────────────────────────────────────── */

.hp-documents {
    padding: 80px 0;
    background: var(--white);
}

.hp-doc-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--bg-section);
    border: 1px solid var(--iet-border);
    border-radius: var(--hp-radius);
    transition: var(--hp-transition);
    height: 100%;
    color: var(--iet-heading);
}

.hp-doc-card:hover {
    border-color: var(--iet-primary);
    box-shadow: var(--hp-shadow);
    color: var(--iet-heading);
}

.hp-doc-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 30, 47, 0.08);
    color: var(--iet-primary);
    border-radius: var(--hp-radius-sm);
    font-size: 1.4rem;
}

.hp-doc-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.hp-doc-card span {
    font-size: 0.85rem;
    color: var(--iet-primary);
    font-weight: 600;
}

/* ── Testimonials ─────────────────────────────────────────── */

.hp-testimonials {
    padding: 48px 0;
    background: var(--bg-section);
}

.hp-testimonial-card {
    background: var(--white);
    border-radius: var(--hp-radius);
    padding: 28px 32px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: var(--hp-shadow);
    border: 1px solid var(--iet-border);
}

.hp-testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 14px;
    border: 3px solid var(--iet-primary);
}

.hp-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-testimonial-card p {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--iet-text);
    margin-bottom: 14px;
}

.hp-testimonial-card h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.hp-testimonial-card > span {
    color: var(--iet-primary);
    font-size: 0.8rem;
    font-weight: 600;
}

.hp-testimonials .testimonials-pagination {
    position: static !important;
    margin-top: 16px;
}

.hp-testimonials .testimonials-pagination .swiper-pagination-bullet {
    background: var(--iet-border);
    opacity: 1;
}

.hp-testimonials .testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--iet-primary);
}

/* ── CTA ──────────────────────────────────────────────────── */

.hp-cta {
    padding: 0 0 0;
}

.hp-cta .container {
    padding-top: 0;
}

.hp-cta-inner {
    background: linear-gradient(135deg, var(--iet-dark) 0%, #1a1b2e 100%);
    border-radius: var(--hp-radius);
    margin: 0 0 80px;
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.hp-cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(228, 30, 47, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hp-cta-inner h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
}

.hp-cta-inner p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 520px;
    line-height: 1.7;
}

.hp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    position: relative;
    z-index: 1;
}

/* Discover More — President + Explore combined */
.hp-discover {
    padding: 72px 0;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--white) 100%);
}

.hp-discover-panel {
    background: var(--white);
    border: 1px solid var(--iet-border);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(37, 38, 56, 0.08);
    overflow: hidden;
    position: relative;
}

.hp-discover-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--iet-primary) 0%, var(--iet-dark) 100%);
}

.hp-discover-header {
    text-align: center;
    padding: 40px 40px 32px;
    border-bottom: 1px solid var(--iet-border);
    background: linear-gradient(180deg, rgba(228, 30, 47, 0.04) 0%, transparent 100%);
}

.hp-discover-intro {
    max-width: 560px;
    margin: 16px auto 0;
    color: var(--iet-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hp-discover-panel > .row {
    padding: 36px 40px 40px;
    margin: 0;
}

.hp-discover-president {
    padding-right: 12px;
}

.hp-discover-president-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--iet-primary);
    margin-bottom: 16px;
}

.hp-discover-president-label i {
    font-size: 1.1rem;
    opacity: 0.85;
}

.hp-discover-president-title {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: var(--iet-heading);
    line-height: 1.3;
}

.hp-discover-president p {
    color: var(--iet-text);
    line-height: 1.85;
    margin-bottom: 20px;
}

.hp-discover-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--iet-primary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: gap 0.25s ease;
}

.hp-discover-link:hover {
    gap: 12px;
    color: var(--iet-dark);
}

.hp-discover-links {
    background: var(--bg-section);
    border: 1px solid var(--iet-border);
    border-radius: 12px;
    padding: 8px;
    height: 100%;
}

.hp-discover-links-heading {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--iet-muted);
    padding: 12px 16px 8px;
}

.hp-discover-link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid transparent;
    border-radius: 10px;
    margin-bottom: 6px;
    color: var(--iet-heading);
    transition: all 0.25s ease;
}

.hp-discover-link-card:last-child {
    margin-bottom: 0;
}

.hp-discover-link-card:hover {
    border-color: var(--iet-primary);
    box-shadow: 0 4px 16px rgba(228, 30, 47, 0.1);
    transform: translateX(4px);
    color: var(--iet-heading);
}

.hp-discover-link-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 30, 47, 0.08);
    color: var(--iet-primary);
    border-radius: 10px;
    font-size: 1.15rem;
    transition: all 0.25s ease;
}

.hp-discover-link-card:hover .hp-discover-link-icon {
    background: var(--iet-primary);
    color: var(--white);
}

.hp-discover-link-body {
    flex: 1;
    min-width: 0;
}

.hp-discover-link-body strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.hp-discover-link-body small {
    display: block;
    font-size: 0.78rem;
    color: var(--iet-muted);
    line-height: 1.4;
}

.hp-discover-link-arrow {
    color: var(--iet-muted);
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.hp-discover-link-card:hover .hp-discover-link-arrow {
    color: var(--iet-primary);
}

/* Service tiles on inner pages (light background) */
.hp-service-tile-page {
    background: var(--bg-section) !important;
    border: 1px solid var(--iet-border) !important;
    color: var(--iet-heading) !important;
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left;
    min-height: 140px;
}

.hp-service-tile-page i {
    color: var(--iet-primary) !important;
    margin-bottom: 8px;
}

.hp-service-tile-page span strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.hp-service-tile-page span small {
    display: block;
    color: var(--iet-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

.hp-service-tile-page:hover {
    background: var(--iet-primary) !important;
    border-color: var(--iet-primary) !important;
    color: var(--white) !important;
}

.hp-service-tile-page:hover i,
.hp-service-tile-page:hover span small {
    color: rgba(255, 255, 255, 0.85) !important;
}

.shop-cta-bar-light {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    background: var(--bg-section);
    border: 1px solid var(--iet-border);
    border-radius: var(--hp-radius);
}

.shop-cta-bar-light .shop-cta-text {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex: 1;
}

.shop-cta-bar-light .shop-cta-text i {
    font-size: 2rem;
    color: var(--iet-primary);
}

.shop-cta-bar-light h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.hp-testimonial-card-static {
    max-width: none;
    height: 100%;
    text-align: left;
}

.hp-testimonial-card-static .hp-testimonial-avatar {
    margin: 0 0 16px;
}

/* Responsive */

@media (max-width: 991px) {
    .hp-hero {
        height: 480px;
    }

    .hp-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-quick-access {
        margin-top: -40px;
    }

    .hp-about {
        padding: 72px 0 60px;
    }

    .hp-president-content {
        padding: 36px 28px;
    }

    .hp-discover-header {
        padding: 32px 28px 24px;
    }

    .hp-discover-panel > .row {
        padding: 28px 28px 32px;
    }

    .hp-discover-president {
        padding-right: 0;
        margin-bottom: 8px;
    }

    .hp-hero-controls {
        display: none;
    }
}

@media (max-width: 576px) {
    .hp-hero {
        height: 420px;
    }

    .hp-hero-title {
        font-size: 1.65rem;
    }

    .hp-hero-text {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .hp-hero-actions {
        flex-direction: column;
    }

    .hp-hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hp-quick-grid {
        grid-template-columns: 1fr;
    }

    .hp-quick-access {
        margin-top: 0;
        padding-top: 24px;
    }

    .hp-quick-card {
        padding: 16px;
    }

    .hp-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hp-president-media {
        min-height: 280px;
    }

    .hp-president-media img {
        min-height: 280px;
    }

    .hp-news-featured-image {
        height: 220px;
    }

    .hp-cta-inner {
        padding: 36px 24px;
        margin-bottom: 48px;
        flex-direction: column;
        text-align: center;
    }

    .hp-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .hp-cta-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hp-leadership-tabs {
        flex-wrap: wrap;
    }

    .hp-leadership-tabs .nav-link {
        font-size: 0.78rem;
        padding: 8px 16px;
    }

    .hp-discover {
        padding: 48px 0;
    }

    .hp-discover-header {
        padding: 28px 20px 20px;
    }

    .hp-discover-panel > .row {
        padding: 24px 16px 28px;
    }

    .hp-discover-president-title {
        font-size: 1.2rem;
    }

    .hp-discover-link-card {
        padding: 14px 16px;
    }
}
