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

   *,
   *::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;
   }
   /* ─── 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;
}

   
   /* Get Quote sidebar */
   .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;
       font-family: 'Poppins', sans-serif;
   }

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

   /* ─── HERO BANNER ─── */
   .page-hero {
       position: relative;
       overflow: hidden;
       background: var(--soft);
       padding: 7rem 4rem 5rem;
       text-align: center;
   }

   .page-hero::before {
       content: '';
       position: absolute;
       inset: 0;
       background:
           url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
       pointer-events: none;
   }

   /* BG geometric shapes */
   .hero-shape-1 {
       position: absolute;
       top: -80px;
       right: 100px;
       width: 0;
       height: 0;
       border-left: 380px solid transparent;
       border-top: 600px solid rgba(124, 58, 237, 0.07);
       pointer-events: none;
   }

   .hero-shape-2 {
       position: absolute;
       bottom: -40px;
       left: 0;
       width: 0;
       height: 0;
       border-right: 280px solid transparent;
       border-bottom: 380px solid rgba(255, 77, 28, 0.07);
       pointer-events: none;
   }

   .hero-shape-3 {
       position: absolute;
       top: 20px;
       right: 0;
       width: 0;
       height: 0;
       border-left: 160px solid transparent;
       border-top: 340px solid rgba(20, 184, 166, 0.08);
       pointer-events: none;
   }

   .page-hero-inner {
       position: relative;
       z-index: 2;
       max-width: 800px;
       margin: 0 auto;
   }

   .page-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;
   }

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

   .page-hero h1 {
       font-family: 'Nunito', sans-serif;
       font-size: clamp(2.6rem, 5vw, 4.2rem);
       font-weight: 900;
       letter-spacing: -0.03em;
       line-height: 1.08;
       color: var(--navy);
       margin-bottom: 1.2rem;
   }

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

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

   .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;
   }

   .breadcrumb a:hover {
       text-decoration: underline;
   }

   .breadcrumb-sep {
       color: #CBD5E1;
   }

   /* ─── SECTION COMMONS ─── */
   .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);
   }

   /* ─── SERVICES OVERVIEW GRID ─── */
   .services-overview {
       padding: 6rem 4rem;
       background: #fff;
   }

   .services-overview-header {
       text-align: center;
       max-width: 620px;
       margin: 0 auto 4rem;
   }

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

   .services-main-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 1.8rem;
       max-width: 1200px;
       margin: 0 auto;
   }

   .svc-card {
       border: 1.5px solid var(--border-c);
       border-radius: 18px;
       padding: 2.2rem 1.8rem;
       background: #fff;
       position: relative;
       overflow: hidden;
       transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
       cursor: pointer;
   }

   .svc-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 3px;
       background: linear-gradient(90deg, var(--accent), var(--accent2));
       transform: scaleX(0);
       transform-origin: left;
       transition: transform 0.35s ease;
   }

   .svc-card:hover {
       border-color: var(--accent);
       transform: translateY(-6px);
       box-shadow: 0 20px 48px rgba(255, 77, 28, 0.12);
   }

   .svc-card:hover::before {
       transform: scaleX(1);
   }

   /* Numbered badge */
   .svc-card-num {
       font-family: 'Nunito', sans-serif;
       font-size: 0.7rem;
       font-weight: 800;
       color: var(--accent);
       letter-spacing: 0.1em;
       margin-bottom: 1.2rem;
       display: flex;
       align-items: center;
       gap: 0.4rem;
   }

   .svc-card-num::after {
       content: '';
       flex: 1;
       height: 1px;
       background: var(--border-c);
   }

   .svc-card-icon-wrap {
       width: 56px;
       height: 56px;
       border-radius: 14px;
       background: var(--soft);
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 1.3rem;
       transition: background 0.3s;
   }

   .svc-card:hover .svc-card-icon-wrap {
       background: rgba(255, 77, 28, 0.08);
   }

   .svc-card h3 {
       font-family: 'Nunito', sans-serif;
       font-size: 1.2rem;
       font-weight: 800;
       color: var(--navy);
       margin-bottom: 0.7rem;
       letter-spacing: -0.01em;
   }

   .svc-card p {
       font-size: 0.83rem;
       color: var(--mid);
       line-height: 1.78;
       font-weight: 300;
       margin-bottom: 1.4rem;
   }

   .svc-card-tags {
       display: flex;
       flex-wrap: wrap;
       gap: 0.4rem;
   }

   .svc-tag {
       font-size: 0.68rem;
       font-weight: 600;
       letter-spacing: 0.06em;
       padding: 0.25rem 0.7rem;
       border-radius: 100px;
       border: 1px solid var(--border-c);
       color: var(--mid);
       transition: border-color 0.2s, color 0.2s;
   }

   .svc-card:hover .svc-tag {
       border-color: rgba(255, 77, 28, 0.3);
       color: var(--accent);
   }

   .svc-card-arrow {
       position: absolute;
       bottom: 1.6rem;
       right: 1.6rem;
       width: 34px;
       height: 34px;
       border-radius: 50%;
       background: var(--soft);
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 0.9rem;
       color: var(--mid);
       transition: background 0.25s, color 0.25s, transform 0.25s;
   }

   .svc-card:hover .svc-card-arrow {
       background: var(--accent);
       color: #fff;
       transform: rotate(45deg);
   }

   /* ─── FEATURED SERVICE DEEP DIVES ─── */
   .service-detail {
       padding: 6rem 4rem;
   }

   .service-detail:nth-child(even) {
       background: var(--soft);
   }

   .service-detail:nth-child(odd) {
       background: #fff;
   }

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

   .service-detail-inner.reverse {
       direction: rtl;
   }

   .service-detail-inner.reverse>* {
       direction: ltr;
   }

   .service-detail-visual {
       border-radius: 20px;
       overflow: hidden;
       background: var(--cream);
       min-height: 380px;
       position: relative;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .sdv-accent-block {
       position: absolute;
       bottom: 0;
       right: 0;
       width: 120px;
       height: 120px;
       border-radius: 20px 0 20px 0;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       gap: 0.2rem;
   }

   .sdv-accent-block .sdv-num {
       font-family: 'Nunito', sans-serif;
       font-size: 2.2rem;
       font-weight: 900;
       color: #fff;
       line-height: 1;
   }

   .sdv-accent-block .sdv-lbl {
       font-size: 0.6rem;
       font-weight: 600;
       color: rgba(255, 255, 255, 0.8);
       letter-spacing: 0.08em;
       text-transform: uppercase;
   }

   .service-detail-content .section-tag {
       margin-bottom: 0.6rem;
   }

   .service-detail-content h2 {
       margin-bottom: 1rem;
   }

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

   .features-list {
       list-style: none;
       display: flex;
       flex-direction: column;
       gap: 0.7rem;
       margin-bottom: 2rem;
   }

   .features-list li {
       display: flex;
       align-items: flex-start;
       gap: 0.7rem;
       font-size: 0.85rem;
       color: var(--mid);
       font-weight: 400;
   }

   .features-list li::before {
       content: '';
       width: 18px;
       height: 18px;
       border-radius: 50%;
       background: rgba(255, 77, 28, 0.1);
       flex-shrink: 0;
       margin-top: 1px;
       display: flex;
       align-items: center;
       justify-content: center;
       background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6 L5 9 L10 3' stroke='%23FF4D1C' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
       background-repeat: no-repeat;
       background-position: center;
       background-size: 10px;
       background-color: rgba(255, 77, 28, 0.1);
   }

   .btn-service {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       background: var(--accent);
       color: #fff;
       padding: 0.75rem 2rem;
       border-radius: 100px;
       font-size: 0.88rem;
       font-weight: 600;
       text-decoration: none;
       transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
       font-family: 'Poppins', sans-serif;
   }

   .btn-service:hover {
       background: #e03a0a;
       transform: translateY(-2px);
       box-shadow: 0 8px 24px rgba(255, 77, 28, 0.28);
   }

   .btn-service-outline {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       color: var(--navy);
       padding: 0.75rem 2rem;
       border-radius: 100px;
       border: 1.5px solid var(--border-c);
       font-size: 0.88rem;
       font-weight: 600;
       text-decoration: none;
       transition: border-color 0.2s, color 0.2s, transform 0.2s;
       font-family: 'Poppins', sans-serif;
       margin-left: 0.8rem;
   }

   .btn-service-outline:hover {
       border-color: var(--navy);
       color: var(--navy);
       transform: translateY(-2px);
   }

   /* ─── PROCESS STRIP ─── */
   .process-strip {
       background: var(--navy);
       padding: 5rem 4rem;
       text-align: center;
   }

   .process-strip .section-tag {
       color: #14B8A6;
       justify-content: center;
   }

   .process-strip .section-tag::before {
       background: #14B8A6;
   }

   .process-strip h2 {
       color: #fff;
       text-align: center;
       margin-bottom: 3.5rem;
   }

   .process-steps-row {
       display: flex;
       gap: 0;
       max-width: 1100px;
       margin: 0 auto;
       border-left: 0.5px solid rgba(255, 255, 255, 0.1);
   }

   .p-step {
       flex: 1;
       padding: 1.5rem 2rem;
       border-right: 0.5px solid rgba(255, 255, 255, 0.1);
   }

   .p-step-num {
       font-family: 'Nunito', sans-serif;
       font-size: 3.5rem;
       font-weight: 900;
       color: rgba(255, 255, 255, 0.05);
       line-height: 1;
       margin-bottom: 1rem;
   }

   .p-dot {
       width: 9px;
       height: 9px;
       border-radius: 50%;
       background: var(--accent);
       margin-bottom: 0.9rem;
   }

   .p-step h4 {
       font-family: 'Nunito', sans-serif;
       font-size: 1rem;
       font-weight: 800;
       color: #fff;
       margin-bottom: 0.5rem;
   }

   .p-step p {
       font-size: 0.8rem;
       color: rgba(255, 255, 255, 0.4);
       line-height: 1.7;
       font-weight: 300;
   }

   /* ─── PRICING PLANS ─── */
   .pricing-section {
       padding: 6rem 4rem;
       background: var(--soft);
   }

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

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

   .pricing-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 1.5rem;
       max-width: 1100px;
       margin: 0 auto;
   }

   .plan-card {
       background: #fff;
       border: 1.5px solid var(--border-c);
       border-radius: 20px;
       padding: 2.2rem 2rem;
       position: relative;
       transition: transform 0.3s, box-shadow 0.3s;
   }

   .plan-card:hover {
       transform: translateY(-6px);
       box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
   }

   .plan-card.featured {
       border-color: var(--accent);
       background: var(--navy);
       transform: scale(1.04);
   }

   .plan-card.featured:hover {
       transform: scale(1.04) translateY(-4px);
   }

   .plan-badge {
       position: absolute;
       top: -14px;
       left: 50%;
       transform: translateX(-50%);
       background: var(--accent);
       color: #fff;
       padding: 0.3rem 1.2rem;
       border-radius: 100px;
       font-size: 0.7rem;
       font-weight: 700;
       white-space: nowrap;
       letter-spacing: 0.06em;
       text-transform: uppercase;
   }

   .plan-name {
       font-size: 0.75rem;
       font-weight: 700;
       letter-spacing: 0.12em;
       text-transform: uppercase;
       color: var(--accent);
       margin-bottom: 0.8rem;
   }

   .plan-card.featured .plan-name {
       color: rgba(255, 255, 255, 0.6);
   }

   .plan-price {
       font-family: 'Nunito', sans-serif;
       font-size: 2.8rem;
       font-weight: 900;
       color: var(--navy);
       letter-spacing: -0.04em;
       line-height: 1;
       margin-bottom: 0.3rem;
   }

   .plan-card.featured .plan-price {
       color: #fff;
   }

   .plan-period {
       font-size: 0.78rem;
       color: #94A3B8;
       margin-bottom: 1.5rem;
   }

   .plan-card.featured .plan-period {
       color: rgba(255, 255, 255, 0.4);
   }

   .plan-features {
       list-style: none;
       display: flex;
       flex-direction: column;
       gap: 0.7rem;
       margin-bottom: 2rem;
   }

   .plan-features li {
       font-size: 0.83rem;
       color: var(--mid);
       display: flex;
       align-items: center;
       gap: 0.6rem;
   }

   .plan-card.featured .plan-features li {
       color: rgba(255, 255, 255, 0.7);
   }

   .plan-features li::before {
       content: '✓';
       color: var(--accent);
       font-weight: 700;
       font-size: 0.85rem;
       flex-shrink: 0;
   }

   .plan-features li.disabled {
       opacity: 0.35;
   }

   .plan-features li.disabled::before {
       content: '✕';
       color: #94A3B8;
   }

   .plan-btn {
       display: block;
       text-align: center;
       padding: 0.75rem;
       border-radius: 100px;
       font-weight: 600;
       font-size: 0.88rem;
       text-decoration: none;
       border: 1.5px solid var(--border-c);
       color: var(--navy);
       transition: background 0.2s, color 0.2s, border-color 0.2s;
       font-family: 'Poppins', sans-serif;
   }

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

   .plan-card.featured .plan-btn {
       background: var(--accent);
       color: #fff;
       border-color: var(--accent);
   }

   .plan-card.featured .plan-btn:hover {
       background: #e03a0a;
   }

   /* ─── STATS BAR ─── */
   .stats-bar {
       background: var(--accent);
       padding: 3.5rem 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.2rem, 4vw, 3.5rem);
       font-weight: 900;
       color: #fff;
       letter-spacing: -0.04em;
       line-height: 1;
   }

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

   /* ─── TESTIMONIALS ─── */
   .testi-section {
       padding: 6rem 4rem;
       background: #fff;
   }

   .testi-header {
       text-align: center;
       max-width: 560px;
       margin: 0 auto 3.5rem;
   }

   .testi-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 1.5rem;
       max-width: 1200px;
       margin: 0 auto;
   }

   .testi-card {
       background: var(--soft);
       border-radius: 18px;
       padding: 2rem;
       transition: transform 0.3s;
   }

   .testi-card:hover {
       transform: translateY(-4px);
   }

   .testi-stars {
       color: #FBBF24;
       font-size: 0.9rem;
       letter-spacing: 3px;
       margin-bottom: 1rem;
   }

   .testi-quote {
       font-size: 0.88rem;
       color: var(--navy);
       font-style: italic;
       line-height: 1.8;
       margin-bottom: 1.5rem;
       font-weight: 300;
   }

   .testi-person {
       display: flex;
       align-items: center;
       gap: 0.8rem;
   }

   .testi-avatar {
       width: 40px;
       height: 40px;
       border-radius: 50%;
       background: var(--navy);
       display: flex;
       align-items: center;
       justify-content: center;
       font-family: 'Nunito', sans-serif;
       font-size: 0.82rem;
       font-weight: 800;
       color: #fff;
       flex-shrink: 0;
   }

   .testi-name {
       font-size: 0.85rem;
       font-weight: 600;
       color: var(--navy);
   }

   .testi-role {
       font-size: 0.72rem;
       color: #94A3B8;
       margin-top: 0.1rem;
   }

   /* ─── CTA BAND ─── */
   .cta-band {
       background: var(--soft);
       padding: 6rem 4rem;
       text-align: center;
       position: relative;
       overflow: hidden;
   }

   .cta-band::before {
       content: '';
       position: absolute;
       inset: 0;
       background: radial-gradient(ellipse at center, rgba(255, 77, 28, 0.07) 0%, transparent 70%);
       pointer-events: none;
   }

   .cta-band h2 {
       margin-bottom: 1.2rem;
       position: relative;
   }

   .cta-band p {
       font-size: 0.95rem;
       color: var(--mid);
       font-weight: 300;
       max-width: 500px;
       margin: 0 auto 2.5rem;
       line-height: 1.8;
       position: relative;
   }

   .cta-btns {
       display: flex;
       gap: 1rem;
       justify-content: center;
       flex-wrap: wrap;
       position: relative;
   }

   /* ─── 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%, #14B8A6 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);
       cursor: pointer;
       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 .highlight {
       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;
   }

   /* ─── REVEAL ANIMATION ─── */
   .reveal {
       opacity: 0;
       transform: translateY(24px);
       transition: opacity 0.7s ease, transform 0.7s 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;
   }

   .reveal-delay-6 {
       transition-delay: 0.6s;
   }

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

       .service-detail-inner {
           grid-template-columns: 1fr;
           gap: 2.5rem;
       }

       .service-detail-inner.reverse {
           direction: ltr;
       }

       .pricing-grid {
           grid-template-columns: 1fr;
           max-width: 420px;
       }

       .plan-card.featured {
           transform: none;
       }

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

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

       .process-steps-row {
           flex-direction: column;
           border-left: none;
       }

       .p-step {
           border-right: none;
           border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
       }
   }

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

       .nav-links {
           display: none;
       }

       .page-hero {
           padding: 5rem 1.5rem 4rem;
       }

       .services-overview,
       .service-detail,
       .pricing-section,
       .testi-section,
       .cta-band,
       .process-strip {
           padding: 4rem 1.5rem;
       }

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

       .services-main-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;
       }
   }