/* ═══════════════════════════════════════════════════════════════
   THE ART OF LIVING GHAZIABAD – main.css
   Fonts: Cormorant Garamond (display) + Manrope (body)
   Architecture: design tokens → base → components → sections → utilities
═══════════════════════════════════════════════════════════════ */

/* ─── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
    /* 60% — Warm neutrals */
    --bg-primary: #F8F4EC;
    --bg-secondary: #FDFBF7;
    --bg-soft: #F3EEE4;

    /* 30% — Deep navy blue */
    --primary: #1E3A5F;
    --primary-light: #2D4F7A;
    --primary-dark: #142A45;

    /* 10% — Warm gold accent */
    --accent: #D4A437;
    --accent-light: #E0B95A;
    --accent-dark: #B98A22;

    /* Support — Sage green */
    --sage: #7A8B6F;
    --sage-light: #A3B197;
    --sage-dark: #5F7055;

    /* Text */
    --text-heading: #1E3A5F;
    --text-body: #4D5562;
    --text-muted: #7A7A7A;

    /* Borders */
    --border: #E8E1D5;
    --border-light: #F1EBE2;

    /* Shadows */
    --shadow: 0 10px 30px rgba(30, 58, 95, .08);
    --shadow-md: 0 20px 50px rgba(30, 58, 95, .12);
    --shadow-lg: 0 30px 70px rgba(30, 58, 95, .16);

    /* Radius */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --ease: cubic-bezier(.25, .46, .45, .94);
    --transition: .35s var(--ease);

    /* Fonts */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;

    /* Navbar height (used for offset) */
    --nav-h: 72px;
    --sub-h: 40px;
    --total-header-h: calc(var(--nav-h) + var(--sub-h));
}

/* ─── 2. BASE RESET & TYPOGRAPHY ───────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--total-header-h) + 16px);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-body);
    background: var(--bg-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    color: var(--text-heading);
    line-height: 1.2;
}

em {
    font-style: italic;
    color: var(--accent);
}

::selection {
    background: var(--accent-light);
    color: var(--primary-dark);
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}


/* ─── 3. SHARED UTILITY CLASSES ────────────────────────────── */
.section-kicker {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .75rem;
}

.section-kicker::before,
.section-kicker::after {
    content: '—';
    display: inline-block;
    margin: 0 .5em;
    opacity: .5;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-inline: auto;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 3.5rem;
}

/* Reveal animations */
.reveal-section .reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
    transition-delay: var(--delay, 0ms);
}

.reveal-section.is-visible .reveal-item {
    opacity: 1;
    transform: translateY(0);
}


/* ─── 4. BUTTONS ───────────────────────────────────────────── */
.btn {
    border-radius: 50px !important;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all var(--transition);
}

.aol-btn-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    padding: .7rem 2rem;
    font-size: .95rem;
    letter-spacing: .02em;
}

.aol-btn-primary:hover,
.aol-btn-primary:focus {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 164, 55, .35);
}

.aol-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
    padding: .7rem 2rem;
    font-size: .95rem;
}

.aol-btn-outline:hover,
.aol-btn-outline:focus {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.aol-btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: 2px solid #25D366;
    padding: .7rem 1.8rem;
    font-size: .95rem;
}

.aol-btn-whatsapp:hover,
.aol-btn-whatsapp:focus {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
}


/* ─── 5. SUBHEADER ─────────────────────────────────────────── */
.subheader {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, .85);
    height: var(--sub-h);
    position: sticky;
    top: 0;
    z-index: 1060;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: transform .3s var(--ease);
}

.subheader.hide {
    transform: translateY(-100%);
}

.subheader-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--sub-h);
    gap: .5rem;
}

.subheader-contact {
    display: flex;
    align-items: center;
    gap: .25rem;
    flex-wrap: wrap;
}

.sub-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .75rem;
    font-weight: 500;
    padding: .2rem .7rem;
    border-radius: 50px;
    color: rgba(255, 255, 255, .85);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.sub-pill:hover {
    color: var(--accent-light);
}

.sub-pill.no-link {
    cursor: default;
}

.sub-pill i {
    color: var(--accent-light);
    font-size: .8rem;
}

.subheader-social {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.sub-label {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    white-space: nowrap;
}

.social-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    color: rgba(255, 255, 255, .75);
    transition: all var(--transition);
}

.social-dot:hover,
.social-dot:focus {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

.social-dot.whatsapp:hover {
    background: #25D366;
}


/* ─── 6. NAVBAR ────────────────────────────────────────────── */
.aol-navbar {
    background: var(--bg-secondary) !important;
    border-bottom: 1px solid var(--border-light);
    height: var(--nav-h);
    padding: 0;
    position: sticky;
    top: var(--sub-h);
    z-index: 1050;
    box-shadow: var(--shadow);
    transition: box-shadow .3s var(--ease), background .3s var(--ease), top .3s var(--ease);
}

.aol-navbar.scrolled {
    box-shadow: var(--shadow-md);
    top: 0;
    background: rgba(253, 251, 247, .97) !important;
    backdrop-filter: blur(12px);
}

.aol-navbar.subheader-hidden {
    top: 0;
}

/* Brand */
.aol-brand {    
    
}

.aol-brand img {    
    height: 56px;    
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-main {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: .01em;
}

.brand-sub {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
}

/* Nav links */
.aol-link {
    font-family: var(--font-body) !important;
    font-size: .875rem !important;
    font-weight: 600 !important;
    color: var(--text-body) !important;
    letter-spacing: .02em;
    padding: .5rem .75rem !important;
    border-radius: var(--radius-sm);
    position: relative;
    transition: color var(--transition), background var(--transition);
}

.aol-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: left var(--transition), right var(--transition);
}

.aol-link:hover,
.aol-link:focus,
.aol-link.active {
    color: var(--primary) !important;
    background: var(--bg-soft);
}

.aol-link:hover::after,
.aol-link.active::after {
    left: 12px;
    right: 12px;
}

/* CTA Nav Button */
.aol-cta-btn {
    background: var(--accent) !important;
    color: #fff !important;
    padding: .55rem 1.3rem !important;
    border-radius: 50px !important;
    font-size: .85rem !important;
    font-weight: 700 !important;
    border: none;
    box-shadow: 0 4px 16px rgba(212, 164, 55, .3);
    transition: all var(--transition);
}

.aol-cta-btn:hover,
.aol-cta-btn:focus {
    background: var(--primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, .25);
}

.aol-cta-btn::after {
    display: none;
}

/* Dropdown */
.aol-dropdown {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-md) !important;
    padding: .6rem !important;
    min-width: 220px;
    animation: dropIn .2s var(--ease);
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aol-dropdown .dropdown-item {
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    padding: .55rem 1rem;
    transition: all var(--transition);
}

.aol-dropdown .dropdown-item:hover,
.aol-dropdown .dropdown-item:focus {
    background: var(--bg-soft);
    color: var(--primary);
}

.aol-dropdown .dropdown-item i {
    color: var(--accent);
    width: 16px;
}

/* Hamburger toggler */
.aol-toggler {
    border: none !important;
    background: transparent !important;
    padding: .5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 40px;
}

.aol-toggler:focus {
    box-shadow: none;
}

.tog-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all .35s var(--ease);
    transform-origin: center;
}

.aol-toggler[aria-expanded="true"] .tog-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.aol-toggler[aria-expanded="true"] .tog-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.aol-toggler[aria-expanded="true"] .tog-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width:991px) {
    .navbar-collapse {
        background: var(--bg-secondary);
        border-radius: var(--radius);
        margin-top: .75rem;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border);
    }

    .aol-link {
        padding: .65rem 1rem !important;
    }

    .aol-link::after {
        display: none;
    }

    .aol-cta-btn {
        margin-top: .5rem;
        text-align: center;
        display: block;
    }

    .aol-dropdown {
        box-shadow: none !important;
        background: var(--bg-soft) !important;
        border: none !important;
    }
}


/* ─── 7. HERO SECTION ──────────────────────────────────────── */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item,
.hero-img-wrap {
    height: 100vh;
    min-height: 560px;
    max-height: 900px;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.carousel-item.active .hero-bg-img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(20, 42, 69, .75) 0%,
            rgba(20, 42, 69, .5) 50%,
            rgba(20, 42, 69, .3) 100%);
}

.hero-caption {
    text-align: left;
    max-width: 640px;
    bottom: auto;
    top: 50%;
    left: 8%;
    right: auto;
    transform: translateY(-50%);
    padding: 0;
}

@media (max-width: 767px) {
    .hero-caption {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .carousel-item,
    .hero-img-wrap {
        height: 80vh;
        min-height: 500px;
    }
}

.hero-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent-light);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: .35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    animation: fadeSlideUp .6s var(--ease) both;
}

.hero-heading {
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.1rem;
    animation: fadeSlideUp .6s var(--ease) .15s both;
}

.hero-heading em {
    color: var(--accent-light);
}

.hero-sub {
    font-size: clamp(.95rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, .85);
    line-height: 1.65;
    margin-bottom: 2rem;
    animation: fadeSlideUp .6s var(--ease) .3s both;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    animation: fadeSlideUp .6s var(--ease) .45s both;
}

.hero-btn-primary {
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
    padding: .8rem 2.2rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .95rem;
    border-radius: 50px;
}

.hero-btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

.hero-btn-outline {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
    padding: .8rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, .25);
    border-color: #fff;
    color: #fff;
}

/* Hero indicators */
.hero-indicators {
    bottom: 80px;
    gap: .45rem;
}

.hero-indicators button {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .35) !important;
    border: none;
    transition: all var(--transition);
    opacity: 1 !important;
}

.hero-indicators button.active {
    background: var(--accent) !important;
    width: 52px;
}

/* Hero controls */
.hero-ctrl {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity var(--transition);
}

.hero-section:hover .hero-ctrl {
    opacity: 1;
}

.hero-ctrl-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: all var(--transition);
}

.hero-ctrl:hover .hero-ctrl-inner {
    background: var(--accent);
    border-color: var(--accent);
}

.carousel-control-prev.hero-ctrl {
    left: 24px;
}

.carousel-control-next.hero-ctrl {
    right: 24px;
}

/* Hero scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-scroll-cue span {
    display: block;
    width: 2px;
    height: 10px;
    background: rgba(255, 255, 255, .5);
    border-radius: 2px;
    animation: bounce 1.5s ease infinite;
}

.hero-scroll-cue span:nth-child(2) {
    animation-delay: .15s;
}

.hero-scroll-cue span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        opacity: .3;
        transform: scaleY(.7);
    }

    40% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ─── 8. STATS BAR ─────────────────────────────────────────── */
.stats-bar {
    background: var(--primary);
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    padding: .5rem 2.5rem;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
}

.stat-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, .12);
}

@media (max-width: 576px) {
    .stat-item {
        padding: .75rem 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .stats-grid {
        gap: 1rem;
    }
}


/* ─── 9. SERVICES SECTION ──────────────────────────────────── */
.services-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.75rem;
}

.service-card {
    background: var(--bg-primary);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: default;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.svc-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.svc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.service-card:hover .svc-img-wrap img {
    transform: scale(1.08);
}

.svc-icon-badge {
    position: absolute;
    bottom: -18px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(212, 164, 55, .4);
    border: 3px solid var(--bg-primary);
    z-index: 2;
}

.svc-body {
    padding: 1.75rem 1.5rem 1.5rem;
}

.svc-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: .6rem;
}

.svc-desc {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.svc-link {
    font-size: .85rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: .02em;
    transition: color var(--transition), gap var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.svc-link:hover {
    color: var(--primary);
}


/* ─── 10. ABOUT SECTION ────────────────────────────────────── */
.about-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 164, 55, .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Mosaic */
.about-mosaic {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mosaic-main {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.mosaic-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mosaic-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mosaic-sm {
    border-radius: var(--radius);
    overflow: hidden;
    flex: 1;
}

.mosaic-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mosaic-sm-accent {
    background: var(--bg-soft);
}

.mosaic-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--bg-primary);
}

.mb-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
}

.mb-label {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    margin-top: .25rem;
}

/* About content */
.about-content {
    padding-left: 2rem;
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
    }
}

.about-lead {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-body {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pillar-item>i {
    width: 36px;
    height: 36px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: .9rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.pillar-item div {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.pillar-item strong {
    font-size: .95rem;
    color: var(--text-heading);
    font-weight: 700;
}

.pillar-item span {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}


/* ─── 11. COURSES SECTION ──────────────────────────────────── */
.courses-section {
    padding: 6rem 0;
    background: var(--bg-soft);
    position: relative;
}

.courses-nav-row {
    display: flex;
    justify-content: flex-end;
    gap: .5rem;
    margin-bottom: 1.25rem;
}

.swiper-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border);
    color: var(--primary);
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.swiper-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.courses-swiper {
    padding-bottom: 3rem !important;
}

.course-card {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition);
}

.course-card:hover {
    box-shadow: var(--shadow-md);
}

.course-img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.course-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.course-card:hover .course-img-wrap img {
    transform: scale(1.07);
}

.course-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: 50px;
}

.course-level {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(20, 42, 69, .75);
    color: rgba(255, 255, 255, .9);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .25rem .7rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.course-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .65rem;
}

.course-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-heading);
    line-height: 1.2;
}

.course-desc {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.cmeta-item {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-soft);
    padding: .2rem .65rem;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.cmeta-item i {
    color: var(--accent);
    font-size: .75rem;
}

.course-btn {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .875rem;
    border-radius: 50px;
    padding: .6rem 1.4rem;
    border: 2px solid var(--primary);
    transition: all var(--transition);
    text-align: center;
    display: inline-block;
    align-self: flex-start;
}

.course-btn:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    transform: translateY(-1px);
}

.courses-pagination .swiper-pagination-bullet {
    background: var(--primary) !important;
    opacity: .3;
}

.courses-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--accent) !important;
}


/* ─── 12. WHY CHOOSE US ────────────────────────────────────── */
.why-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width:576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--border);
}

.why-icon-wrap {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.why-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: .15rem;
}

.why-label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: .35rem;
    letter-spacing: .01em;
}

.why-desc {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}


/* ─── 13. PARALLAX CTA ─────────────────────────────────────── */
.parallax-cta {
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
}

.parallax-bg {
    position: absolute;
    inset: -80px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 42, 69, .82), rgba(30, 58, 95, .75));
}

.parallax-content {
    position: relative;
    z-index: 2;
}

.pcta-ornament {
    font-size: 1rem;
    letter-spacing: .4em;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    opacity: .7;
}

.pcta-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.pcta-attr {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .08em;
    margin-bottom: 2.5rem;
}

.pcta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.pcta-btn-primary {
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
    padding: .85rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
}

.pcta-btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

.pcta-btn-outline {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .5);
    padding: .85rem 2.2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.pcta-btn-outline:hover {
    background: rgba(255, 255, 255, .25);
    color: #fff;
    border-color: #fff;
}

@supports not (background-attachment: fixed) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 767px) {
    .parallax-bg {
        background-attachment: scroll;
        inset: 0;
    }
}


/* ─── 14. GALLERY SECTION ──────────────────────────────────── */
.gallery-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 2.5rem;
}

.gf-btn {
    padding: .45rem 1.4rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: transparent;
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: .04em;
}

.gf-btn:hover,
.gf-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item:nth-child(3n+1) {
        grid-row: span 2;
    }
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    display: block;
    background: var(--bg-soft);
    transition: transform var(--transition);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 42, 69, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        aspect-ratio: 1;
    }
}


/* ─── 15. TESTIMONIALS SECTION ─────────────────────────────── */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-soft);
    position: relative;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 5%;
    font-family: var(--font-display);
    font-size: 20rem;
    color: rgba(30, 58, 95, .04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.testi-nav-row {
    display: flex;
    justify-content: flex-end;
    gap: .5rem;
    margin-bottom: 1.25rem;
}

.testi-swiper {
    padding-bottom: 3rem !important;
}

.testi-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: box-shadow var(--transition);
}

.testi-card:hover {
    box-shadow: var(--shadow-md);
}

.testi-stars {
    display: flex;
    gap: .25rem;
}

.testi-stars .fa-star {
    font-size: .85rem;
    color: var(--border);
}

.testi-stars .fa-star.filled {
    color: var(--accent);
}

.testi-quote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-body);
    line-height: 1.7;
    border: none;
    padding: 0;
    flex: 1;
    position: relative;
}

.testi-qmark {
    color: var(--accent);
    font-size: 1.2rem;
    margin-right: .4rem;
    vertical-align: -2px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2.5px solid var(--accent-light);
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--text-heading);
}

.testi-role {
    font-size: .78rem;
    color: var(--text-muted);
}

.testi-pagination .swiper-pagination-bullet {
    background: var(--primary) !important;
    opacity: .3;
}

.testi-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--accent) !important;
}


/* ─── 16. CONTACT SECTION ──────────────────────────────────── */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

/* Info card */
.contact-info-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
}

.cinfo-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cinfo-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cinfo-icon {
    width: 38px;
    height: 38px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: .9rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.cinfo-item strong {
    display: block;
    font-size: .85rem;
    color: var(--text-heading);
    font-weight: 700;
    margin-bottom: .25rem;
}

.cinfo-item p,
.cinfo-item a {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.cinfo-item a:hover {
    color: var(--accent);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-map iframe {
    display: block;
}

/* Form card */
.contact-form-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
}

/* Inputs */
.aol-input {
    background: var(--bg-primary) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-body) !important;
    font-size: .9rem !important;
    color: var(--text-body) !important;
    padding: .75rem 1rem !important;
    transition: border-color var(--transition), box-shadow var(--transition) !important;
}

.aol-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, .1) !important;
    outline: none !important;
}

.aol-input::placeholder {
    color: var(--text-muted) !important;
}

.form-label {
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: .45rem;
}

.form-label span {
    color: var(--accent);
}

.form-submit-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    padding-top: .5rem;
}

.form-submit-btn {
    min-width: 180px;
}

/* Feedback messages */
.form-success-msg,
.form-error-msg {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: .9rem;
}

.form-success-msg {
    background: rgba(122, 139, 111, .1);
    border: 1px solid var(--sage-light);
    color: var(--sage-dark);
}

.form-success-msg i {
    color: var(--sage);
    font-size: 1.2rem;
    margin-top: 2px;
}

.form-error-msg {
    background: rgba(220, 53, 69, .08);
    border: 1px solid rgba(220, 53, 69, .3);
    color: #842029;
}

.form-error-msg i {
    color: #dc3545;
    font-size: 1.2rem;
    margin-top: 2px;
}

.form-success-msg strong,
.form-error-msg strong {
    display: block;
    margin-bottom: .2rem;
}

.form-success-msg p,
.form-error-msg p {
    margin: 0;
    font-size: .85rem;
    opacity: .85;
}


/* ─── 17. FOOTER ───────────────────────────────────────────── */
.aol-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, .7);
    position: relative;
    padding-top: 0;
}


.footer-main {
    padding: 3.5rem 0 3rem;
}

/* Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1rem;
}

.footer-brand img {
        
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand-sub {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent-light);
}

.footer-tagline {
    font-size: .875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.fsoc-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    transition: all var(--transition);
}

.fsoc-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.fsoc-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

/* Links */
.footer-heading {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.footer-links a {
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a i {
    color: var(--accent);
    font-size: .7rem;
    flex-shrink: 0;
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

/* Contact list */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    font-size: .875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .65);
}

.footer-contact-list i {
    color: var(--accent);
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, .65);
    transition: color var(--transition);
}

.footer-contact-list a:hover {
    color: var(--accent-light);
}

/* Newsletter */
.newsletter-title {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    margin-bottom: .25rem;
}

.newsletter-desc {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: .75rem;
}

.newsletter-form {
    width: 100%;
}

.nl-input-wrap {
    display: flex;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
    overflow: hidden;
}

.nl-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    padding: .6rem 1.1rem;
    font-family: var(--font-body);
    font-size: .85rem;
    color: rgba(255, 255, 255, .85);
    outline: none;
}

.nl-input-wrap input::placeholder {
    color: rgba(255, 255, 255, .35);
}

.nl-input-wrap button {
    background: var(--accent);
    border: none;
    padding: .6rem 1rem;
    color: #fff;
    font-size: .9rem;
    cursor: pointer;
    transition: background var(--transition);
}

.nl-input-wrap button:hover {
    background: var(--accent-dark);
}

.nl-feedback {
    font-size: .78rem;
    margin-top: .4rem;
    min-height: 1.2em;
}

.nl-feedback.success {
    color: #86efac;
}

.nl-feedback.error {
    color: #fca5a5;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1.2rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.footer-copy {
    font-size: .8rem;
    color: rgba(255, 255, 255, .45);
    margin: 0;
}

.footer-credit {
    font-size: .8rem;
    color: rgba(255, 255, 255, .35);
    margin: 0;
}

.footer-credit a {
    color: var(--accent-light);
}

.footer-credit a:hover {
    color: var(--accent);
}


/* ─── 18. WHATSAPP FAB ─────────────────────────────────────── */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
}

.whatsapp-fab::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, .25);
    animation: pulse-ring 2.5s ease infinite;
}

.fab-tooltip {
    position: absolute;
    right: 68px;
    background: rgba(20, 42, 69, .9);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    font-family: var(--font-body);
    padding: .35rem .85rem;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all var(--transition);
    pointer-events: none;
}

.whatsapp-fab:hover .fab-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-ring {
    0% {
        transform: scale(.95);
        opacity: .7;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(.95);
        opacity: 0;
    }
}


/* ─── 19. SCROLL TO TOP ────────────────────────────────────── */
.scroll-top-btn {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}


/* ─── 20. GLIGHTBOX OVERRIDES ──────────────────────────────── */
.glightbox-clean .gclose {
    background: var(--primary) !important;
    color: #fff !important;
}


/* ─── 21. RESPONSIVE FIXES ─────────────────────────────────── */
@media (max-width: 991px) {
    .about-mosaic .mosaic-badge {
        left: 0;
    }

    :root {
        --total-header-h: var(--nav-h);
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .pcta-quote {
        font-size: 1.35rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .sub-pill span {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        text-align: center;
    }
}

  /* Instructor section */
  .instructor-section { background: var(--bg-secondary); }
  .instructor-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .instructor-img img {
    width: 100%; height: 500px;
    object-fit: cover;
    display: block;
  }
  .instructor-detail {
    display: flex; align-items: flex-start;
    gap: 14px; margin-bottom: 18px;
  }
  .instructor-detail .icon {
    width: 42px; height: 42px; min-width: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-light);
    font-size: 1rem;
  }
  .instructor-detail .text strong {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-heading);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2px;
  }
  .instructor-detail .text span {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-body);
  }