/* ==========================================================================
       DESIGN SYSTEM & CSS VARIABLES
       ========================================================================== */
    :root {
      --navy-950:     #030712;
      --navy-900:     #070E1E;
      --navy-800:     #0F1E3D;
      --navy-700:     #162B54;
      --slate-800:    #1E293B;
      --slate-700:    #334155;
      --slate-600:    #475569;
      --slate-500:    #64748B;
      --slate-400:    #94A3B8;
      --slate-300:    #CBD5E1;
      --slate-200:    #E2E8F0;
      --slate-100:    #F1F5F9;
      --slate-50:     #F8FAFC;
      --white:        #FFFFFF;

      /* Brand Accent Color Set (Teal) */
      --teal-brand:   #0480A3;
      --teal-dark:    #03637F;
      --teal-light:   rgba(4, 128, 163, 0.08);
      --teal-border:  rgba(4, 128, 163, 0.25);

      --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      --font-mono:    'Space Mono', monospace;

      --radius-sm:    8px;
      --radius-md:    14px;
      --radius-lg:    20px;
      --radius-full:  9999px;

      --shadow-sm:    0 2px 8px rgba(7, 14, 30, 0.05);
      --shadow-card:  0 12px 35px -5px rgba(7, 15, 30, 0.08);
      --shadow-hover: 0 25px 50px -12px rgba(4, 128, 163, 0.25);
      
      --ease:         cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Reset & Base Setup */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--font-body);
      background-color: var(--white);
      color: var(--slate-800);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: clip;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.25s var(--ease);
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--navy-950);
      line-height: 1.2;
    }

    .container {
      width: 100%;
      max-width: 1340px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ==========================================================================
       BUTTONS & ACCENTS (Teal Brand Token System)
       ========================================================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 700;
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      cursor: pointer;
      border: 1.5px solid transparent;
      transition: all 0.25s var(--ease);
      text-align: center;
      line-height: 1;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--teal-brand) 0%, var(--teal-dark) 100%);
      color: var(--white);
      box-shadow: 0 4px 18px rgba(4, 128, 163, 0.35);
      border: 1.5px solid var(--teal-border);
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy-950) 100%);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(4, 128, 163, 0.45);
    }

    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.4);
    }
    .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--white);
      transform: translateY(-2px);
    }

    .btn-outline-navy {
      background: transparent;
      color: var(--teal-brand);
      border-color: var(--teal-brand);
    }
    .btn-outline-navy:hover {
      background: var(--teal-brand);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* CTA Hierarchy Modifiers */
    .btn-hero-primary {
      font-size: 1.08rem;
      padding: 16px 36px;
      box-shadow: 0 6px 25px rgba(4, 128, 163, 0.45);
      letter-spacing: 0.01em;
      font-weight: 800;
    }
    .btn-hero-secondary {
      font-size: 0.95rem;
      padding: 14px 22px;
      background: transparent;
      color: var(--slate-200);
      border: 1.5px solid rgba(255, 255, 255, 0.28);
      opacity: 0.92;
    }
    .btn-hero-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--teal-brand);
      color: var(--white);
      transform: translateY(-2px);
    }

    .footer-social-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: var(--slate-300);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      transition: all 0.2s ease;
      border: 1px solid rgba(255, 255, 255, 0.12);
    }
    .footer-social-btn:hover {
      background: var(--teal-brand);
      color: var(--white);
      border-color: var(--teal-brand);
      transform: translateY(-2px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--teal-brand);
      margin-bottom: 12px;
    }
    .eyebrow i {
      color: var(--teal-brand);
    }

    /* ==========================================================================
       SECTION 1: TOP BAR (Height: 42px, Dark Navy #030712)
       ========================================================================== */
    .top-bar {
      height: 42px;
      background-color: var(--navy-950);
      color: var(--slate-400);
      font-size: 0.82rem;
      border-bottom: 1px solid rgba(4, 128, 163, 0.2);
      position: relative;
      z-index: 1002;
    }

    .top-bar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 100%;
    }

    .top-bar-left {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-weight: 700;
      font-size: 0.78rem;
      color: var(--slate-300);
      letter-spacing: 0.06em;
    }

    .top-dot-indicator {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background-color: var(--teal-brand);
      display: inline-block;
      box-shadow: 0 0 8px var(--teal-brand);
    }

    .top-bar-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .top-phone-link {
      color: var(--white);
      font-weight: 700;
      font-family: var(--font-heading);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .top-phone-link:hover {
      color: var(--teal-brand);
    }

    /* ==========================================================================
       SECTION 2: HEADER / NAVIGATION (Height: 84px, Sticky White Blur)
       ========================================================================== */
    .site-header {
      height: 84px;
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background-color: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(4, 128, 163, 0.18);
      transition: all 0.3s var(--ease);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      position: relative;
      padding-bottom: 4px;
    }
    .brand-logo::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 36px;
      height: 3px;
      background: var(--teal-brand);
      border-radius: 2px;
      transition: width 0.3s var(--ease);
    }
    .brand-logo:hover::after {
      width: 100%;
    }

    .brand-logo img,
    .brand-logo svg {
      height: 44px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-item {
      position: relative;
      padding: 20px 0;
    }

    .nav-link {
      font-family: var(--font-heading);
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--slate-800);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }
    .nav-link:hover, .nav-link.active {
      color: var(--teal-brand);
    }

    .nav-link i {
      font-size: 0.72rem;
      transition: transform 0.25s var(--ease);
    }
    .nav-item:hover .nav-link i {
      transform: rotate(180deg);
    }

    .nav-link i {
      font-size: 0.72rem;
      transition: transform 0.25s var(--ease);
    }
    .nav-item:hover .nav-link i {
      transform: rotate(180deg);
    }

    /* ==========================================================================
       ENTERPRISE MEGA DROPDOWN MENU (AGI & HILTON DISPLAYS INSPIRED)
       ========================================================================== */
    .mega-dropdown-wrapper {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(12px);
      width: 740px;
      background: var(--white);
      border: 1px solid var(--slate-200);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-card), 0 20px 50px rgba(7, 15, 30, 0.12);
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: all 0.25s var(--ease);
      z-index: 1100;
    }

    .nav-item::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 0;
      right: 0;
      height: 25px;
    }

    .nav-item:hover .mega-dropdown-wrapper {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .mega-grid {
      display: grid;
      grid-template-columns: 1.45fr 1fr;
      gap: 20px;
    }

    .mega-items-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .mega-link-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
    }
    .mega-link-card:hover {
      background: var(--slate-50);
      transform: translateX(4px);
    }

    .mega-icon {
      width: 38px;
      height: 38px;
      border-radius: var(--radius-sm);
      background: rgba(4, 128, 163, 0.08);
      color: var(--teal-brand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      transition: all 0.2s ease;
    }
    .mega-link-card:hover .mega-icon {
      background: var(--teal-brand);
      color: var(--white);
    }
    .mega-link-card:hover .mega-title {
      color: var(--teal-brand);
    }

    .mega-title {
      font-family: var(--font-heading);
      font-size: 0.94rem;
      font-weight: 800;
      color: var(--navy-950);
      line-height: 1.2;
      transition: color 0.2s ease;
    }

    .mega-sub {
      font-size: 0.76rem;
      color: var(--slate-500);
      line-height: 1.35;
      margin-top: 2px;
    }

    .mega-featured-box {
      background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
      border-radius: var(--radius-sm);
      padding: 22px;
      color: var(--white);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mega-feat-tag {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--teal-brand);
      text-transform: uppercase;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .mega-feat-title {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 8px;
    }

    .mega-feat-desc {
      font-size: 0.82rem;
      color: var(--slate-300);
      line-height: 1.7;
      margin-bottom: 18px;
    }

    /* Upgrade for the Mega Featured Box List */
    .mega-featured-box .mega-feat-desc {
      font-size: 0.82rem;
      color: var(--slate-300);
      line-height: 1.7;
      margin-bottom: 18px;
    }
    .mega-featured-box .mega-feat-desc strong {
      color: var(--white);
      font-weight: 700;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .mobile-toggle {
      display: none;
      background: transparent;
      border: none;
      font-size: 1.4rem;
      color: var(--navy-950);
      cursor: pointer;
      padding: 8px;
    }

    /* Mobile Drawer */
    .mobile-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 320px;
      height: 100vh;
      background: var(--white);
      z-index: 2000;
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
      transition: right 0.35s var(--ease);
      padding: 30px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow-y: auto;
    }

    .mobile-drawer.open {
      right: 0;
    }

    .drawer-close-btn {
      align-self: flex-end;
      background: transparent;
      border: none;
      font-size: 1.5rem;
      color: var(--slate-700);
      cursor: pointer;
      margin-bottom: 20px;
    }

    .drawer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .drawer-nav-link {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy-950);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 0;
      transition: color 0.2s ease;
    }
    .drawer-nav-link:hover {
      color: var(--teal-brand);
    }

    .drawer-sublist {
      padding-left: 14px;
      margin-top: 8px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      border-left: 2px solid var(--slate-200);
    }
    .drawer-sublink {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--slate-600);
      transition: color 0.2s ease;
    }
    .drawer-sublink:hover {
      color: var(--teal-brand);
    }

    /* ==========================================================================
       SECTION 3: HERO WITH CINEMATIC VIDEO BACKGROUND
       ========================================================================== */
    .hero-section {
      min-height: 640px;
      background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 60%, #0c1833 100%);
      color: var(--white);
      position: relative;
      display: flex;
      align-items: center;
      padding: 80px 0 70px;
      overflow: hidden;
    }

    /* Cinematic Video Background */
    .hero-video-wrapper {
      position: absolute;
      inset: 0;
      z-index: 1;
      overflow: hidden;
      pointer-events: none;
    }

    .hero-bg-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 70% center;
      filter: saturate(1.2) contrast(1.05) brightness(0.9);
      display: block;
    }

    /* Dark Overlay Gradient on Top of Video for High Text Contrast */
    .hero-video-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(3, 7, 18, 0.92) 0%, rgba(7, 14, 30, 0.82) 35%, rgba(7, 14, 30, 0.55) 60%, rgba(12, 24, 51, 0.35) 100%),
        linear-gradient(to top, rgba(3, 7, 18, 0.70) 0%, transparent 40%);
      pointer-events: none;
    }

    /* "YES WE CAN" Badge - Clean Teal Styling (No Glow Box-Shadow) */
    .hero-badge {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--teal-brand);
      background: var(--teal-light);
      border: 1px solid var(--teal-border);
      padding: 8px 22px;
      border-radius: var(--radius-full);
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }

    /* Hero Content sits on top of video overlay */
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 960px;
    }

    .hero-h1 {
      font-size: clamp(2.4rem, 5vw, 4.5rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .hero-subheadline {
      font-size: clamp(1.05rem, 1.4vw, 1.25rem);
      color: var(--slate-200);
      line-height: 1.6;
      margin-bottom: 28px;
      max-width: 860px;
    }

    /* Direct Answer Box (GEO Extraction Block) */
    .direct-answer-box {
      background: rgba(4, 128, 163, 0.12);
      border-left: 4px solid var(--teal-brand);
      border-radius: var(--radius-sm);
      padding: 20px 24px;
      margin-bottom: 34px;
      color: var(--slate-100);
      font-size: 0.98rem;
      line-height: 1.65;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-bottom: 30px;
    }

    .hero-trust-bar {
      font-family: var(--font-mono);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--slate-300);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      padding-top: 20px;
      border-top: 1px solid var(--teal-border);
      position: relative;
    }
    .hero-trust-bar i {
      color: var(--teal-brand);
    }

    /* ==========================================================================
       SECTION 4: PROCESS BAR (Dark Navy Background)
       ========================================================================== */
    .process-bar {
      position: relative;
      background-color: var(--navy-950);
      color: var(--white);
      padding: 44px 0;
      border-bottom: 1px solid var(--teal-border);
    }

    .process-header-subtle {
      font-family: var(--font-mono);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--teal-brand);
      margin-bottom: 18px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .process-step {
      display: flex;
      align-items: center;
      gap: 14px;
      position: relative;
      background: rgba(15, 23, 42, 0.65);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 16px 20px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--teal-border);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .process-step:hover {
      background: rgba(15, 23, 42, 0.85);
      border-color: var(--teal-brand);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(4, 128, 163, 0.15);
    }

    .process-num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--teal-light);
      border: 1px solid var(--teal-border);
      color: var(--teal-brand);
      font-family: var(--font-mono);
      font-weight: 700;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .process-label {
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.04em;
    }

    .process-desc {
      font-size: 0.85rem;
      color: var(--slate-300);
      margin-top: 2px;
    }

    /* ==========================================================================
       SECTION 5: WHAT WE DO (UNIFORM CLEAN SERVICE CARDS)
       ========================================================================== */
    .services-section {
      padding: 85px 0;
      background-color: var(--white);
    }

    .section-header-center {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 50px;
    }

    .section-h2 {
      font-size: clamp(2rem, 3.2vw, 2.75rem);
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--navy-950);
    }

    .section-subtext {
      font-size: 1.1rem;
      color: var(--slate-600);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--slate-200);
      border-radius: var(--radius-md);
      padding: 32px 28px;
      box-shadow: var(--shadow-card);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .service-card:hover {
      transform: translateY(-6px);
      border-color: var(--teal-brand);
      box-shadow: var(--shadow-hover);
    }

    .service-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      background: var(--teal-light);
      color: var(--teal-brand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 20px;
      transition: all 0.25s var(--ease);
      position: relative;
      z-index: 2;
    }

    .service-card:hover .service-icon-wrap {
      background: var(--teal-brand);
      color: var(--white);
    }

    .service-title {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--navy-950);
      margin-bottom: 10px;
      position: relative;
      z-index: 2;
    }

    .service-description {
      font-size: 0.95rem;
      color: var(--slate-600);
      margin-bottom: 16px;
      line-height: 1.55;
      position: relative;
      z-index: 2;
    }

    .service-trigger {
      font-size: 0.9rem;
      font-style: italic;
      color: var(--teal-brand);
      margin-bottom: 24px;
      line-height: 1.5;
      background: var(--slate-50);
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      border-left: 3px solid var(--teal-brand);
      position: relative;
      z-index: 2;
    }

    .service-link {
      font-family: var(--font-heading);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--teal-brand);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
      position: relative;
      z-index: 2;
    }
    .service-link:hover {
      color: var(--teal-dark);
    }



    .service-card:hover .service-icon-wrap {
      background: var(--teal-brand);
      color: var(--white);
    }

    .service-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--navy-950);
      margin-bottom: 10px;
      position: relative;
      z-index: 2;
    }

    .service-description {
      font-size: 0.95rem;
      color: var(--slate-600);
      margin-bottom: 16px;
      line-height: 1.55;
      position: relative;
      z-index: 2;
    }

    .service-trigger {
      font-size: 0.9rem;
      font-style: italic;
      color: var(--teal-brand);
      margin-bottom: 24px;
      line-height: 1.5;
      background: var(--slate-50);
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      border-left: 3px solid var(--teal-brand);
      position: relative;
      z-index: 2;
    }

    .service-link {
      font-family: var(--font-heading);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--teal-brand);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
      position: relative;
      z-index: 2;
    }
    .service-link:hover {
      color: var(--teal-dark);
      gap: 10px;
    }

    /* ==========================================================================
       SECTION: WHY CHOOSE US (AGI-INSPIRED MARKET EXPERTISE)
       ========================================================================== */
    .why-choose-us {
      padding: 85px 0;
      background-color: var(--slate-50);
      border-top: 1px solid var(--slate-200);
      border-bottom: 1px solid var(--slate-200);
    }

    .why-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 50px;
    }

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

    .expertise-card {
      background: var(--white);
      border: 1px solid var(--slate-200);
      border-radius: var(--radius-md);
      padding: 32px 28px;
      text-align: center;
      box-shadow: var(--shadow-card);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .expertise-card:hover {
      transform: translateY(-4px);
      border-color: var(--teal-brand);
      box-shadow: var(--shadow-hover);
    }

    .expertise-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--teal-light);
      color: var(--teal-brand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin: 0 auto 16px;
      transition: all 0.3s ease;
    }

    .expertise-card:hover .expertise-icon {
      background: var(--teal-brand);
      color: var(--white);
    }

    .expertise-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--navy-950);
      margin-bottom: 8px;
    }

    .expertise-desc {
      font-size: 0.9rem;
      color: var(--slate-600);
      line-height: 1.55;
      margin-bottom: 16px;
    }

    .expertise-brands {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: center;
    }

    .expertise-brands span {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--teal-brand);
      background: var(--teal-light);
      padding: 3px 10px;
      border-radius: var(--radius-full);
      border: 1px solid var(--teal-border);
    }

    /* Trust Numbers Grid */
    .trust-numbers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 960px;
      margin: 0 auto;
      background: var(--white);
      border: 1px solid var(--slate-200);
      border-radius: var(--radius-md);
      padding: 32px 40px;
      box-shadow: var(--shadow-card);
    }

    .trust-number-item {
      text-align: center;
    }

    .trust-number {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 900;
      color: var(--teal-brand);
      display: block;
      line-height: 1.1;
    }

    .trust-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--slate-500);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    /* Client Logos Static Grid */
    .client-trust-box {
      background: var(--white);
      border: 1px solid var(--slate-200);
      border-radius: var(--radius-md);
      padding: 30px;
      text-align: center;
    }

    .client-trust-header {
      font-family: var(--font-mono);
      font-size: 0.76rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--slate-500);
      margin-bottom: 24px;
    }

    .client-logos-grid {
      display: grid;
      grid-template-columns: repeat(9, 1fr);
      gap: 16px;
      align-items: center;
      justify-items: center;
    }

    .client-logo-item img {
      max-height: 38px;
      max-width: 100px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.75;
      transition: all 0.2s ease;
    }
    .client-logo-item:hover img {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.05);
    }

    /* ==========================================================================
       SECTION: GOOGLE REVIEWS SHOWCASE (With Video Accent & Ambient Backdrop)
       ========================================================================== */
    .reviews-section {
      padding: 85px 0;
      background-color: var(--white);
      border-top: 1px solid rgba(4, 128, 163, 0.15);
      position: relative;
      overflow: hidden;
    }

    .reviews-badge-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 40px;
    }

    .reviews-rating-badge {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      background: var(--white);
      border: 1px solid var(--slate-200);
      box-shadow: 0 4px 18px rgba(7, 14, 30, 0.05);
      border-radius: 999px;
      padding: 10px 24px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .badge-score {
      font-size: 2rem;
      font-weight: 900;
      color: var(--navy-950);
      font-family: var(--font-heading);
      line-height: 1;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .badge-stars {
      color: #F59E0B;
      font-size: 1.1rem;
      display: flex;
      gap: 3px;
    }

    .badge-count {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--slate-700);
    }

    .badge-link {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--teal-brand);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s ease, transform 0.2s ease;
    }
    .badge-link:hover {
      color: var(--teal-dark);
      transform: translateX(3px);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-bottom: 35px;
    }

    .review-card {
      background: var(--white);
      border: 1px solid var(--slate-200);
      border-radius: var(--radius-md);
      padding: 30px 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 4px 16px rgba(7, 14, 30, 0.04);
      transition: all 0.28s var(--ease);
      position: relative;
    }

    .review-card:hover {
      transform: translateY(-4px);
      border-color: var(--teal-brand);
      box-shadow: 0 14px 32px rgba(4, 128, 163, 0.12);
    }

    .review-card-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .review-stars {
      color: #F59E0B;
      font-size: 0.95rem;
      display: flex;
      gap: 3px;
    }

    .review-verified {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.74rem;
      font-weight: 700;
      color: #1e7e34;
      background: #e6f4ea;
      padding: 4px 10px;
      border-radius: 999px;
      letter-spacing: 0.02em;
    }

    .review-quote {
      font-size: 0.96rem;
      line-height: 1.65;
      color: var(--slate-700);
      font-style: italic;
      margin-bottom: 24px;
      flex-grow: 1;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 14px;
      border-top: 1px solid var(--slate-100);
      padding-top: 18px;
    }

    .review-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 0.95rem;
      color: var(--white);
      flex-shrink: 0;
    }

    .avatar-jm { background: linear-gradient(135deg, var(--navy-950) 0%, var(--teal-brand) 100%); }
    .avatar-ar { background: linear-gradient(135deg, var(--teal-brand) 0%, var(--teal-dark) 100%); }
    .avatar-kl { background: linear-gradient(135deg, #0F172A 0%, var(--teal-dark) 100%); }

    .review-author-name {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 1.02rem;
      color: var(--navy-950);
      line-height: 1.25;
      margin-bottom: 3px;
    }

    .review-author-title {
      font-size: 0.82rem;
      color: var(--slate-500);
      line-height: 1.35;
    }

    .reviews-bottom-cta {
      text-align: center;
      margin-top: 20px;
    }

    .reviews-bottom-link {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--teal-brand);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s ease;
      padding: 8px 16px;
      border-radius: var(--radius-sm);
    }
    .reviews-bottom-link:hover {
      color: var(--teal-dark);
      background: var(--teal-light);
      transform: translateX(4px);
    }

    /* ==========================================================================
       PORTFOLIO SHOWCASE (AGI-INSPIRED CASE STUDY CARDS)
       ========================================================================== */
    .portfolio-showcase {
      padding: 85px 0;
      background-color: var(--white);
      border-top: 1px solid var(--slate-200);
    }

    .case-studies-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .case-card {
      background: var(--white);
      border: 1px solid var(--slate-200);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
    }

    .case-card:hover {
      transform: translateY(-6px);
      border-color: var(--teal-brand);
      box-shadow: var(--shadow-hover);
    }

    .case-image-wrap {
      position: relative;
      height: 280px;
      overflow: hidden;
      background: var(--navy-950);
    }

    .case-img,
    .case-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .case-card:hover .case-img,
    .case-card:hover .case-video {
      transform: scale(1.06);
    }

    .case-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--white);
      background: rgba(4, 128, 163, 0.85);
      backdrop-filter: blur(4px);
      padding: 4px 14px;
      border-radius: var(--radius-full);
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .case-body {
      padding: 24px 28px 28px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .case-client {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
      flex-wrap: wrap;
      gap: 8px;
    }

    .client-name {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--navy-950);
    }

    .client-location {
      font-size: 0.82rem;
      color: var(--slate-500);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .case-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--navy-950);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .case-desc {
      font-size: 0.92rem;
      color: var(--slate-600);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .case-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 20px;
      padding: 14px 0;
      border-top: 1px solid var(--slate-100);
      border-bottom: 1px solid var(--slate-100);
    }

    .metric-item {
      display: flex;
      flex-direction: column;
      text-align: center;
    }

    .metric-value {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--teal-brand);
    }

    .metric-label {
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--slate-500);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .case-link {
      font-family: var(--font-heading);
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--teal-brand);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.25s ease;
    }

    .case-link:hover {
      color: var(--teal-dark);
      gap: 10px;
    }

    /* ==========================================================================
       SECTION 8: FREQUENTLY ASKED QUESTIONS
       ========================================================================== */
    .faq-section {
      padding: 70px 0;
      background-color: var(--slate-50);
      border-top: 1px solid rgba(4, 128, 163, 0.15);
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--slate-200);
      border-radius: var(--radius-sm);
      padding: 18px 22px;
      cursor: pointer;
      transition: all 0.25s var(--ease);
      position: relative;
    }
    .faq-item:hover {
      border-color: var(--teal-brand);
      box-shadow: 0 4px 12px rgba(4, 128, 163, 0.06);
    }
    .faq-item summary {
      font-weight: 700;
      font-size: 1.02rem;
      color: var(--navy-950);
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.2s ease;
      user-select: none;
    }
    .faq-item summary::-webkit-details-marker {
      display: none;
    }
    .faq-item summary::after {
      content: '+';
      font-family: var(--font-heading);
      font-size: 1.45rem;
      font-weight: 600;
      color: var(--teal-brand);
      line-height: 1;
      margin-left: 12px;
      flex-shrink: 0;
      transition: all 0.2s ease;
    }
    .faq-item[open] summary::after {
      content: '−';
      font-weight: 800;
      color: var(--teal-brand);
    }
    .faq-item[open] {
      border-left: 4px solid var(--teal-brand);
      border-color: var(--teal-brand);
      background: rgba(4, 128, 163, 0.02);
      box-shadow: 0 6px 20px rgba(4, 128, 163, 0.08);
    }
    .faq-item summary:hover {
      color: var(--teal-brand);
    }

    /* ==========================================================================
       SECTION 9: FINAL CTA (Height: ~250-300px, Dark Navy #070E1E)
       ========================================================================== */
    .final-cta-section {
      background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
      color: var(--white);
      padding: 70px 0;
      border-top: 1px solid rgba(4, 128, 163, 0.2);
    }

    .final-cta-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .final-cta-text {
      max-width: 620px;
    }

    .final-cta-h2 {
      font-size: clamp(1.85rem, 3vw, 2.4rem);
      color: var(--white);
      margin-bottom: 8px;
    }

    .final-cta-sub {
      font-size: 1.1rem;
      color: var(--slate-300);
      margin-bottom: 20px;
    }

    .final-contact-details {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      font-family: var(--font-mono);
      font-size: 0.84rem;
      color: var(--slate-400);
    }

    .final-contact-details a {
      color: var(--slate-200);
      transition: color 0.2s ease;
    }
    .final-contact-details a:hover {
      color: var(--teal-brand);
    }

    .final-cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-width: 260px;
    }

    /* ==========================================================================
       SECTION 10: FOOTER (Dark Navy #030712, Text Slate-400)
       ========================================================================== */
    .site-footer {
      background-color: var(--navy-950);
      color: var(--slate-400);
      padding: 70px 0 35px;
      border-top: 1px solid rgba(4, 128, 163, 0.2);
      font-size: 0.92rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 50px;
    }

    .footer-col-title {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 18px;
      letter-spacing: 0.02em;
    }

    .footer-logo-wrap {
      display: inline-block;
      margin-bottom: 16px;
    }
    .footer-logo-wrap::after {
      content: '';
      display: block;
      width: 32px;
      height: 3px;
      background: var(--teal-brand);
      border-radius: 2px;
      margin-top: 6px;
    }

    .footer-logo,
    .footer-logo-svg,
    .footer-logo-img {
      height: 44px;
      width: auto;
      display: block;
      object-fit: contain;
    }

    .footer-tagline {
      font-size: 0.9rem;
      line-height: 1.6;
      color: var(--slate-400);
      margin-bottom: 12px;
    }

    .footer-credentials {
      font-family: var(--font-mono);
      font-size: 0.8rem;
      color: var(--slate-300);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      color: var(--slate-400);
      transition: all 0.2s ease;
    }
    .footer-links a:hover {
      color: var(--teal-brand);
      padding-left: 4px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      color: var(--slate-400);
      line-height: 1.5;
    }
    .footer-contact-item i {
      color: var(--teal-brand);
      margin-top: 4px;
      flex-shrink: 0;
    }
    .footer-contact-item a {
      color: var(--slate-200);
      transition: color 0.2s ease;
    }
    .footer-contact-item a:hover {
      color: var(--teal-brand);
    }

    .footer-bottom {
      border-top: 1px solid rgba(4, 128, 163, 0.15);
      padding-top: 25px;
      text-align: center;
      font-size: 0.84rem;
      color: var(--slate-500);
    }

    /* ==========================================================================
       PREMIUM ANIMATIONS & INTERACTIONS UPGRADE
       ========================================================================== */

    /* --- 1. Scroll-Triggered Reveal Animations --- */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    .reveal-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-left.active {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-right.active {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-scale {
      opacity: 0;
      transform: scale(0.92);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-scale.active {
      opacity: 1;
      transform: scale(1);
    }

    .stagger-children > * {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                  transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .stagger-children.active > *:nth-child(1) { transition-delay: 0.05s; }
    .stagger-children.active > *:nth-child(2) { transition-delay: 0.10s; }
    .stagger-children.active > *:nth-child(3) { transition-delay: 0.15s; }
    .stagger-children.active > *:nth-child(4) { transition-delay: 0.20s; }
    .stagger-children.active > *:nth-child(5) { transition-delay: 0.25s; }
    .stagger-children.active > *:nth-child(6) { transition-delay: 0.30s; }
    .stagger-children.active > * {
      opacity: 1;
      transform: translateY(0);
    }

    /* --- 2. Card Hover Effects --- */
    .service-card {
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--teal-brand), var(--teal-dark));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px -20px rgba(4, 128, 163, 0.3);
    }

    .service-card .service-icon-wrap {
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .service-card:hover .service-icon-wrap {
      transform: scale(1.1) rotate(-5deg);
      background: var(--teal-brand);
      color: var(--white);
      box-shadow: 0 10px 30px -10px rgba(4, 128, 163, 0.4);
    }

    .service-card .service-link {
      transition: all 0.3s ease;
    }

    .service-card:hover .service-link {
      gap: 12px;
      color: var(--teal-dark);
    }

    .service-card .service-link i {
      transition: transform 0.3s ease;
    }

    .service-card:hover .service-link i {
      transform: translateX(4px);
    }

    /* --- 3. Review Card Hover Effects --- */
    .review-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--radius-md);
      border: 1.5px solid transparent;
      transition: all 0.4s ease;
      pointer-events: none;
    }

    .review-card:hover::after {
      border-color: var(--teal-brand);
    }

    .review-card:hover {
      transform: translateY(-6px) scale(1.01);
      box-shadow: 0 20px 45px -15px rgba(4, 128, 163, 0.2);
    }

    .review-card .review-stars {
      transition: transform 0.3s ease;
    }

    .review-card:hover .review-stars {
      transform: scale(1.05);
    }

    /* --- 4. Project Card Hover Effects --- */
    .project-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px -20px rgba(4, 128, 163, 0.35);
    }

    .project-card .project-img {
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .project-card:hover .project-img {
      transform: scale(1.08);
    }

    .project-card .project-overlay {
      transition: all 0.4s ease;
    }

    .project-card:hover .project-overlay {
      background: linear-gradient(180deg, rgba(7, 14, 30, 0.1) 0%, rgba(4, 128, 163, 0.6) 75%, rgba(4, 128, 163, 0.85) 100%);
    }

    /* --- 5. Pillar Card Hover Effects --- */
    .pillar-card .pillar-icon {
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-block;
    }

    .pillar-card:hover .pillar-icon {
      transform: scale(1.15) rotate(-5deg);
    }

    /* --- 6. Button Hover Effects --- */
    .btn {
      position: relative;
      overflow: hidden;
    }

    .btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.15);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn:hover::after {
      transform: scaleX(1);
    }

    .btn i {
      transition: transform 0.3s ease;
    }

    .btn:hover i {
      transform: translateX(4px);
    }

    .btn-hero-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 40px rgba(4, 128, 163, 0.55);
    }

    .btn-hero-secondary:hover {
      transform: translateY(-3px);
    }

    /* --- 7. Mega Menu Hover Enhancement --- */
    .mega-link-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--radius-sm);
      background: linear-gradient(90deg, rgba(4, 128, 163, 0.06), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .mega-link-card:hover::before {
      opacity: 1;
    }

    .mega-link-card .mega-icon {
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mega-link-card:hover .mega-icon {
      transform: scale(1.1);
    }

    /* --- 8. Hero Trust Bar Animation --- */
    .hero-trust-bar span {
      position: relative;
      transition: color 0.3s ease;
    }

    .hero-trust-bar span:hover {
      color: var(--white);
    }

    .hero-trust-bar span:hover i {
      color: var(--teal-brand);
      transform: scale(1.15);
    }

    /* --- 9. Process Step Animation --- */
    .process-step:hover {
      transform: translateX(6px);
    }

    .process-step:hover .process-num {
      background: var(--teal-light);
      border-color: var(--teal-brand);
      box-shadow: 0 0 25px rgba(4, 128, 163, 0.25);
    }

    /* --- 10. Rating Badge Animation --- */
    .reviews-rating-badge:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 30px rgba(4, 128, 163, 0.12);
    }

    .reviews-rating-badge:hover .badge-score {
      color: var(--teal-brand);
    }

    /* --- 11. Staggered Reveal for Services Grid --- */
    .services-grid .service-card { opacity: 1; transform: translateY(0); }

    .services-grid.reveal-grid .service-card {
      opacity: 1;
      transform: translateY(0);
    }

    .services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
    .services-grid .service-card:nth-child(2) { transition-delay: 0.10s; }
    .services-grid .service-card:nth-child(3) { transition-delay: 0.15s; }
    .services-grid .service-card:nth-child(4) { transition-delay: 0.20s; }
    .services-grid .service-card:nth-child(5) { transition-delay: 0.25s; }
    .services-grid .service-card:nth-child(6) { transition-delay: 0.30s; }

    /* --- 12. Footer Social Button Hover --- */
    .footer-social-btn:hover {
      transform: translateY(-4px) scale(1.1);
      box-shadow: 0 8px 25px rgba(4, 128, 163, 0.3);
    }

    /* --- 13. Subtle Glow on Hero Trust Bar --- */
    .hero-trust-bar {
      position: relative;
    }

    .hero-trust-bar::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(4, 128, 163, 0.5), var(--teal-brand), rgba(4, 128, 163, 0.5), transparent);
      animation: trustBarGlow 4s ease-in-out infinite;
    }

    @keyframes trustBarGlow {
      0%, 100% { opacity: 0.3; }
      50% { opacity: 1; }
    }

    /* --- 14. Review Verified Badge Pulse --- */
    .review-verified {
      animation: verifiedPulse 3s ease-in-out infinite;
    }

    @keyframes verifiedPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    /* --- 15. Mega Menu Smooth Opening --- */
    .mega-dropdown-wrapper {
      transform: translateX(-50%) translateY(8px);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-item:hover .mega-dropdown-wrapper {
      transform: translateX(-50%) translateY(0);
    }

    /* --- 16. Hover Scale on Project Category Badge --- */
    .project-category {
      transition: all 0.3s ease;
    }

    .project-card:hover .project-category {
      color: var(--white);
      transform: scale(1.05);
    }

    /* ==========================================================================
       RESPONSIVE MEDIA QUERIES (320px to 1920px)
       ========================================================================== */
    @media (max-width: 1200px) {
      .client-logos-grid {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    @media (max-width: 992px) {
      .nav-menu {
        display: none;
      }
      .mobile-toggle {
        display: block;
      }
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .case-studies-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
      }
      .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .trust-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
      }
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .process-step:not(:last-child)::after {
        display: none;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .hero-section {
        min-height: 520px;
        padding: 60px 0;
      }
      .hero-bg-video {
        opacity: 0.45;
        object-position: 65% center;
      }
      .hero-h1 {
        font-size: 2.2rem;
      }
      .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
      }
    }

    @media (max-width: 768px) {
      .top-bar-left {
        font-size: 0.72rem;
      }
      .top-bar-right {
        font-size: 0.76rem;
      }
      .services-grid {
        grid-template-columns: 1fr;
      }
      .reviews-grid {
        grid-template-columns: 1fr;
      }
      .client-logos-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
      }
      .final-cta-buttons {
        width: 100%;
      }
      .hero-section {
        min-height: 440px;
        padding: 45px 0;
      }
      .hero-bg-video {
        opacity: 0.35;
        object-position: 60% center;
      }
      .hero-h1 {
        font-size: 1.8rem;
      }
      .hero-subheadline {
        font-size: 0.95rem;
      }
      .direct-answer-box {
        padding: 14px 18px;
        font-size: 0.88rem;
      }
      .hero-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
      }
      .hero-cta-group {
        flex-direction: column;
        width: 100%;
      }
      .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
      }
      .hero-trust-bar {
        font-size: 0.65rem;
        gap: 8px;
        padding-top: 14px;
      }
    }

    @media (max-width: 576px) {
      .expertise-grid {
        grid-template-columns: 1fr;
      }
      .trust-numbers-grid {
        grid-template-columns: 1fr 1fr;
        padding: 20px;
        gap: 16px;
      }
      .case-metrics {
        grid-template-columns: 1fr 1fr;
      }
      .case-card {
        max-width: 100%;
      }
      .top-bar-inner {
        flex-direction: column;
        justify-content: center;
        gap: 4px;
      }
      .top-bar {
        height: auto;
        padding: 6px 0;
      }
      .hero-section {
        min-height: 380px;
        padding: 35px 0;
      }
      .hero-bg-video {
        opacity: 0.25;
        object-position: center center;
      }
      .hero-h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
      }
      .hero-subheadline {
        font-size: 0.85rem;
        margin-bottom: 18px;
      }
      .direct-answer-box {
        padding: 10px 14px;
        font-size: 0.8rem;
        margin-bottom: 20px;
      }
      .hero-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
        margin-bottom: 12px;
      }
      .hero-cta-group {
        flex-direction: column;
        width: 100%;
      }
      .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
      }
      .hero-trust-bar {
        font-size: 0.55rem;
        gap: 4px;
        padding-top: 10px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .process-grid {
        grid-template-columns: 1fr;
      }
    }
  
/* ==========================================================================
   MOBILE HEADER & STUNNING DRAWER MENU
   ========================================================================== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-cta-btn {
  display: inline-flex;
}

.mobile-toggle {
  display: none;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy-950);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.mobile-toggle:hover {
  background: var(--teal-light);
  color: var(--teal-brand);
  border-color: var(--teal-border);
  transform: scale(1.05);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 86vw);
  height: 100vh;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  box-shadow: -10px 0 40px rgba(3, 7, 18, 0.2);
  transition: right 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  border-left: 1px solid var(--slate-200);
}
.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--slate-100);
}

.drawer-close-btn {
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--slate-700);
  cursor: pointer;
  transition: all 0.25s ease;
}
.drawer-close-btn:hover {
  background: var(--teal-brand);
  color: var(--white);
  transform: rotate(90deg);
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-950);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.drawer-nav-link:hover, .drawer-nav-link.active {
  background: var(--slate-50);
  color: var(--teal-brand);
  padding-left: 18px;
}

.drawer-sublist {
  display: none;
  padding: 6px 0 10px 16px;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid var(--teal-brand);
  margin: 4px 0 8px 14px;
}
.drawer-sublink {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  transition: all 0.2s ease;
}
.drawer-sublink:hover {
  color: var(--teal-brand);
  transform: translateX(4px);
}
.drawer-sublink i {
  font-size: 0.75rem;
  color: var(--teal-brand);
}

.drawer-actions-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer-actions-block .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 0.95rem;
}
.drawer-trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--slate-500);
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 992px) {
  .nav-menu {
    display: none !important;
  }
  .header-cta-btn {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
  }
  .site-header {
    height: 72px;
  }
  .brand-logo img, .brand-logo svg {
    height: 38px;
  }
}


/* Subpage Specific Enhancements (Page Hero, ROI Calculator, Spec Tables, Blog) */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 60%, #0c1833 100%);
  color: var(--white);
  padding: 90px 0 80px;
  overflow: hidden;
}
.page-hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.page-hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.2) contrast(1.05) brightness(0.7);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(3, 7, 18, 0.94) 0%, rgba(7, 14, 30, 0.85) 45%, rgba(7, 14, 30, 0.6) 100%),
    linear-gradient(to top, rgba(3, 7, 18, 0.85) 0%, transparent 50%);
  z-index: 2;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 980px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--slate-400);
  margin-bottom: 20px;
}
.breadcrumbs a {
  color: var(--teal-brand);
}
.breadcrumbs a:hover {
  color: var(--white);
}
.breadcrumbs i {
  font-size: 0.65rem;
  color: var(--slate-500);
}
.page-h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--slate-300);
  line-height: 1.6;
  max-width: 780px;
  margin-bottom: 28px;
}
.page-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-metric-item {
  display: flex;
  flex-direction: column;
}
.hero-metric-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #38bdf8;
  margin-bottom: 4px;
}
.hero-metric-label {
  font-size: 0.82rem;
  color: var(--slate-400);
  font-family: var(--font-mono);
}

.spec-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--white);
}
.spec-table th {
  background: var(--navy-950);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-heading);
}
.spec-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--slate-200);
}
.spec-table tr:nth-child(even) {
  background: var(--slate-50);
}

.emergency-dispatch-banner {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 25px rgba(185, 28, 28, 0.25);
}
.dispatch-text-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dispatch-pulsing-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  animation: pulse 2s infinite;
}

.direct-answer-box {
  background: var(--slate-50);
  border: 1.5px solid var(--teal-border);
  border-left: 4px solid var(--teal-brand);
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  margin: 24px 0 32px;
  color: var(--navy-950);
  font-size: 1.02rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .page-hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==========================================================================
   ENTERPRISE SUBPAGE & ARTICLE DESIGN SYSTEM (All 60 Components)
   ========================================================================== */

/* Section Containers & Typography */
.section {
  padding: 80px 0;
}
.section-light {
  background-color: var(--white);
}
.section-dark {
  background-color: var(--navy-950);
  color: var(--white);
}
.section-header {
  margin-bottom: 48px;
}
.section-header.text-center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.2;
  margin: 12px 0 16px;
}
.section-dark .section-title {
  color: var(--white);
}
.section-subtitle {
  font-size: 1.08rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin: 0;
}
.section-dark .section-subtitle {
  color: var(--slate-300);
}
.eyebrow-light {
  background: rgba(4, 128, 163, 0.2);
  color: #38bdf8 !important;
  border-color: rgba(56, 189, 248, 0.3);
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Feature Cards */
.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.section-dark .feature-card {
  background: var(--navy-900);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal-brand);
}
.feature-icon, .feature-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--teal-light);
  color: var(--teal-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.section-dark .feature-icon, .section-dark .feature-icon-wrap {
  background: rgba(4, 128, 163, 0.25);
  color: #38bdf8;
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-950);
  margin: 0 0 10px;
  line-height: 1.3;
}
.section-dark .feature-title {
  color: var(--white);
}
.feature-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin: 0;
}
.section-dark .feature-desc {
  color: var(--slate-300);
}
.feature-check-list, .feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-check-list li, .feature-list li {
  font-size: 0.9rem;
  color: var(--slate-700);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.section-dark .feature-check-list li, .section-dark .feature-list li {
  color: var(--slate-300);
}

/* Contact Grid & Form Cards */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-info-card {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  color: var(--white);
}
.contact-method-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(4, 128, 163, 0.2);
  color: var(--teal-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-method-label {
  font-size: 0.8rem;
  color: var(--slate-400);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.contact-method-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.contact-method-val a {
  color: var(--white);
}
.contact-method-val a:hover {
  color: var(--teal-brand);
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-950);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.form-input:focus {
  outline: none;
  border-color: var(--teal-brand);
  box-shadow: 0 0 0 3px rgba(4, 128, 163, 0.15);
}

/* Interactive LED ROI Savings Calculator */
.calc-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 900px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }
}
.calc-control {
  margin-bottom: 24px;
}
.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-950);
  margin-bottom: 10px;
}
.calc-val-badge {
  font-family: var(--font-mono);
  background: var(--teal-light);
  color: var(--teal-brand);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
}
.calc-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--slate-200);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-brand);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(4, 128, 163, 0.4);
}
.calc-results-box {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
  border-radius: var(--radius-md);
  padding: 32px;
  color: var(--white);
  text-align: center;
  border: 1px solid var(--teal-border);
}
.calc-result-title {
  font-size: 0.88rem;
  font-family: var(--font-mono);
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.calc-result-stat {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #38bdf8;
  line-height: 1.1;
  margin-bottom: 12px;
}

/* Blog Grid & Post Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-card, .blog-post-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.blog-card:hover, .blog-post-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal-brand);
}
.blog-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--slate-500);
  margin-bottom: 12px;
}
.blog-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-950);
  margin: 0 0 12px;
  line-height: 1.35;
}
.blog-title a {
  color: var(--navy-950);
}
.blog-title a:hover {
  color: var(--teal-brand);
}
.blog-excerpt {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin: 0 0 20px;
  flex-grow: 1;
}
.blog-read-more {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal-brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-read-more:hover {
  color: var(--navy-950);
}
.filter-tab {
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--slate-100);
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
  transition: all 0.2s ease;
}
.filter-tab.active, .filter-tab:hover {
  background: var(--navy-950);
  color: var(--white);
  border-color: var(--navy-950);
}

/* Single Article Layout */
.article-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) {
  .article-layout-grid {
    grid-template-columns: 1fr;
  }
}
.article-main-column, .article-container {
  background: var(--white);
}
.article-body {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--slate-800);
}
.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy-950);
  margin: 40px 0 16px;
}
.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-950);
  margin: 28px 0 12px;
}
.article-body p {
  margin-bottom: 22px;
}
.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.table-responsive {
  overflow-x: auto;
  margin: 24px 0;
}


/* Work Video Grid & Portfolio Items */
.work-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 30px;
}
.work-video-card {
  background: var(--navy-950);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.work-video-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.work-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card-overlay {
  padding: 24px;
  color: var(--white);
}
.work-card-category {
  color: var(--teal-brand);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.work-card-title {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 6px 0 10px;
}
.work-card-scope {
  color: var(--slate-300);
  font-size: 0.9rem;
  line-height: 1.55;
}


/* ==========================================================================
   PREMIUM FAQ ACCORDION COMPONENT (UNIVERSAL)
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background-color: var(--slate-50);
}
.faq-accordion, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 32px auto 0;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(7, 14, 30, 0.04);
}
.faq-item:hover {
  border-color: var(--teal-brand);
  box-shadow: 0 8px 24px rgba(4, 128, 163, 0.08);
}
.faq-item.active,
.faq-item[open] {
  border-color: var(--teal-brand);
  border-left: 4px solid var(--teal-brand);
  box-shadow: 0 8px 24px rgba(4, 128, 163, 0.1);
  background: #ffffff;
}

/* Button & Question Header */
.faq-question,
.faq-item summary {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy-950);
  cursor: pointer;
  outline: none;
  transition: color 0.2s ease;
  user-select: none;
}
.faq-question:hover,
.faq-item summary:hover,
.faq-item.active .faq-question,
.faq-item[open] summary {
  color: var(--teal-brand);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Chevron & Icon animation */
.faq-chevron,
.faq-item summary::after {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--teal-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease;
}
.faq-item:hover .faq-chevron,
.faq-item:hover summary::after {
  background: var(--teal-light);
}
.faq-item.active .faq-chevron,
.faq-item[open] summary::after {
  transform: rotate(180deg);
  background: var(--teal-brand);
  color: var(--white);
}

/* Answer Body */
.faq-answer {
  display: none;
  padding: 0 26px 24px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--slate-700);
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  margin-top: 0;
  padding-top: 16px;
  animation: faqFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item[open] p,
.faq-item[open] div:not(summary) {
  padding: 0 26px 24px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--slate-700);
  margin: 0;
}
.faq-answer p {
  margin: 0 0 10px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==========================================================================
   COMPACT & SLEEK FAQ ACCORDION COMPONENT
   ========================================================================== */
.faq-section {
  padding: 45px 0 50px !important;
  background-color: var(--slate-50);
}
.faq-accordion, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px !important;
  max-width: 820px !important;
  margin: 18px auto 0 !important;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200) !important;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 4px rgba(7, 14, 30, 0.03);
}
.faq-item:hover {
  border-color: var(--teal-brand) !important;
  box-shadow: 0 4px 14px rgba(4, 128, 163, 0.08);
}
.faq-item.active,
.faq-item[open] {
  border-color: var(--teal-brand) !important;
  border-left: 3.5px solid var(--teal-brand) !important;
  box-shadow: 0 4px 16px rgba(4, 128, 163, 0.08);
  background: #ffffff;
}

/* Button & Question Header (Compact) */
.faq-question,
.faq-item summary {
  width: 100%;
  padding: 13px 18px !important;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.96rem !important;
  font-weight: 700;
  color: var(--navy-950);
  cursor: pointer;
  outline: none;
  transition: color 0.15s ease;
  user-select: none;
  box-sizing: border-box;
}
.faq-question:hover,
.faq-item summary:hover,
.faq-item.active .faq-question,
.faq-item[open] summary {
  color: var(--teal-brand);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Chevron & Icon animation (Compact) */
.faq-chevron,
.faq-item summary::after {
  width: 26px !important;
  height: 26px !important;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--teal-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem !important;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.15s ease, color 0.15s ease;
}
.faq-item:hover .faq-chevron,
.faq-item:hover summary::after {
  background: var(--teal-light);
}
.faq-item.active .faq-chevron,
.faq-item[open] summary::after {
  transform: rotate(180deg) !important;
  background: var(--teal-brand);
  color: var(--white);
}

/* Answer Body (Compact) */
.faq-answer {
  display: none;
  padding: 8px 18px 15px !important;
  font-size: 0.91rem !important;
  line-height: 1.58 !important;
  color: var(--slate-600);
  border-top: 1px solid var(--slate-100);
  margin-top: 0;
  animation: faqQuickFade 0.2s ease;
}
.faq-item.active .faq-answer {
  display: block !important;
}
.faq-item[open] p,
.faq-item[open] div:not(summary) {
  padding: 8px 18px 15px !important;
  font-size: 0.91rem !important;
  line-height: 1.58 !important;
  color: var(--slate-600);
  margin: 0;
}
.faq-answer p {
  margin: 0 0 6px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

@keyframes faqQuickFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ==========================================================================
   GLOBAL 100% MOBILE RESPONSIVENESS & NATIVE ACCORDION SYSTEM
   ========================================================================== */
html, body {
  overflow-x: clip !important;
  width: 100% !important;
  max-width: 100vw !important;
  scroll-behavior: smooth;
}

/* Native FAQ Accordion (100% Fail-Safe) */
.faq-accordion, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px !important;
  max-width: 840px !important;
  margin: 20px auto 0 !important;
}
details.faq-item {
  background: var(--white) !important;
  border: 1px solid var(--slate-200) !important;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(7, 14, 30, 0.03);
}
details.faq-item:hover {
  border-color: var(--teal-brand) !important;
}
details.faq-item[open] {
  border-color: var(--teal-brand) !important;
  border-left: 4px solid var(--teal-brand) !important;
  box-shadow: 0 4px 16px rgba(4, 128, 163, 0.08);
}
details.faq-item summary.faq-question {
  width: 100%;
  padding: 14px 18px !important;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.98rem !important;
  font-weight: 700;
  color: var(--navy-950);
  cursor: pointer;
  outline: none;
  list-style: none;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker {
  display: none;
}
details.faq-item summary .faq-chevron {
  width: 26px !important;
  height: 26px !important;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--teal-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem !important;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.15s ease, color 0.15s ease;
}
details.faq-item:hover summary .faq-chevron {
  background: var(--teal-light);
}
details.faq-item[open] summary .faq-chevron {
  transform: rotate(180deg) !important;
  background: var(--teal-brand);
  color: var(--white);
}
details.faq-item .faq-answer {
  display: block !important;
  padding: 8px 18px 16px !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: var(--slate-600);
  border-top: 1px solid var(--slate-100);
  margin-top: 0;
}
details.faq-item .faq-answer p {
  margin: 0 0 8px;
}
details.faq-item .faq-answer p:last-child {
  margin-bottom: 0;
}

/* Responsive Scaling for Mobile Screens */
@media (max-width: 900px) {
  .page-hero {
    padding: 60px 0 50px !important;
  }
  .page-h1 {
    font-size: 2.1rem !important;
  }
  .page-hero-subtitle {
    font-size: 1rem !important;
  }
  .page-hero-metrics {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
  .calc-grid {
    grid-template-columns: 1fr !important;
  }
  .grid-3 {
    grid-template-columns: 1fr !important;
  }
  .grid-4 {
    grid-template-columns: 1fr !important;
  }
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
  .work-video-grid {
    grid-template-columns: 1fr !important;
  }
  .article-layout-grid {
    grid-template-columns: 1fr !important;
  }
  .services-grid {
    grid-template-columns: 1fr !important;
  }
  .expertise-grid {
    grid-template-columns: 1fr !important;
  }
  .emergency-dispatch-banner {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }
  .dispatch-text-group {
    flex-direction: column !important;
    text-align: center !important;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .page-h1 {
    font-size: 1.85rem !important;
  }
  .hero-h1 {
    font-size: 2rem !important;
  }
  .page-hero-metrics {
    grid-template-columns: 1fr !important;
  }
  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
  }
  .hero-cta-group .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .contact-form-card {
    padding: 24px 18px !important;
  }
  .form-row {
    grid-template-columns: 1fr !important;
  }
}


/* Guaranteed Instant Visibility & Elevation for Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.services-grid .service-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.services-grid .service-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--teal-brand);
  box-shadow: var(--shadow-hover);
}
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ==========================================================================
   PERFECT NATIVE DETAILS/SUMMARY ACCORDION SYSTEM
   ========================================================================== */
details.faq-item {
  display: block !important;
  background: var(--white) !important;
  border: 1px solid var(--slate-200) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px !important;
  overflow: hidden !important;
  transition: all 0.2s ease !important;
}
details.faq-item:hover {
  border-color: var(--teal-brand) !important;
}
details.faq-item[open] {
  border-color: var(--teal-brand) !important;
  border-left: 4px solid var(--teal-brand) !important;
  box-shadow: 0 4px 16px rgba(4, 128, 163, 0.08) !important;
}
details.faq-item summary {
  list-style: none !important;
  cursor: pointer !important;
  padding: 14px 18px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-family: var(--font-heading) !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  color: var(--navy-950) !important;
  user-select: none !important;
  outline: none !important;
}
details.faq-item summary::-webkit-details-marker {
  display: none !important;
}
details.faq-item summary .faq-chevron {
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  background: var(--slate-100) !important;
  color: var(--teal-brand) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.75rem !important;
  flex-shrink: 0 !important;
  transition: transform 0.25s ease, background 0.15s ease, color 0.15s ease !important;
}
details.faq-item[open] summary .faq-chevron {
  transform: rotate(180deg) !important;
  background: var(--teal-brand) !important;
  color: var(--white) !important;
}
details.faq-item .faq-answer {
  display: block !important;
  padding: 8px 18px 16px !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: var(--slate-600) !important;
  border-top: 1px solid var(--slate-100) !important;
}


/* ==========================================================================
   PERFECT STICKY HEADER (Active On Scroll)
   ========================================================================== */
html {
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  overflow-x: clip;
}
.site-header {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(4, 128, 163, 0.18) !important;
  transition: box-shadow 0.25s ease, background-color 0.25s ease !important;
}

/* WP Admin Bar Offset */
body.admin-bar .site-header {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px !important;
  }
}


/* Seamless CTA and Footer Integration (Zero White Gap) */
.final-cta-section {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%) !important;
  color: var(--white) !important;
  padding: 70px 0 !important;
  border-top: 1px solid rgba(4, 128, 163, 0.2) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  margin: 0 !important;
  opacity: 1 !important;
  transform: none !important;
}
.site-footer {
  background-color: var(--navy-950) !important;
  color: var(--slate-400) !important;
  padding: 60px 0 35px !important;
  border-top: none !important;
  margin: 0 !important;
}
.section-light:last-of-type,
main section:last-of-type {
  margin-bottom: 0 !important;
}





/* ==========================================================================
   PURE CURSOR-HOVER MEGA DROPDOWN MENU (Highlight Only on Cursor)
   ========================================================================== */
.nav-item {
  position: relative;
  padding: 24px 0;
}
.nav-item > .nav-link {
  user-select: none;
}
.mega-dropdown-wrapper {
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(6px) !important;
  width: 760px !important;
  background: var(--white) !important;
  border: 1px solid var(--slate-200) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 20px 50px rgba(7, 15, 30, 0.14), 0 4px 16px rgba(4, 128, 163, 0.08) !important;
  padding: 24px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease !important;
  z-index: 1100 !important;
}

/* Invisible Bridge so moving cursor between link and dropdown does not drop hover */
.mega-dropdown-wrapper::before {
  content: '' !important;
  position: absolute !important;
  top: -24px !important;
  left: 0 !important;
  right: 0 !important;
  height: 24px !important;
  background: transparent !important;
}

/* Shows ONLY when mouse cursor is on .nav-item or inside the dropdown */
.nav-item:hover > .mega-dropdown-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

.nav-item:hover > .nav-link i {
  transform: rotate(180deg) !important;
  color: var(--teal-brand) !important;
}

/* Submenu Cards: Default State (No Highlight) */
.mega-link-card {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm) !important;
  background: transparent !important;
  border-left: none !important;
  box-shadow: none !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
}
.mega-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: var(--radius-sm) !important;
  background: rgba(4, 128, 163, 0.08) !important;
  color: var(--teal-brand) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  flex-shrink: 0 !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}
.mega-title {
  font-family: var(--font-heading) !important;
  font-size: 0.94rem !important;
  font-weight: 800 !important;
  color: var(--navy-950) !important;
  line-height: 1.2 !important;
  transition: color 0.2s ease !important;
}
.mega-sub {
  font-size: 0.76rem !important;
  color: var(--slate-500) !important;
  line-height: 1.35 !important;
  margin-top: 2px !important;
}

/* Submenu Cards: Highlight ONLY when cursor is directly over that card */
.mega-link-card:hover {
  background: var(--slate-50) !important;
  transform: translateX(4px) !important;
}
.mega-link-card:hover .mega-icon {
  background: var(--teal-brand) !important;
  color: var(--white) !important;
}
.mega-link-card:hover .mega-title {
  color: var(--teal-brand) !important;
}
/* ============================================================
   MEGA MENU FIXES — FORCE CLICKABLE & NO FLICKER
   ============================================================ */

/* Ensure mega menu links are always clickable */
.mega-link-card {
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 9999 !important;
    position: relative !important;
}

.mega-link-card:active,
.mega-link-card:focus,
.mega-link-card:hover {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Ensure dropdown wrapper doesn't block clicks */
.mega-dropdown-wrapper {
    pointer-events: auto !important;
    z-index: 9998 !important;
}

/* Make sure everything inside is clickable */
.mega-dropdown-wrapper * {
    pointer-events: auto !important;
}

/* Nav item should allow clicks */
.nav-item.has-mega {
    pointer-events: auto !important;
}

/* Override any parent blocking */
.nav-menu .nav-item .mega-dropdown-wrapper .mega-items-list .mega-link-card {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* ============================================================
   MEGA MENU — SMOOTH HOVER BRIDGE (No Flicker)
   ============================================================ */

/* Prevent hover dead zone between nav link and dropdown */
.nav-item.has-mega {
    position: relative;
}

/* Invisible hover bridge */
.nav-item.has-mega::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 25px;
    pointer-events: none;
}

/* Dropdown smooth animation */
.mega-dropdown-wrapper {
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
}

/* Reveal dropdown on hover */
.nav-item.has-mega:hover .mega-dropdown-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Highlight nav link on hover */
.nav-item.has-mega:hover > .nav-link {
    color: var(--teal-brand, #0480A3);
}
.nav-item.has-mega:hover > .nav-link i {
    transform: rotate(180deg);
}

/* Active/highlight states for nav items */
.nav-item .nav-link:hover,
.nav-item.current-menu-item > .nav-link,
.nav-item.current-menu-ancestor > .nav-link {
    color: var(--teal-brand, #0480A3);
}