
:root {
    --gold:          #C9A84C;
    --gold-light:    #E8C97A;
    --gold-pale:     #F5E9C8;
    --gold-dim:      #8A6F2E;
    --white:         #FFFFFF;
    --off-white:     #FAF8F4;
    --cream:         #F3EFE6;
    --dark:          #0D0D0D;
    --dark-2:        #1A1A1A;
    --dark-3:        #242424;
    --text-body:     #3A3530;
    --text-muted:    #7A7066;
    --text-light:    #B0A898;
    --navy:          #0C1A2E;
    --navy-mid:      #112240;
--font-display:  'Montserrat', sans-serif;
--font-body:     'Montserrat', sans-serif;
--font-accent:   'Montserrat', sans-serif;
    --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ===================================================
   NAVBAR
=================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.8rem 0;
    transition: all 0.6s var(--ease-in-out);
}
.navbar.scrolled {
    padding: 1.1rem 0;
    background: rgba(250, 248, 244, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}
.nav-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    opacity: 0;
    animation: fadeDown 0.9s var(--ease-out) 0.2s forwards;
}
.nav-brand-name {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1;
    transition: color 0.4s;
}
.navbar.scrolled .nav-brand-name { color: var(--dark); }
.nav-brand-sub {
    font-family: var(--font-accent);
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    opacity: 0;
    animation: fadeDown 0.9s var(--ease-out) 0.4s forwards;
}
.nav-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}
.navbar.scrolled .nav-link { color: var(--text-muted); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}
.nav-link:hover        { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 24px; height: 1.5px;
    background: var(--white);
    transition: all 0.4s var(--ease-out);
    border-radius: 1px;
}
.navbar.scrolled .hamburger span { background: var(--dark); }

/* ===================================================
   HERO
=================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}
.hero-bg-img.active { opacity: 1; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(8,6,2,0.82) 0%, rgba(12,26,46,0.6) 50%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
}
.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 2;
    pointer-events: none;
}
.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 4rem 7rem;
    width: 100%;
}
.hero-box {
    max-width: 680px;
    border-left: 1px solid rgba(201,168,76,0.5);
    padding-left: 3rem;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}
.hero-label-line {
    width: 40px; height: 1px;
    background: var(--gold);
}
.hero-label-text {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 2.2rem;
    opacity: 0;
    animation: fadeUp 1.1s var(--ease-out) 1s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 460px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 1.4s forwards;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.6rem;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-accent);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-101%);
    transition: transform 0.5s var(--ease-out);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover         { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(201,168,76,0.35); }
.btn-primary span,
.btn-primary svg           { position: relative; z-index: 1; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.6rem;
    background: transparent;
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Hero Stats */
.hero-stats-row {
    position: absolute;
    bottom: 0; right: 0;
    z-index: 3;
    display: flex;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 1.6s forwards;
}
.hero-stat-box {
    padding: 2rem 2.5rem;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201,168,76,0.25);
    border-left: 1px solid rgba(201,168,76,0.1);
    text-align: center;
    min-width: 140px;
}
.hero-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.hero-stat-label {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ===================================================
   SECTION BASE
=================================================== */
.section { padding: 8rem 0; }
.section-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 4rem;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.eyebrow-text {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
}
.section-title-lg {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -0.01em;
}
.section-title-lg em { font-style: italic; color: var(--gold-dim); }

/* ===================================================
   SCROLL REVEAL
=================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.left    { transform: translateX(-40px); }
.reveal.right   { transform: translateX(40px); }
.reveal.scale   { transform: scale(0.94); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===================================================
   ABOUT SECTION
=================================================== */
.about-section { background: var(--off-white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}
.about-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.95;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}
.about-features {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
}
.feature-row {
    display: flex;
    gap: 1.5rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    align-items: flex-start;
    transition: all 0.4s;
}
.feature-row:first-child { border-top: 1px solid rgba(201,168,76,0.12); }
.feature-row:hover { padding-left: 0.5rem; }
.feature-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}
.feature-row h4 {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 0.3rem;
}
.feature-row p {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-muted);
}

/* About Card */
.about-card {
    background: var(--navy);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-pale), transparent);
}
.about-card::after {
    content: 'MRO';
    position: absolute;
    bottom: -1rem; right: 2rem;
    font-family: var(--font-display);
    font-size: 9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
}
.about-card-label {
    font-family: var(--font-accent);
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}
.about-card-stat {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.about-card-stat:last-of-type { border-bottom: none; margin-bottom: 0; }
.about-card-stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
}
.about-card-stat-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    margin-top: 0.4rem;
    letter-spacing: 0.03em;
}

/* About Location Box */
.about-location {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--off-white);
    border: 1px solid rgba(201,168,76,0.2);
}
.about-location h4 {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 0.6rem;
}
.about-location p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}
.partnership-note {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.partnership-note-line { width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }
.partnership-note-text { font-size: 0.82rem; font-style: italic; color: var(--text-light); }

/* ===================================================
   SERVICES SECTION
=================================================== */
.services-section { background: var(--cream); }
.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 5rem;
}
.services-intro {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 420px;
    align-self: end;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(201,168,76,0.15);
}
.service-card {
    background: var(--off-white);
    padding: 2.8rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.5s var(--ease-out);
}
.service-card:hover              { background: var(--white); }
.service-card:hover::before      { width: 100%; }
.service-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 2rem;
}
.service-icon-wrap {
    width: 48px; height: 48px;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon-wrap svg    { width: 100%; height: 100%; stroke: var(--gold-dim); transition: stroke 0.3s; }
.service-card:hover .service-icon-wrap svg { stroke: var(--gold); }
.service-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.25;
}
.service-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.85;
}
/* ===== COURSES OFFERED SECTION ===== */

.courses-offered-section {
    background: var(--dark-2);
    padding: 8rem 0;
    position: relative;
}

.courses-offered-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Header */
.courses-header-box {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeUp 1s ease forwards;
}

.courses-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.courses-main-title span {
    color: var(--gold);
}

.courses-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid */
.courses-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Card */
.course-offer-card {
    background: #111827;
    padding: 3rem;
    border: 1px solid rgba(201,168,76,0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(40px);
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.course-offer-card:nth-child(1) { animation-delay: 0.2s; }
.course-offer-card:nth-child(2) { animation-delay: 0.4s; }
.course-offer-card:nth-child(3) { animation-delay: 0.6s; }

.course-offer-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(201,168,76,0.15);
}

/* Featured */
.featured-course {
    background: var(--navy);
    border-color: var(--gold);
}

/* Badge */
.course-badge {
    font-weight: 700;
    color: var(--gold);
    border: 1px solid var(--gold);
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

/* Title */
.course-offer-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.course-offer-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Points */
.course-points {
    list-style: none;
    padding: 0;
}

.course-points li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.course-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 1100px) {
    .courses-box-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .courses-box-grid {
        grid-template-columns: 1fr;
    }

    .courses-main-title {
        font-size: 2.2rem;
    }
}
/* ===================================================
   LEADERSHIP SECTION
=================================================== */
.leadership-section { background: var(--off-white); }
.leadership-intro {
    max-width: 500px;
    margin-bottom: 4rem;
}
.leadership-intro p {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.9;
}
.directors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.director-card {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    cursor: pointer;
}
.director-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: all 0.7s var(--ease-out);
}
.director-card:hover img { filter: grayscale(0%); transform: scale(1.04); }
.director-card-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.5s var(--ease-out);
}
.director-card:hover .director-card-line { width: 100%; }

/* ===================================================
   LOCATION SECTION
=================================================== */
.location-section {
    background: var(--navy);
    padding: 0;
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 550px;
}
.location-content {
    padding: 6rem 4rem 6rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.location-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.location-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.location-eyebrow-text {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
}
.location-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2.5rem;
}
.location-addresses {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}
.location-address-title {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}
.location-address-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}
.location-partner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.8rem;
    border-left: 2px solid var(--gold);
    background: rgba(255,255,255,0.03);
    margin-bottom: 2.5rem;
}
.location-partner-text { font-size: 0.82rem; font-style: italic; color: rgba(255,255,255,0.4); }
.location-partner-text span { color: var(--gold); }
.location-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.4s;
}
.location-cta:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.location-map iframe {
    width: 100%; height: 100%;
    min-height: 550px;
    border: none;
    display: block;
    filter: grayscale(20%) contrast(1.05);
}

/* ===================================================
   CONTACT SECTION
=================================================== */
.contact-section { background: var(--off-white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}
.contact-info-item {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.contact-info-item:first-child { border-top: 1px solid rgba(201,168,76,0.12); }
.contact-icon {
    width: 40px; height: 40px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }
.contact-info-item h4 {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 0.5rem;
}
.contact-info-item p {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Contact Form Box */
.contact-form-box {
    background: var(--white);
    padding: 3.5rem;
    border: 1px solid rgba(201,168,76,0.15);
    position: relative;
}
.contact-form-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 3px;
    background: var(--gold);
}
.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 2.5rem;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.field-group {
    margin-bottom: 1.8rem;
    position: relative;
}
.field-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.7rem;
}
.field-group input,
.field-group textarea,
.field-group select {
    width: 100%;
    padding: 0.9rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(201,168,76,0.25);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
}
.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus    { border-bottom-color: var(--gold); }
.field-group textarea        { resize: none; height: 90px; }
.field-group select option   { background: var(--white); color: var(--dark); }

/* ===================================================
   FOOTER
=================================================== */
.footer {
    background: var(--dark-2);
    padding: 5rem 0 2.5rem;
}
.footer-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}
.footer-brand-sub {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.footer-brand-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
    line-height: 1.8;
    max-width: 320px;
}
.footer-col h5 {
    font-family: var(--font-accent);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.8rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-col a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 300;
    transition: color 0.3s;
    display: inline-block;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copyright {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.04em;
}
.footer-cert {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
}

/* ===================================================
   MODAL
=================================================== */
.modal-overlay-bg {
    position: fixed;
    inset: 0;
    background: rgba(13,13,13,0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.modal-overlay-bg.active { opacity: 1; pointer-events: all; }
.modal-box {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -48%) scale(0.97);
    z-index: 10000;
    width: min(700px, 95vw);
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    padding: 4rem;
    border-top: 3px solid var(--gold);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s var(--ease-out);
}
.modal-box.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}
.modal-close-btn {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 36px; height: 36px;
    background: transparent;
    border: 1px solid rgba(201,168,76,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.modal-close-btn:hover         { background: var(--gold); border-color: var(--gold); }
.modal-close-btn:hover svg     { stroke: var(--dark); }
.modal-close-btn svg           { width: 16px; height: 16px; stroke: var(--text-muted); }
.modal-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.modal-subtitle {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* ===================================================
   KEYFRAME ANIMATIONS
=================================================== */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1100px) {
    .services-grid                        { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid            { grid-template-columns: 1fr; gap: 4rem; }
    .location-grid                        { grid-template-columns: 1fr; }
    .location-map iframe                  { min-height: 360px; }
}
@media (max-width: 900px) {
    .services-header                      { grid-template-columns: 1fr; }
    .directors-grid                       { grid-template-columns: 1fr; }
    .footer-grid                          { grid-template-columns: 1fr 1fr; }
    .hero-stats-row                       { display: none; }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0; right: -110%;
        width: 280px; height: 100vh;
        background: rgba(250,248,244,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 7rem 3rem;
        gap: 2.5rem;
        transition: right 0.5s var(--ease-out);
        border-left: 1px solid rgba(201,168,76,0.15);
    }
    .nav-menu.open                        { right: 0; }
    .nav-menu .nav-link                   { color: var(--text-muted); }
    .hamburger                            { display: flex; }
    .section-inner,
    .nav-container,
    .footer-inner,
    .location-content                     { padding-left: 1.8rem; padding-right: 1.8rem; }
    .hero-container                       { padding: 0 1.8rem 5rem; }
    .services-grid                        { grid-template-columns: 1fr; }
    .hero-box                             { padding-left: 1.5rem; }
    .footer-grid                          { grid-template-columns: 1fr; }
    .contact-form-box                     { padding: 2.5rem 2rem; }
    .modal-box                            { padding: 2.5rem 2rem; }
    .form-row-2                           { grid-template-columns: 1fr; }
}

/* ===================================================
   COURSES SECTION
=================================================== */
.courses-section { background: var(--dark-2); }

.courses-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
}
.courses-header .section-title-lg  { color: var(--white); }
.courses-header .section-title-lg em { color: var(--gold); }
.courses-header .eyebrow-text       { color: var(--gold); }
.courses-intro {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.9;
    max-width: 440px;
    align-self: end;
}

/* Bases Bar */
.bases-bar {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 1.8rem 2.5rem;
    border: 1px solid rgba(201,168,76,0.18);
    background: rgba(255,255,255,0.02);
    margin-bottom: 4rem;
}
.bases-bar-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-accent);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    flex-shrink: 0;
}
.bases-bar-label svg { stroke: var(--gold); }
.bases-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}
.base-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
}
.base-item svg    { stroke: var(--gold); flex-shrink: 0; }
.base-item strong { font-weight: 500; color: var(--white); }
.base-item em     { font-style: normal; color: var(--text-light); font-size: 0.82rem; }
.base-divider {
    width: 1px; height: 24px;
    background: rgba(201,168,76,0.2);
}
.bases-advantages {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: wrap;
    margin-left: auto;
}
.base-adv-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
}
.base-adv-item svg { stroke: var(--gold); flex-shrink: 0; }

/* Course Cards Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(201,168,76,0.1);
    margin-bottom: 3rem;
}
.course-card {
    background: #111827;
    padding: 3rem 2.8rem;
    position: relative;
    transition: background 0.4s;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.course-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.5s var(--ease-out);
}
.course-card:hover            { background: #0f1520; }
.course-card:hover::before    { width: 100%; }

.course-card--featured {
    background: var(--navy);
}
.course-card--featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-family: var(--font-accent);
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    color: var(--dark);
    background: var(--gold);
    padding: 0.3rem 0.7rem;
}

.course-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.course-badge {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    border: 1px solid rgba(201,168,76,0.3);
    padding: 0.4rem 1rem;
}
.course-icon {
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.35;
    transition: opacity 0.3s;
}
.course-card:hover .course-icon { opacity: 0.7; }
.course-icon svg { width: 100%; height: 100%; stroke: var(--gold); }

.course-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.4rem;
}
.course-subtitle {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.course-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.85;
    margin-bottom: 2rem;
    flex: 1;
}

/* Tags */
.course-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}
.course-tag {
    font-family: var(--font-accent);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 0.35rem 0.8rem;
    transition: all 0.3s;
}
.course-card:hover .course-tag { border-color: rgba(201,168,76,0.25); color: var(--gold); }

/* Checklist (CPL) */
.course-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: auto;
}
.course-check-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
}
.course-check-item svg { stroke: var(--gold); flex-shrink: 0; }

/* CTA Strip */
.courses-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.2rem 3rem;
    border: 1px solid rgba(201,168,76,0.2);
    background: rgba(201,168,76,0.04);
    flex-wrap: wrap;
}
.courses-cta-label {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.3rem;
}
.courses-cta-sub {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
}

/* Responsive */
@media (max-width: 1100px) {
    .courses-grid   { grid-template-columns: 1fr 1fr; }
    .courses-header { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .bases-bar      { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .bases-advantages { margin-left: 0; }
}
@media (max-width: 768px) {
    .courses-grid        { grid-template-columns: 1fr; }
    .courses-cta-strip   { flex-direction: column; align-items: flex-start; padding: 2rem 1.8rem; }
}/* ===================================================
   🔥 FINAL MOBILE OPTIMIZATION PATCH
   Add at the very bottom of your CSS
=================================================== */

/* Extra safety: prevent horizontal overflow */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Improve small tablets */
@media (max-width: 1024px) {
    .section-inner,
    .nav-container,
    .footer-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero-container {
        padding: 0 2rem 5rem;
    }

    .about-grid,
    .contact-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .directors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= PHONE VIEW ================= */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 1.2rem 0;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-brand-name {
        font-size: 1.2rem;
    }

    /* Mobile menu */
    .nav-menu {
        width: 260px;
        padding: 6rem 2rem;
    }

    /* Hero */
    .hero {
        min-height: 600px;
        height: auto;
        align-items: center;
        padding-top: 5rem;
    }

    .hero-container {
        padding: 0 1.5rem 3rem;
    }

    .hero-box {
        padding-left: 1.5rem;
        border-left-width: 1px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .hero-stats-row {
        display: none;
    }

    /* Sections */
    .section {
        padding: 4rem 0;
    }

    .section-inner {
        padding: 0 1.5rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Courses */
    .courses-offered-inner {
        padding: 0 1.5rem;
    }

    .courses-box-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .course-offer-card {
        padding: 2rem;
    }

    /* Leadership */
    .directors-grid {
        grid-template-columns: 1fr;
    }

    .director-card img {
        height: 300px;
    }

    /* Location */
    .location-content {
        padding: 3rem 1.5rem;
        border-right: none;
    }

    .location-title {
        font-size: 1.8rem;
    }

    .location-map iframe {
        min-height: 320px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-box {
        padding: 2rem 1.5rem;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-inner {
        padding: 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================= SMALL PHONES (360px) ================= */
@media (max-width: 420px) {

    .hero-title {
        font-size: 1.6rem;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .hero-box {
        padding-left: 1rem;
    }

    .course-offer-card {
        padding: 1.8rem;
    }

    .contact-form-box {
        padding: 1.8rem 1.2rem;
    }
}