﻿:root {
      --lime: #AADD00;
      --lime-dark: #8AB800;
      --navy: #1B2A4A;
      --navy-light: #243760;
      --crimson: #8B1A1A;
      --white: #FFFFFF;
      --off: #F7F8F2;
      --gray: #6B7280;
      --light-gray: #E8EAE4;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.65;
      font-weight: 400;
      color: var(--navy);
      background: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Inter', sans-serif;
      line-height: 1.12;
      letter-spacing: 0;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.65rem 5%;
      transition: all 0.3s ease;
    }

    nav.scrolled {
      background: var(--white);
      box-shadow: 0 2px 20px rgba(27, 42, 74, 0.1);
      padding: 0.65rem 5%;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-img {
      height: 64px;
      width: auto;
      object-fit: contain;
      transition: height 0.3s ease;
      border-radius: 10px;
    }

    nav.scrolled .logo-img {
      height: 58px;
    }

    .footer-logo-img {
      height: 72px;
      width: auto;
      object-fit: contain;
      border-radius: 10px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(1.25rem, 1.8vw, 2rem);
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.85);
      font-size: 15px;
      font-weight: 500;
      position: relative;
      display: inline-flex;
      align-items: center;
      padding: 0.45rem 0.08rem;
      white-space: nowrap;
      transition: color 0.2s;
    }

    nav.scrolled .nav-links a {
      color: var(--navy);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--lime);
      transition: width 0.3s;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .nav-cta {
      background: var(--lime);
      color: var(--navy);
      border: none;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
      padding: 0;
      appearance: none;
      -webkit-appearance: none;
      flex-shrink: 0;
      position: relative;
    }

    .nav-cta i {
      font-size: 16px;
      line-height: 1;
      position: relative;
      z-index: 1;
    }

    .nav-cta::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 2px solid var(--lime);
      animation: navPhonePulse 2s ease-out infinite;
      pointer-events: none;
      will-change: transform, opacity;
    }

    @keyframes navPhonePulse {
      0% {
        transform: scale(1);
        opacity: 0.7;
      }

      70% {
        transform: scale(1.45);
        opacity: 0;
      }

      100% {
        transform: scale(1.45);
        opacity: 0;
      }
    }

    .nav-cta:hover {
      background: var(--lime-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(170, 221, 0, 0.4);
    }

    /* NAV RIGHT GROUP - phone icon */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav-right .nav-cta {
      transition: background 0.2s, box-shadow 0.2s;
    }

    .call-dropdown-wrap {
      position: relative;
      display: inline-flex;
      align-items: center;
      z-index: 5;
    }

    .call-dropdown-wrap.open {
      z-index: 3300;
    }

    .call-trigger {
      cursor: pointer;
    }

    .call-menu {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      width: min(232px, calc(100vw - 32px));
      background: var(--white);
      border: 1px solid rgba(170, 221, 0, 0.38);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 16px 38px rgba(27, 42, 74, 0.24);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
      z-index: 3300;
    }

    .call-dropdown-wrap.open .call-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .call-menu-head {
      display: flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: var(--white);
      padding: 11px 14px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.02em;
      border-bottom: 3px solid var(--lime);
    }

    .call-menu-head i {
      color: var(--lime);
      font-size: 16px;
    }

    .call-menu a {
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 13px 14px;
      color: var(--navy);
      text-decoration: none;
      font-size: 15px;
      font-weight: 750;
      background: var(--white);
      border-bottom: 1px solid rgba(27, 42, 74, 0.08);
      transition: background 0.2s ease, color 0.2s ease;
    }

    .call-menu a:last-child {
      border-bottom: 0;
    }

    .call-menu a i {
      color: var(--lime-dark);
      font-size: 18px;
    }

    .call-menu a:hover {
      background: rgba(170, 221, 0, 0.14);
      color: var(--navy);
    }

    .hero-call-wrap,
    .hero-call-wrap.open {
      z-index: 3400;
    }

    .hero-call-wrap .call-menu {
      left: 0;
      right: auto;
    }

    .service-call-wrap .call-menu {
      top: calc(100% + 10px);
      right: 0;
    }

    .service-call-wrap {
      position: relative;
    }

    @media (max-width: 768px) {
      .call-menu {
        width: min(224px, calc(100vw - 28px));
        top: calc(100% + 10px);
      }

      .call-menu-head {
        padding: 10px 13px;
        font-size: 12px;
      }

      .call-menu a {
        padding: 12px 13px;
        font-size: 14px;
      }
    }

    @media (max-width: 600px) {
      .call-menu {
        width: clamp(132px, 30vw, 170px);
        border-radius: 12px;
      }

      .call-menu-head {
        gap: 5px;
        padding: 7px 8px;
        font-size: 9.5px;
        border-bottom-width: 2px;
      }

      .call-menu-head i {
        font-size: 12px;
      }

      .call-menu a {
        gap: 5px;
        padding: 8px 8px;
        font-size: 11px;
        line-height: 1.15;
        white-space: nowrap;
      }

      .call-menu a i {
        font-size: 13px;
      }

      .nav-call-wrap .call-menu {
        position: fixed;
        top: 70px;
        right: 12px;
        left: auto;
      }

      .hero-content {
        z-index: 6;
      }

      .hero-call-wrap .call-menu {
        left: 0;
        right: auto;
      }

      .service-call-wrap .call-menu {
        right: -2px;
      }
    }

    @media (max-width: 380px) {
      .call-menu {
        width: clamp(126px, 30vw, 150px);
      }

      .call-menu a {
        padding: 7px 7px;
        font-size: 10.5px;
      }

      .hero-call-wrap .call-menu {
        left: 50%;
        right: auto;
        transform: translate(-50%, -8px);
      }

      .hero-call-wrap.open .call-menu {
        transform: translate(-50%, 0);
      }
    }

    /* HAMBURGER ICON WITH ANIMATION */
    .hamburger {
      display: none;
      width: 28px;
      height: 22px;
      position: relative;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      z-index: 1001;
      flex-shrink: 0;
    }

    .hamburger span {
      display: block;
      position: absolute;
      height: 2.5px;
      width: 100%;
      background: var(--white);
      border-radius: 2px;
      left: 0;
      transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }

    nav.scrolled .hamburger span {
      background: var(--navy);
    }

    .hamburger span:nth-child(1) {
      top: 0;
    }

    .hamburger span:nth-child(2) {
      top: 9px;
    }

    .hamburger span:nth-child(3) {
      top: 18px;
    }

    .hamburger.active span:nth-child(1) {
      top: 9px;
      transform: rotate(45deg);
      background: var(--lime) !important;
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
      transform: translateX(20px);
    }

    .hamburger.active span:nth-child(3) {
      top: 9px;
      transform: rotate(-45deg);
      background: var(--lime) !important;
    }

    /* MOBILE NAV BACKDROP */
    .mobile-backdrop {
      position: fixed;
      inset: 0;
      z-index: 998;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .mobile-backdrop.open {
      opacity: 1;
      visibility: visible;
    }

    /* NAV LEFT GROUP - hamburger + logo pinned together */
    .nav-left {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    /* MOBILE NAV PANEL - drops from below navbar */
    .mobile-panel {
      position: fixed;
      top: 0;
      left: 0;
      right: auto;
      z-index: 999;
      width: 300px;
      max-width: 85vw;
      height: auto;
      max-height: calc(100vh - 72px);
      background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
      padding: 16px 20px 28px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      box-shadow: 8px 8px 40px rgba(0, 0, 0, 0.45);
      border-radius: 0 0 20px 0;
      overflow-y: auto;
      transform: translateY(-110%);
      transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .mobile-panel a {
      color: #fff;
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      padding: 13px 16px;
      border-radius: 10px;
      transition: all 0.3s ease;
      display: block;
      border-left: 3px solid transparent;
      opacity: 0;
      transform: translateY(-12px);
    }

    .mobile-panel.open a {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-panel a:nth-child(1) {
      transition-delay: 0.05s;
    }

    .mobile-panel a:nth-child(2) {
      transition-delay: 0.10s;
    }

    .mobile-panel a:nth-child(3) {
      transition-delay: 0.15s;
    }

    .mobile-panel a:nth-child(4) {
      transition-delay: 0.20s;
    }

    .mobile-panel a:nth-child(5) {
      transition-delay: 0.25s;
    }

    .mobile-panel a:nth-child(6) {
      transition-delay: 0.30s;
    }

    .mobile-panel a:nth-child(7) {
      transition-delay: 0.35s;
    }

    .mobile-panel a:hover {
      background: rgba(170, 221, 0, 0.12);
      border-left-color: var(--lime);
      color: var(--lime);
      transform: translateX(5px);
    }

    .mobile-panel .mobile-cta {
      margin-top: auto;
      background: var(--lime);
      color: var(--navy) !important;
      text-align: center;
      border-radius: 50px;
      font-weight: 700;
      padding: 14px 24px;
      border-left: none !important;
    }

    .mobile-panel .mobile-cta:hover {
      background: var(--lime-dark);
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 20px rgba(170, 221, 0, 0.4);
    }

    /* HERO */
    #hero {
      min-height: 100vh;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      position: relative;
      overflow: hidden;
      padding: 120px 5% 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: repeating-linear-gradient(0deg, var(--lime) 0px, var(--lime) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, var(--lime) 0px, var(--lime) 1px, transparent 1px, transparent 60px);
    }

    .hero-accent {
      position: absolute;
      right: -100px;
      top: -100px;
      width: 600px;
      height: 600px;
      background: var(--lime);
      opacity: 0.05;
      border-radius: 50%;
    }

    .hero-content {
      flex: 1;
      min-width: 0;
      position: relative;
      z-index: 4;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(170, 221, 0, 0.12);
      border: 1px solid rgba(170, 221, 0, 0.3);
      color: var(--lime);
      font-size: 13px;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 1.5rem;
    }

    .hero-badge i {
      font-size: 14px;
    }

    h1.hero-title {
      font-size: clamp(40px, 5.6vw, 68px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 1.5rem;
      position: relative;
      min-height: 2.15em;
      overflow: hidden;
    }

    .hero-title-text {
      display: block;
      transition: opacity 1.6s ease, transform 1.6s ease;
      will-change: opacity, transform;
    }

    .hero-title-text[aria-hidden="true"] {
      position: absolute;
      inset: 0 auto auto 0;
      width: 100%;
      opacity: 0;
      transform: translateY(18px);
      pointer-events: none;
    }

    .hero-title-text:not([aria-hidden="true"]) {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-title-ar {
      font-family: 'Inter', 'Tahoma', 'Arial', sans-serif;
      letter-spacing: 0;
      text-align: center;
      transform: translateX(-8%) translateY(0);
    }

    .hero-title-ar[aria-hidden="true"] {
      transform: translateX(-8%) translateY(18px);
    }

    h1.hero-title em {
      color: var(--lime);
      font-style: normal;
    }

    .hero-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
      margin-bottom: 2.5rem;
      max-width: 480px;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .btn-primary {
      background: var(--lime);
      color: var(--navy);
      padding: 14px 28px;
      border-radius: 50px;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary:hover {
      background: var(--lime-dark);
      transform: translateY(-2px);
    }

    .btn-outline {
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 50px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      background: transparent;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      transition: all 0.2s;
    }

    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, 0.07);
    }

    /* HERO SLIDESHOW */
    .hero-slideshow {
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      width: 52%;
      flex-shrink: 0;
      aspect-ratio: 3 / 2.2;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(170, 221, 0, 0.15);
      z-index: 1;
    }

    .hero-slideshow::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      border: 1.5px solid rgba(170, 221, 0, 0.25);
      z-index: 3;
      pointer-events: none;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1.1s ease-in-out;
      z-index: 1;
    }

    .hero-slide.active {
      opacity: 1;
      z-index: 2;
    }

    /* Progress dots */
    .slide-dots {
      position: absolute;
      bottom: 14px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 7px;
      z-index: 4;
    }

    .slide-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      transition: all 0.35s ease;
      cursor: pointer;
    }

    .slide-dot.active {
      background: var(--lime);
      width: 22px;
      border-radius: 4px;
    }

    /* Gradient overlay at bottom of slideshow */
    .slide-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60%;
      background: linear-gradient(to top, rgba(27, 42, 74, 0.55) 0%, transparent 100%);
      z-index: 3;
      pointer-events: none;
    }

    /* Caption badge on slide */
    .slide-caption {
      position: absolute;
      bottom: 40px;
      left: 16px;
      right: 16px;
      z-index: 4;
      background: rgba(27, 42, 74, 0.75);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(170, 221, 0, 0.2);
      border-radius: 10px;
      padding: 8px 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
    }

    .slide-caption.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .slide-caption i {
      color: var(--lime);
      font-size: 15px;
      flex-shrink: 0;
    }

    .slide-caption span {
      color: rgba(255, 255, 255, 0.9);
      font-size: 12px;
      font-weight: 500;
    }

    /* Decorative floating pill above slideshow */
    .slide-pill {
      position: absolute;
      top: -14px;
      right: 20px;
      background: var(--lime);
      color: var(--navy);
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 20px;
      z-index: 5;
      box-shadow: 0 4px 14px rgba(170, 221, 0, 0.4);
    }

    /* OLD hero-visual kept hidden for backward compat */
    .hero-visual {
      display: none;
    }

    /* SECTIONS */
    section {
      padding: 100px 5%;
    }

    .section-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--lime-dark);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-size: clamp(32px, 3.8vw, 44px);
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 1rem;
    }

    .section-sub {
      font-size: 16px;
      color: var(--gray);
      line-height: 1.7;
      max-width: 560px;
    }

    /* ABOUT */
    #about {
      background: var(--off);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      margin-top: 4rem;
    }

    .about-text p {
      font-size: 16px;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 1.2rem;
    }

    .about-pull {
      border-left: 4px solid var(--lime);
      padding-left: 1.2rem;
      margin-bottom: 1.5rem;
      font-family: 'Inter', sans-serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--navy);
      font-style: italic;
    }

    .mv-block {
      margin-bottom: 1.5rem;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .mv-icon {
      width: 40px;
      height: 40px;
      background: var(--lime);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .mv-icon i {
      font-size: 20px;
      color: var(--navy);
    }

    .mv-label {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 4px;
    }

    .mv-text {
      font-size: 15px;
      color: var(--navy);
      font-style: italic;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }

    .stat-card {
      background: var(--white);
      border-radius: 14px;
      padding: 1.5rem;
      border-top: 3px solid var(--lime);
      text-align: center;
    }

    .stat-num {
      font-family: 'Inter', sans-serif;
      font-size: 36px;
      font-weight: 800;
      color: var(--navy);
    }

    .stat-label {
      font-size: 13px;
      color: var(--gray);
      margin-top: 4px;
    }

    /* SERVICES */
    #services {
      background: var(--white);
    }

    .services-picker {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1px;
      margin-top: 4rem;
      background: var(--light-gray);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(27, 42, 74, 0.06);
    }

    .svc-picker-item {
      background: var(--white);
      padding: 1.5rem 0.75rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.25s ease;
      border: none;
      outline: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .svc-picker-item:hover {
      background: rgba(170, 221, 0, 0.08);
    }

    .svc-picker-item.active {
      background: var(--navy);
      color: var(--white);
    }

    .svc-picker-item .picker-icon {
      width: 44px;
      height: 44px;
      background: var(--off);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
    }

    .svc-picker-item.active .picker-icon {
      background: rgba(170, 221, 0, 0.2);
    }

    .svc-picker-item .picker-icon i {
      font-size: 18px;
      color: var(--navy);
      transition: color 0.25s ease;
    }

    .svc-picker-item.active .picker-icon i {
      color: var(--lime);
    }

    .svc-picker-item .picker-label {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--navy);
      line-height: 1.3;
      transition: color 0.25s ease;
    }

    .svc-picker-item.active .picker-label {
      color: var(--white);
    }

    .service-detail-wrap {
      margin-top: 3rem;
      min-height: 400px;
    }

    .service-detail {
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      animation: fadeInDetail 0.5s ease;
    }

    .service-detail.active {
      display: grid;
    }

    @keyframes fadeInDetail {
      from {
        opacity: 0;
        transform: translateY(12px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .service-detail-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(170, 221, 0, 0.12);
      border: 1.5px solid rgba(170, 221, 0, 0.4);
      color: var(--navy);
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 50px;
      margin-bottom: 1.25rem;
    }

    .service-detail-badge i {
      color: var(--lime-dark);
      font-size: 16px;
    }

    .service-detail-content h3 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(28px, 3.2vw, 36px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }

    .service-detail-content p {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.85;
      margin-bottom: 1rem;
    }

    .service-detail-content p strong {
      color: var(--navy);
    }

    .service-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 1.6rem;
      background: var(--lime);
      border-radius: 18px;
      padding: 1rem 1.15rem;
      box-shadow: 0 18px 45px rgba(170, 221, 0, 0.22);
    }

    .service-actions-text {
      flex: 1 1 auto;
      color: var(--navy);
      font-size: 16px;
      font-weight: 800;
      line-height: 1.25;
    }

    .service-action-buttons {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex: 0 0 auto;
    }

    .service-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      text-decoration: none;
      border: 0;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .service-action i {
      font-size: 18px;
    }

    .service-action-whatsapp {
      background: #25D366;
      color: #fff;
      box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
    }

    .service-action-call {
      background: var(--navy);
      color: #fff;
      box-shadow: 0 12px 28px rgba(27, 42, 74, 0.18);
    }

    .service-action:hover {
      transform: translateY(-2px);
    }

    .service-detail-img {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(27, 42, 74, 0.15);
      position: relative;
      background: var(--white);
      height: 430px;
    }

    .service-detail-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      background: var(--white);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .service-detail-img img.svc-img-loaded {
      opacity: 1;
    }

    /* Skeleton shimmer while image loads */
    .service-detail-img::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(90deg, #e8eae4 25%, #f0f1ec 50%, #e8eae4 75%);
      background-size: 200% 100%;
      animation: svc-shimmer 1.5s ease-in-out infinite;
      border-radius: 20px;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .service-detail-img.svc-img-ready::after {
      opacity: 0;
      pointer-events: none;
    }

    @keyframes svc-shimmer {
      0% {
        background-position: 200% 0;
      }

      100% {
        background-position: -200% 0;
      }
    }

    .service-detail-img::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      border: 1.5px solid rgba(170, 221, 0, 0.25);
      z-index: 2;
      pointer-events: none;
    }

    @media (max-width: 900px) {
      .services-picker {
        grid-template-columns: repeat(3, 1fr);
      }

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

      .service-detail-img img {
        height: 100%;
      }

      .service-detail-img {
        height: 340px;
      }
    }

    @media (max-width: 600px) {
      .services-picker {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-radius: 14px;
        margin-top: 2.5rem;
      }

      .svc-picker-item {
        min-width: 0;
        min-height: 94px;
        padding: 0.75rem 0.25rem;
        gap: 6px;
      }

      .svc-picker-item .picker-icon {
        width: 32px;
        height: 32px;
        border-radius: 9px;
      }

      .svc-picker-item .picker-icon i {
        font-size: 16px;
      }

      .svc-picker-item .picker-label {
        max-width: 100%;
        font-size: 8.5px;
        line-height: 1.18;
        letter-spacing: 0.15px;
        overflow-wrap: anywhere;
      }

      .service-detail-wrap {
        margin-top: 2rem;
      }

      .service-detail-img img {
        height: 100%;
        border-radius: 14px;
      }

      .service-detail-img {
        height: 280px;
      }
    }

    /* WHY US */
    #why {
      background: var(--navy);
    }

    #why .section-title {
      color: var(--white);
    }

    #why .section-sub {
      color: rgba(255, 255, 255, 0.6);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }

    .why-card {
      border-top: 2px solid rgba(170, 221, 0, 0.3);
      padding-top: 1.5rem;
    }

    .why-card i {
      font-size: 32px;
      color: var(--lime);
      margin-bottom: 1rem;
      display: block;
    }

    .why-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.75rem;
    }

    .why-card p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.7;
    }

    /* INDUSTRIES */
    #industries {
      background: var(--off);
    }

    .tabs {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-top: 3rem;
      margin-bottom: 2rem;
    }

    .tab-btn {
      padding: 10px 20px;
      border-radius: 50px;
      border: 1.5px solid var(--light-gray);
      background: var(--white);
      color: var(--gray);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }

    .tab-btn.active {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    .tab-content h3 {
      font-size: 26px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 1rem;
    }

    .tab-content p {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.8;
    }

    .equip-list {
      margin-top: 0;
      padding-top: 4px;
    }

    .equip-list h4 {
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--lime-dark);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .equip-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid var(--light-gray);
      font-size: 14px;
      color: var(--navy);
    }

    .equip-item i {
      color: var(--lime-dark);
      font-size: 16px;
    }

    /* SPARE PARTS */
    #parts {
      background: var(--white);
    }

    .parts-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      margin-top: 4rem;
    }

    .parts-text p {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 1.2rem;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin: 2rem 0;
    }

    .chip {
      background: rgba(170, 221, 0, 0.15);
      color: var(--navy);
      border: 1px solid rgba(170, 221, 0, 0.4);
      padding: 6px 14px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 500;
    }

    .parts-callout {
      background: var(--lime);
      border-radius: 14px;
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .parts-callout p {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: var(--navy);
    }

    .parts-request-callout {
      padding-block: 1.25rem;
    }

    .parts-request-callout p {
      font-size: 16px;
      margin: 0;
    }

    .parts-callout a {
      background: var(--navy);
      color: var(--white);
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
    }

    .callout-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.6rem;
      flex: 0 0 auto;
      flex-wrap: wrap;
    }

    .parts-callout a.callout-icon {
      width: 42px;
      height: 42px;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 18px;
      flex: 0 0 42px;
    }

    .parts-callout a.callout-icon-instagram {
      background: var(--white);
      color: var(--navy);
    }

    .parts-callout a.callout-icon:hover,
    .parts-callout a.callout-main:hover {
      transform: translateY(-2px);
    }

    .logistics-steps {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .step {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
    }

    .step-num {
      width: 44px;
      height: 44px;
      background: var(--navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      color: var(--lime);
      font-size: 16px;
    }

    .step-info h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .step-info p {
      font-size: 14px;
      color: var(--gray);
    }

    /* MAINTENANCE EQUIPMENT */
    #maintenance {
      background: var(--off);
    }

    .maintenance-text {
      margin-top: 2rem;
      max-width: 820px;
    }

    .maintenance-text p {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 1.2rem;
    }

    .maintenance-heading {
      margin: 0.4rem 0 0;
      color: var(--navy);
      font-size: 18px;
      font-weight: 700;
      line-height: 1.35;
    }

    .maintenance-equipment-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 0.9rem;
      margin: 2rem 0 0;
      padding: 0;
      list-style: none;
    }

    .maintenance-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      background: rgba(170, 221, 0, 0.12);
      color: var(--navy);
      border: 1px solid rgba(170, 221, 0, 0.5);
      border-radius: 50px;
      padding: 9px 18px;
      font-size: 15px;
      font-weight: 500;
      line-height: 1.25;
      text-align: center;
      white-space: nowrap;
    }

    .maintenance-cta {
      margin-top: 2.2rem;
    }

    /* CONTACT */
    #contact {
      background: var(--off);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      margin-top: 4rem;
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--light-gray);
      border-radius: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: var(--navy);
      background: var(--white);
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--lime-dark);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .btn-submit {
      width: 100%;
      background: var(--lime);
      color: var(--navy);
      border: none;
      padding: 15px;
      border-radius: 50px;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.2s;
      margin-top: 0.5rem;
    }

    .btn-submit:hover {
      background: var(--lime-dark);
    }

    .success-msg {
      display: none;
      background: rgba(170, 221, 0, 0.15);
      border: 1px solid var(--lime-dark);
      color: var(--navy);
      padding: 1rem;
      border-radius: 10px;
      margin-top: 1rem;
      font-size: 14px;
      text-align: center;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .info-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .info-icon {
      width: 44px;
      height: 44px;
      background: var(--navy);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .info-icon i {
      color: var(--lime);
      font-size: 20px;
    }

    .info-label {
      font-size: 12px;
      color: var(--gray);
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .info-val {
      font-size: 15px;
      color: var(--navy);
      font-weight: 500;
    }

    .info-val a {
      color: inherit;
      text-decoration: none;
    }

    .info-val a:hover {
      color: var(--lime-dark);
    }

    .cr-badge {
      margin-top: 2rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1.5px solid var(--light-gray);
      padding: 10px 16px;
      border-radius: 10px;
      font-size: 13px;
      color: var(--gray);
    }

    .info-stack,
    .footer-contact-list {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .info-stack a,
    .footer-contact-list a {
      line-height: 1.45;
      word-break: break-word;
    }

    .footer-contact-list a {
      margin-bottom: 0.2rem;
    }

    /* FOOTER */
    footer {
      background: var(--navy);
      padding: 40px 5% 20px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 14px;
      line-height: 1.7;
      margin-top: 1rem;
      max-width: 240px;
    }

    .footer-logo-text {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 20px;
      color: var(--white);
      margin-left: 8px;
    }

    .social-links {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .social-links a {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--lime);
      font-size: 18px;
      transition: background 0.2s;
      text-decoration: none;
    }

    .social-links a:hover {
      background: rgba(170, 221, 0, 0.2);
    }

    .footer-col h4 {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 1.2rem;
    }

    .footer-col a {
      display: block;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 14px;
      margin-bottom: 0.6rem;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--lime);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1.5rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.35);
      font-size: 13px;
    }

    /* SKELETON LOADING */
    @keyframes skeletonShimmer {
      0% {
        background-position: -400px 0;
      }

      100% {
        background-position: 400px 0;
      }
    }

    @keyframes skeletonFadeOut {
      from {
        opacity: 1;
      }

      to {
        opacity: 0;
        visibility: hidden;
      }
    }

    .skeleton-wrapper {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--navy);
      display: flex;
      flex-direction: column;
      transition: opacity 0.4s ease;
    }

    .skeleton-wrapper.fade-out {
      animation: skeletonFadeOut 0.5s ease forwards;
    }

    .skel-bar {
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.04) 100%);
      background-size: 800px 100%;
      animation: skeletonShimmer 1.5s infinite linear;
      border-radius: 8px;
    }

    .skel-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 5%;
      width: 100%;
    }

    .skel-nav-links {
      display: flex;
      gap: 1.5rem;
    }

    .skel-hero-area {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 80px 5% 60px;
      max-width: 640px;
    }

    @media (max-width: 900px) {
      .skel-nav-links {
        display: none;
      }
    }

    /* SCROLL REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

    @media (max-width: 900px) {

      .about-grid,
      .parts-grid,
      .maintenance-grid,
      .contact-grid,
      .tab-content.active {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .logo-img {
        height: 46px;
      }

      nav.scrolled .logo-img {
        height: 44px;
      }

      /* Hero stacks vertically on tablet/mobile */
      #hero {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 90px 5% 50px;
        gap: 1.75rem;
      }

      .hero-content {
        max-width: 100%;
      }

      .hero-slideshow {
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 14px;
        margin: 0;
        flex-shrink: 0;
      }

      .hero-slideshow::before {
        border-radius: 14px;
      }

      .slide-pill {
        font-size: 10px;
        padding: 4px 10px;
      }

      section {
        padding: 70px 5%;
      }
    }

    @media (max-width: 600px) {
      #hero {
        padding: 80px 4% 44px;
        gap: 1.5rem;
      }

      .hero-slideshow {
        width: 100%;
        aspect-ratio: 4 / 3;
        border-radius: 12px;
        margin: 0;
      }

      .hero-slideshow::before {
        border-radius: 12px;
      }

      .hero-sub {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 1.75rem;
      }

      .hero-btns {
        gap: 0.75rem;
        margin-bottom: 0;
      }

      .btn-primary,
      .btn-outline {
        padding: 12px 20px;
        font-size: 14px;
      }

      .slide-caption {
        bottom: 32px;
        left: 12px;
        right: 12px;
        padding: 6px 12px;
      }

      .slide-caption span {
        font-size: 11px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }

      .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .footer-brand p {
        max-width: 100%;
      }

      .social-links {
        justify-content: center;
      }

      .footer-col {
        text-align: center;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
      }

      footer {
        padding: 40px 5% 24px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
      }

      .stat-card {
        min-height: 112px;
        padding: 1rem 0.45rem;
        border-radius: 12px;
      }

      .stat-num {
        font-size: 30px;
        line-height: 1.05;
      }

      .stat-label {
        font-size: 11px;
        line-height: 1.25;
      }

      section {
        padding: 50px 5%;
      }

      .tabs {
        justify-content: center;
      }

      .service-actions {
        gap: 0.8rem;
        margin-top: 1.25rem;
        padding: 0.9rem;
        border-radius: 14px;
      }

      .service-actions-text {
        font-size: 14px;
      }

      .service-action-buttons {
        display: flex;
        gap: 0.5rem;
      }

      .service-action {
        width: 42px;
        height: 42px;
      }

      .service-action i {
        font-size: 20px;
      }

      .maintenance-equipment-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 1.4rem;
      }

      .maintenance-chip {
        width: 100%;
        min-height: 50px;
        padding: 7px 5px;
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
        word-break: normal;
        overflow-wrap: anywhere;
      }

      .parts-callout {
        flex-direction: column;
        text-align: center;
      }

      .parts-callout a {
        width: 100%;
        text-align: center;
      }

      .callout-actions {
        width: 100%;
        justify-content: center;
      }

      .parts-callout a.callout-main {
        flex: 1 1 160px;
        width: auto;
      }

      .parts-callout a.callout-icon {
        width: 42px;
        flex: 0 0 42px;
      }

      .logo-img {
        height: 44px;
      }

      nav.scrolled .logo-img {
        height: 42px;
      }

      .footer-logo-img {
        height: 54px;
      }
    }

    @media (max-width: 400px) {

      .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
      }

      .stat-card {
        min-height: 104px;
        padding: 0.85rem 0.35rem;
      }

      .stat-num {
        font-size: 26px;
      }

      .stat-label {
        font-size: 10px;
      }


      .services-picker {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1px;
      }

      .svc-picker-item {
        min-height: 86px;
        padding: 0.65rem 0.18rem;
        gap: 5px;
      }

      .svc-picker-item .picker-icon {
        width: 28px;
        height: 28px;
      }

      .svc-picker-item .picker-icon i {
        font-size: 14px;
      }

      .svc-picker-item .picker-label {
        font-size: 7.6px;
        line-height: 1.15;
        letter-spacing: 0;
      }

      #hero {
        padding: 74px 4% 40px;
        gap: 1.25rem;
      }

      h1.hero-title {
        font-size: 34px;
      }

      .hero-slideshow {
        aspect-ratio: 4 / 3;
        border-radius: 10px;
      }

      .hero-slideshow::before {
        border-radius: 10px;
      }

      section {
        padding: 40px 4%;
      }

      footer {
        padding: 30px 4% 20px;
      }

      .logo-img {
        height: 42px;
      }

      nav.scrolled .logo-img {
        height: 40px;
      }

      .footer-logo-img {
        height: 48px;
      }
    }

    /* FLOATING ACTION BUTTONS */
    .fab-stack {
      position: fixed;
      bottom: 28px;
      right: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 990;
    }

    .fab-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      border: 0;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      position: relative;
    }

    .fab-btn:hover {
      transform: translateY(-4px) scale(1.08);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    }

    .fab-btn i {
      font-size: 18px;
      line-height: 1;
    }

    .fab-whatsapp {
      background: #25D366;
      color: #fff;
    }

    .fab-mail {
      background: var(--lime);
      color: var(--navy);
    }

    /* Tooltip labels */
    .fab-btn::before {
      content: attr(data-tip);
      position: absolute;
      right: calc(100% + 12px);
      top: 50%;
      transform: translateY(-50%);
      background: var(--navy);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      white-space: nowrap;
      padding: 5px 10px;
      border-radius: 6px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
    }

    .fab-btn::after {
      content: '';
      position: absolute;
      right: calc(100% + 6px);
      top: 50%;
      transform: translateY(-50%);
      border: 5px solid transparent;
      border-left-color: var(--navy);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
    }

    .fab-btn:hover::before,
    .fab-btn:hover::after {
      opacity: 1;
    }

    /* Pulse ring on WhatsApp */
    .fab-whatsapp::after {
      display: none;
    }

    .fab-pulse {
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 2px solid #25D366;
      animation: fabPulse 2s ease-out infinite;
      pointer-events: none;
    }

    @keyframes fabPulse {
      0% {
        transform: scale(1);
        opacity: 0.6;
      }

      70% {
        transform: scale(1.4);
        opacity: 0;
      }

      100% {
        transform: scale(1.4);
        opacity: 0;
      }
    }

    @media (max-width: 600px) {
      .fab-stack {
        bottom: 20px;
        right: 16px;
        gap: 10px;
      }

      .fab-btn {
        width: 46px;
        height: 46px;
      }

      .fab-btn i {
        font-size: 20px;
      }

      /* hide tooltip on mobile - not enough space */
      .fab-btn::before,
      .fab-btn::after {
        display: none;
      }
    }

    @media (max-width: 400px) {

      .fab-stack {
        bottom: 16px;
        right: 12px;
      }

      .fab-btn {
        width: 42px;
        height: 42px;
      }
    }

    /* ===== BRAND LOGO TICKER ===== */
    .brand-ticker-wrap {
      background: #fff;
      padding: 0 0 14px;
      overflow: hidden;
      border-top: 3px solid var(--lime);
      border-bottom: 1px solid var(--light-gray);
    }

    .brand-ticker-label {
      text-align: center;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gray);
      padding: 18px 0 10px;
    }

    .brand-ticker-inner {
      position: relative;
      overflow: hidden;
      padding: 14px 0 18px;
    }

    .brand-track {
      display: inline-flex;
      align-items: center;
      gap: 0;
      white-space: nowrap;
      animation: brandScroll 45s linear infinite;
      will-change: transform;
    }

    .brand-ticker-inner:hover .brand-track {
      animation-play-state: paused;
    }

    @keyframes brandScroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .brand-logo-item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 40px;
      opacity: 1;
      transition: transform 0.3s ease, filter 0.3s ease;
      flex-shrink: 0;
    }

    .brand-logo-item:hover {
      transform: scale(1.08);
      filter: brightness(1.05);
    }

    .brand-logo-item img {
      height: 50px;
      width: auto;
      max-width: 190px;
      object-fit: contain;
      display: block;
    }

    .brand-divider {
      width: 1px;
      height: 28px;
      background: var(--light-gray);
      flex-shrink: 0;
    }

    /* Disclaimer line */
    .brand-disclaimer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 10.5px;
      color: var(--gray);
      font-style: italic;
      padding: 6px 5% 2px;
      letter-spacing: 0.2px;
      line-height: 1.5;
      text-align: center;
      opacity: 0.7;
    }

    .brand-disclaimer i {
      font-size: 12px;
      color: var(--lime-dark);
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .brand-logo-item {
        padding: 0 24px;
      }

      .brand-logo-item img {
        height: 42px;
      }
    }

    @media (max-width: 480px) {
      .brand-logo-item {
        padding: 0 18px;
      }

      .brand-logo-item img {
        height: 36px;
      }

      .brand-track {
        animation-duration: 32s;
      }
    }

    /* ===== END BRAND LOGO TICKER ===== */