:root {
    --accent: #29A59B;
    --accent2: #7C3AED;
    --teal: #14B8A6;
    --amber: #FBBF24;
    --navy: #0F172A;
    --mid: #334155;
    --soft: #F8F7FF;
    --cream: #F1EFF9;
    --border-c: #E2E0F0;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: var(--navy);
    overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--soft);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

   /* ─── NAVBAR ─── */
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 2.8rem;
        height: 70px;
        background: #fff;
        border-bottom: 1px solid var(--border-c);
        position: relative;
        z-index: 10;
    }

    .logo-wrap {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        text-decoration: none;
    }

    /* Creative Advs logo mark — abstract C + spark */
    .logo-icon {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    .logo-text-block {
        display: flex;
        flex-direction: column;
        line-height: 1.18;
    }

    .logo-text-block .l1 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: -0.01em;
        font-family: 'Nunito', sans-serif;
    }

    .logo-text-block .l2 {
        font-size: 0.68rem;
        font-weight: 600;
        color: var(--accent);
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 0.1rem;
        list-style: none;
    }

    .nav-links a {
        font-size: 0.84rem;
        font-weight: 500;
        color: var(--mid);
        text-decoration: none;
        padding: 0.4rem 0.9rem;
        border-radius: 6px;
        white-space: nowrap;
        transition: color 0.2s, background 0.2s;
    }

    .nav-links a:hover {
        color: var(--accent);
        background: rgba(255, 77, 28, 0.06);
    }

    .nav-actions {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }

    .btn-pill {
        padding: 0.45rem 1.5rem;
        border-radius: 100px;
        font-size: 0.86rem;
        font-weight: 600;
        text-decoration: none;
        border: 2px solid var(--accent);
        background: var(--accent);
        color: #fff;
        transition: background 0.2s, color 0.2s, transform 0.15s;
        white-space: nowrap;
        font-family: 'Poppins', sans-serif;
    }

    .btn-pill:hover {
        background: #e03a0a;
        border-color: #e03a0a;
        transform: translateY(-1px);
    }

    .btn-pill.outline {
        background: #fff;
        color: var(--accent2);
        border-color: var(--accent2);
    }

    .btn-pill.outline:hover {
        background: var(--accent2);
        color: #fff;
        transform: translateY(-1px);
    }

/* ══════════════════════════════════════════
        MOBILE HAMBURGER + DRAWER
   ══════════════════════════════════════════ */

/* ─── HAMBURGER BUTTON ─── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--border-c);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}

.menu-toggle:hover {
    border-color: var(--accent);
    background: rgba(41, 165, 155, 0.06);
}

.menu-toggle .bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.25s,
                width 0.3s;
    transform-origin: center;
}

/* X / close state */
.menu-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-toggle.open {
    border-color: var(--accent);
    background: rgba(41, 165, 155, 0.08);
}

/* Hide "Call Us" pill on small screens */
.hide-mobile {
    display: inline-flex;
}

/* ─── MOBILE OVERLAY ─── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.visible {
    opacity: 1;
}

/* ─── MOBILE DRAWER PANEL ─── */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #fff;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(15, 23, 42, 0.18);
    overflow-y: auto;
}

.mobile-drawer.open {
    transform: translateX(0);
}

/* ─── DRAWER HEADER ─── */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border-c);
    flex-shrink: 0;
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.drawer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
}

.drawer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.drawer-logo-text .dl1 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
}

.drawer-logo-text .dl2 {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1.5px solid var(--border-c);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.drawer-close:hover {
    border-color: var(--accent);
    background: rgba(41, 165, 155, 0.06);
}

.drawer-close svg {
    width: 16px;
    height: 16px;
    stroke: var(--mid);
    stroke-width: 2;
    fill: none;
}

/* ─── DRAWER SECTION LABEL ─── */
.drawer-section-label {
    padding: 0.8rem 1.5rem 0.3rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94A3B8;
}

/* ─── DRAWER NAV LINKS ─── */
.drawer-nav {
    padding: 0.5rem 0;
    flex: 1;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--mid);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: color 0.2s, background 0.2s, padding-left 0.2s, border-left-color 0.2s;
}

.drawer-nav a:hover {
    color: var(--accent);
    background: rgba(41, 165, 155, 0.05);
    padding-left: 1.8rem;
    border-left-color: var(--accent);
}

.drawer-nav .dn-arrow {
    font-size: 0.75rem;
    color: #CBD5E1;
    transition: color 0.2s;
}

.drawer-nav a:hover .dn-arrow {
    color: var(--accent);
}

.drawer-divider {
    height: 1px;
    background: var(--border-c);
    margin: 0.4rem 1.5rem;
}

/* ─── DRAWER CTA BUTTONS ─── */
.drawer-ctas {
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    border-top: 1px solid var(--border-c);
    flex-shrink: 0;
}

.drawer-btn-primary {
    display: block;
    text-align: center;
    padding: 0.82rem;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s, transform 0.15s;
}

.drawer-btn-primary:hover {
    background: #1e8c83;
    transform: translateY(-1px);
}

.drawer-btn-outline {
    display: block;
    text-align: center;
    padding: 0.82rem;
    border-radius: 12px;
    border: 1.5px solid var(--accent2);
    color: var(--accent2);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.drawer-btn-outline:hover {
    background: var(--accent2);
    color: #fff;
    transform: translateY(-1px);
}

/* ─── DRAWER CONTACT STRIP ─── */
.drawer-contact {
    padding: 1rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid var(--border-c);
    flex-shrink: 0;
}

.drawer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8rem;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
}

.drawer-contact-item:hover {
    color: var(--accent);
}

.dci-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dci-icon svg {
    width: 14px;
    height: 14px;
}

/* ─── DRAWER SOCIAL ROW ─── */
.drawer-social {
    padding: 0.8rem 1.5rem 1.5rem;
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.drawer-soc {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--border-c);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #94A3B8;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.drawer-soc:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

/* ══════════════════════════════════════════
        RESPONSIVE — SHOW HAMBURGER
   ══════════════════════════════════════════ */

@media (max-width: 900px) {
    nav {
        padding: 0 1.2rem;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    /* Hide desktop links & "Call Us" pill */
    .nav-links {
        display: none !important;
    }

    .hide-mobile {
        display: none !important;
    }

    /* Show hamburger */
    .menu-toggle {
        display: flex;
    }

    /* Hero responsive */
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem 5rem;
    }

    .hero-illustration {
        min-height: 280px;
    }
}
    
/* 1. Main Drawer - Ensure it uses Flexbox correctly */
.mobile-drawer {
  display: flex;
  flex-direction: column;
  background: #fff;
  width: 85%;
  max-width: 320px;
  height: 100%;
  padding: 0; /* Remove default padding to handle inner spacing better */
  box-sizing: border-box;
  text-align: left; /* Fixes the weird centering in your screenshot */
}

/* 2. Header Spacing */
.drawer-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

/* 3. The Nav Links - THIS IS THE CRITICAL PART */
.drawer-nav {
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto; /* Allows scrolling if the menu is long */
  flex-grow: 1;    /* Pushes the CTA buttons to the bottom */
}

.drawer-section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin: 15px 0 10px 0;
}

.drawer-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid #f9f9f9;
}

/* 4. Fix CTA Buttons and Contact Info */
.drawer-ctas {
  padding: 20px;
  background: #fff;
  border-top: 1px solid #eee;
}

.drawer-btn-primary, .drawer-btn-outline {
  display: block;
  width: 100%; /* Force full width */
  margin-bottom: 10px;
  padding: 14px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.drawer-btn-primary {
  background: #29A59B;
  color: #fff !important;
}

.drawer-btn-outline {
  border: 1.5px solid #7C3AED;
  color: #7C3AED !important;
}

/* 5. Contact & Social Items */
.drawer-contact {
  padding: 0 20px 10px 20px;
}

.drawer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.drawer-social {
  padding: 10px 20px 20px 20px;
  display: flex;
  gap: 10px;
}

.drawer-soc {
  width: 35px;
  height: 35px;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  color: #666;
}

/* ── FLOATING BUTTONS ── */
.float-btns {
    position: fixed;
    left: 0;
    bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 200;
}

.float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-phone {
    background: var(--accent);
}

.float-whatsapp {
    background: #25D366;
}

.float-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.get-quote {
    position: fixed;
    right: 0;
    top: 50%;
    background: var(--accent);
    color: #fff;
    writing-mode: vertical-rl;
    padding: 1.2rem 0.55rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    border-radius: 8px 0 0 8px;
    z-index: 200;
    cursor: pointer;
    text-transform: uppercase;
    transform: translateY(-50%) rotate(180deg);
    transition: background 0.2s;
}

.get-quote:hover {
    background: #c93510;
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}



/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--soft);
    padding: 8rem 4rem 6rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shape {
    position: absolute;
    pointer-events: none;
}

.hs-1 {
    top: -80px;
    right: 80px;
    width: 0;
    height: 0;
    border-left: 400px solid transparent;
    border-top: 640px solid rgba(124, 58, 237, 0.07);
}

.hs-2 {
    bottom: -60px;
    left: 0;
    width: 0;
    height: 0;
    border-right: 300px solid transparent;
    border-bottom: 400px solid rgba(255, 77, 28, 0.07);
}

.hs-3 {
    top: 30px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 180px solid transparent;
    border-top: 360px solid rgba(20, 184, 166, 0.07);
}

/* Animated dots grid */
.dots-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(124, 58, 237, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.hero-tag::before {
    content: '';
    width: 22px;
    height: 1.5px;
    background: var(--accent);
    display: inline-block;
}

.hero h1 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--navy);
    margin-bottom: 1.4rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
    font-family: 'Caveat', cursive;
    font-size: 1.08em;
}

.hero p {
    font-size: 1rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 1.8rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #94A3B8;
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

/* ── SECTION TAG ── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.section-tag::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--accent);
    display: inline-block;
}

.section-h2 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-h2 em {
    font-style: italic;
    color: var(--accent);
}

/* ── VALUES STRIP ── */
.values-strip {
    background: var(--navy);
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--accent), var(--accent2), var(--teal)) 1;
}

.val-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.val-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.val-icon svg {
    width: 18px;
    height: 18px;
}

.val-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.val-sep {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

/* ── LEADERSHIP ── */
.leadership-section {
    padding: 7rem 4rem;
    background: #fff;
}

.leadership-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.leadership-header p {
    font-size: 0.92rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.8;
}

/* Layout adjustments */
.leader-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding-top: 3rem;
}

.leader-card {
    background: #fff; /* Or your dark background */
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Photo Container */
.leader-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5; /* Professional portrait ratio */
    overflow: hidden;
    background: #f0f0f0;
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Overlay */
.leader-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.leader-card:hover .leader-hover-content {
    opacity: 1;
}

.leader-card:hover .leader-photo {
    transform: scale(1.05);
}

/* Bottom Info Area */
.leader-info {
    padding: 1.5rem;
    text-align: left;
}

.leader-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.leader-role {
    font-size: 0.9rem;
    font-weight: 500;
    color: #FF4D1C; /* Your accent color */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-bio {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.leader-soc {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    line-height: 35px;
    text-decoration: none;
    font-weight: bold;
}

/* ── CULTURE SECTION ── */
.culture-section {
    padding: 7rem 4rem;
    background: #fff;
}

.culture-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.culture-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.culture-content p {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.culture-values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.culture-values-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid var(--border-c);
    background: var(--soft);
    transition: border-color 0.2s, background 0.2s;
}

.culture-values-list li:hover {
    border-color: var(--accent);
    background: rgba(255, 77, 28, 0.03);
}

.culture-values-list li .cv-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.culture-values-list li .cv-text h5 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.culture-values-list li .cv-text p {
    font-size: 0.78rem;
    color: var(--mid);
    line-height: 1.6;
    margin: 0;
}

/* ── STATS BAND ── */
.stats-band {
    background: var(--accent);
    padding: 4rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-b {
    text-align: center;
}

.stat-b .num {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.05em;
    line-height: 1;
}

.stat-b .lbl {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.4rem;
}


/* ── FOOTER ── */
.footer-section {
    background: #fff;
    width: 100%;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #E8E4F0;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 50%, var(--teal) 100%);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    margin-bottom: 1.4rem;
}

.footer-logo-text .fl1 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    display: block;
    line-height: 1.2;
}

.footer-logo-text .fl2 {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-map {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid #E2E0F0;
    position: relative;
    background: #F0EEF8;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.map-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #fff;
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: #1a73e8;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.footer-support-card {
    margin-top: 1.2rem;
    border: 1.5px solid #E2E0F0;
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8F7FF;
    transition: border-color 0.2s;
}

.footer-support-card:hover {
    border-color: var(--accent);
}

.support-label {
    font-size: 0.72rem;
    color: #94A3B8;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.support-number {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
}

.support-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: ring-pulse 2.5s ease infinite;
}

@keyframes ring-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 28, 0.35);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 77, 28, 0);
    }
}

.support-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.footer-col-links h5,
.footer-col-contact h5 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94A3B8;
    margin-bottom: 1.4rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #E8E4F0;
}

.footer-col-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col-links ul li a {
    font-size: 0.85rem;
    color: #475569;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-col-links ul li a::before {
    content: '';
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.25s;
    display: inline-block;
    flex-shrink: 0;
}

.footer-col-links ul li a:hover {
    color: var(--accent);
}

.footer-col-links ul li a:hover::before {
    width: 12px;
}

.contact-office {
    margin-bottom: 1.8rem;
}

.contact-office-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.7rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.78rem;
    color: #64748B;
    line-height: 1.65;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.contact-detail svg {
    flex-shrink: 0;
    margin-top: 2px;
    width: 13px;
    height: 13px;
}

.contact-detail a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-detail a:hover {
    color: var(--accent);
}

.contact-detail .hl {
    color: var(--navy);
    font-weight: 500;
}

.footer-cta-btn {
    display: inline-block;
    margin-top: 0.8rem;
    background: var(--accent);
    color: #fff;
    padding: 0.65rem 1.8rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--accent);
    transition: background 0.2s, transform 0.2s;
}

.footer-cta-btn:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-social-row {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 1.5rem 3rem;
    border-top: 1px solid #E8E4F0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-socials-list {
    display: flex;
    gap: 0.65rem;
}

.footer-soc {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #E2E0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #94A3B8;
    text-decoration: none;
    background: #fff;
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.footer-soc:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.footer-tagline {
    font-size: 0.8rem;
    color: #94A3B8;
    font-weight: 300;
    text-align: right;
}

.footer-tagline strong {
    color: var(--accent);
    font-weight: 600;
}

.footer-copyright {
    background: #F1EFF9;
    padding: 1rem 3rem;
    text-align: center;
    font-size: 0.78rem;
    color: #94A3B8;
    font-weight: 300;
    border-top: 1px solid #E8E4F0;
}

.footer-copyright a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .leader-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    nav {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
    }

    .leadership-section,
    .team-section,
    .culture-section,
    .roles-section,
    .cta-band {
        padding: 5rem 1.5rem;
    }

    .stats-band {
        padding: 3rem 1.5rem;
    }

    .leader-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .culture-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding: 0 2rem;
    }

    .values-strip {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 560px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .footer-social-row {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-tagline {
        text-align: left;
    }

    .footer-copyright {
        padding: 1rem 1.5rem;
    }

    .role-item {
        flex-direction: column;
        align-items: flex-start;
    }
}