 /* =============================================
       ROOT VARIABLES & RESET 
    ============================================= */
    :root {
      --bg: #0A0A0A;
      --bg-card: #141414;
      --bg-section: #0F0F0F;
      --bg-grey: #121212;
      --navy: #1A1A1A;
      --yellow: #E63946;
      --yellow-glow: rgba(230, 57, 70, 0.15);
      --yellow-dark: #C1121F;
      --blue-accent: #E63946;
      --text: #FFFFFF;
      --text-muted: #B0B0B0;
      --border: rgba(255, 255, 255, 0.12);
      --radius: 12px;
      --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

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

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
    }

    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* =============================================
       SCROLLBAR
    ============================================= */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 4px; }

    /* =============================================
       UTILITY
    ============================================= */
    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
    .section-pad { padding: 100px 0; }
    .section-pad-sm { padding: 70px 0; }

    .badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--yellow-glow);
      border: 1px solid var(--border);
      color: #000; /* Force black text */
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
    }

    .badge-dark {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.15);
      color: #ffffff !important;
    }
    .badge-dark i {
      color: var(--yellow);
    }

    .badge-blue {
      background: var(--yellow); /* Solid color or brighter for contrast */
      color: #000;
      border-color: var(--yellow);
    }

    .badge-red {
      background: rgba(220, 53, 69, 0.1);
      color: #DC3545;
      border-color: rgba(220, 53, 69, 0.2);
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      line-height: 1;
      letter-spacing: 0.02em;
      color: var(--text);
    }

    .section-title span { color: var(--yellow); }

    .section-sub {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 560px;
      margin-top: 14px;
      line-height: 1.7;
    }

    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 30px;
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      border: 2px solid transparent;
      transition: var(--transition);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--yellow);
      border: 1px solid var(--yellow);
      color: #000;
    }
    .btn-primary:hover {
      background: var(--yellow-dark);
      border-color: var(--yellow-dark);
      color: #FFFFFF;
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(10,88,202,0.25);
    }

    .btn-gallery:hover {
      background: #000000 !important;
      border-color: #000000 !important;
      color: #ffffff !important;
      box-shadow: 0 8px 30px rgba(0,0,0,0.4) !important;
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--border);
      color: var(--text);
    }
    .btn-outline:hover {
      border-color: var(--yellow);
      color: var(--yellow);
      transform: translateY(-2px);
    }

     /* Better hero CTA buttons */
    .hero-btn {
      min-width: 210px;
      justify-content: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .btn-outline-white {
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: #FFFFFF;
    }
    .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--yellow);
      color: var(--yellow);
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    }
    @media (max-width: 600px) {
      .hero-btn {
        width: 100%;
        min-width: unset;
      }
    }

    /* WhatsApp CTA button — green brand style */
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      font-size: 0.85rem;
      background: #25D366 !important;
      border-color: #25D366 !important;
      color: #fff !important;
    }
    .btn-whatsapp i {
      font-size: 1.05rem;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }
    .btn-whatsapp:hover {
      background: #1ebe5d !important;
      border-color: #1ebe5d !important;
      color: #fff !important;
      transform: translateY(-2px);
    }

    /* Global icon alignment for buttons */
    .btn i {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }
    .form-submit i {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    /* Reveal animations */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    /* =============================================
       FLOATING CTAs
    ============================================= */
    .fab-group {
      position: fixed;
      bottom: 50px; right: 24px;
      display: flex; flex-direction: column; gap: 20px;
      z-index: 9999;
    }

    .fab-group .fab {
      width: 56px; height: 56px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
      transition: var(--transition);
      border: none;
      position: relative;
    }
    .fab-group .fab i {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      position: relative;
      z-index: 2;
    }
    .fab-group .fab:hover { transform: scale(1.12); }

    .fab-group .fab-wa { background: #25D366; color: #fff; }
    .fab-group .fab-call { background: var(--yellow); color: #000; }

    /* WhatsApp pulse ring */
    .fab-group .fab-wa::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 56px; height: 56px;
      border-radius: 50%;
      background: rgba(37, 211, 102, 0.25);
      animation: pulse-ring 1.8s ease-out infinite;
      z-index: 1;
    }
    @keyframes pulse-ring {
      0% { transform: scale(1); opacity: 1; }
      100% { transform: scale(1.8); opacity: 0; }
    }

    /* Mobile adjustments for FABs */
    @media (max-width: 600px) {
      .fab-group {
        bottom: 40px;
        right: 16px;
        bottom: calc(40px + env(safe-area-inset-bottom, 0px));
        gap: 15px;
      }
      .fab-group .fab {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
      }
      .fab-group .fab-wa::after {
        width: 50px;
        height: 50px;
      }
    }

    /* =============================================
       NAVBAR
    ============================================= */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 18px 0;
      transition: all 0.4s ease;
      background: #000000;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    #navbar.scrolled {
      background: rgba(10, 10, 10, 0.98);
      backdrop-filter: blur(16px);
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 30px rgba(0,0,0,0.05);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .nav-logo {
      display: flex; align-items: center; gap: 12px;
    }
    .logo-img {
      height: 65px;
      width: auto;
      object-fit: contain;
      filter: brightness(1.1);
      transition: var(--transition);
    }
    #navbar.scrolled .logo-img {
      height: 50px;
    }
    @media (max-width: 768px) {
      .logo-img {
        height: 50px;
      }
      #navbar.scrolled .logo-img {
        height: 40px;
      }
    }
    .footer-logo-img {
      height: 52px;
    }
    .logo-icon {
      width: 40px; height: 40px;
      background: var(--yellow);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: #fff; font-weight: 900;
    }
    .logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      line-height: 1;
    }
    .logo-text span { color: var(--yellow); }
    .logo-sub {
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      color: var(--text-muted);
      text-transform: uppercase;
      display: block;
    }

    .nav-links {
      display: flex; align-items: center; gap: 32px;
    }
    .nav-links a {
      font-size: 0.88rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.04em;
      transition: color 0.25s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -3px; left: 0;
      width: 0; height: 2px;
      background: var(--yellow);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--yellow); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      display: flex; align-items: center; gap: 12px;
    }
    .nav-phone {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.9rem; font-weight: 700;
      color: var(--yellow);
    }

    .hamburger {
      display: none;
      flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 4px;
    }
    .hamburger span {
      display: block; width: 26px; height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: var(--transition);
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--bg);
      z-index: 999;
      padding: 100px 32px 32px;
      flex-direction: column;
      gap: 24px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem;
      letter-spacing: 0.06em;
      color: var(--text);
      border-bottom: 1px solid var(--border);
      padding-bottom: 16px;
      transition: color 0.25s;
    }
    .mobile-menu a:hover { color: var(--yellow); }

    /* =============================================
       HERO
    ============================================= */
    #hero {
      min-height: 100vh;
      position: relative;
      display: flex; align-items: center;
      overflow: hidden;
    }

    .hero-slides {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 0;
      transform: scale(1.05); /* initial scale for zoom-out effect */
    }
    .hero-slide.active {
      opacity: 1;
      z-index: 1;
      transform: scale(1); /* smooth zoom-out effect when active */
      transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease-out;
    }

    @media (max-width: 768px) {
      .hero-slide {
        background-position: center; /* keep it centered On mobile */
      }
    }

    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 45%,
        rgba(0, 0, 0, 0.1) 100%
      );
      z-index: 2;
    }

    /* Lightning bolt decorative lines */
    .hero-lines {
      position: absolute; inset: 0; pointer-events: none;
      overflow: hidden;
    }
    .hero-lines::before, .hero-lines::after {
      content: '';
      position: absolute;
      background: linear-gradient(180deg, transparent, var(--yellow), transparent);
      opacity: 0.06;
    }
    .hero-lines::before { width: 1px; height: 100%; left: 35%; top: 0; }
    .hero-lines::after { width: 1px; height: 100%; left: 65%; top: 0; }

    /* Electric spark animation */
    .spark {
      position: absolute;
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--yellow);
      pointer-events: none;
    }

    .hero-content {
      position: relative; z-index: 2;
      padding-top: 140px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
    }

    .hero-badge {
      animation: fadeDown 0.8s ease 0.2s both;
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.2rem, 8vw, 6.5rem);
      line-height: 0.95;
      letter-spacing: 0.02em;
      margin: 22px 0 28px;
      animation: fadeDown 0.8s ease 0.4s both;
      text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }
    .hero-title span { color: var(--yellow); }

    .hero-desc {
      font-size: 1.1rem;
      color: var(--text-muted);
      line-height: 1.75;
      animation: fadeDown 0.8s ease 0.55s both;
      text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .hero-actions {
      display: flex; flex-wrap: wrap; gap: 16px;
      margin-top: 36px;
      animation: fadeDown 0.8s ease 0.7s both;
      align-items: center;
    }

    .hero-micro-trust {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
      margin-top: 20px;
      font-weight: 500;
      animation: fadeDown 0.8s ease 0.75s both;
    }
    .hero-micro-trust i {
      color: var(--yellow);
      margin-right: 4px;
    }
    .hero-micro-trust .trust-sep {
      display: inline-block;
      margin: 0 10px;
      color: rgba(255,255,255,0.3);
    }

    .hero-trust {
      display: flex; align-items: center; gap: 36px;
      margin-top: 52px;
      padding-top: 32px;
      margin-bottom: 60px;
      border-top: 1px solid var(--border);
      animation: fadeDown 0.8s ease 0.85s both;
      flex-wrap: wrap;
    }
    .hero-trust-item {
      display: flex; align-items: center; gap: 12px;
    }
    .hero-trust-icon {
      width: 38px; height: 38px;
      background: var(--yellow-glow);
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--yellow);
      font-size: 0.85rem;
      flex-shrink: 0;
    }
    .hero-trust-icon i {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-trust-label { font-size: 0.82rem; color: var(--text-muted); line-height: 1.3; }
    .hero-trust-label strong { display: block; color: var(--text); font-size: 0.9rem; }

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

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 36px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      opacity: 0.4;
      animation: bounce 2s ease-in-out infinite;
    }
    .scroll-hint span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    @media (max-width: 768px) {
      .hero-content {
        padding-top: 180px;
        align-items: center;
        text-align: center;
      }
      .hero-title {
        font-size: 3rem;
        margin-bottom: 20px;
      }
      .hero-desc {
        font-size: 1rem;
        max-width: 100%;
      }
      .hero-actions {
        flex-direction: column;
        width: 100%;
      }
      .hero-btn {
        width: 100%;
      }
      .hero-trust {
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
      }
    }

    /* =============================================
       TICKER BAR
    ============================================= */
    .ticker-bar {
      background: var(--yellow);
      padding: 12px 0;
      overflow: hidden;
    }
    .ticker-track {
      display: flex;
      animation: ticker 30s linear infinite;
      white-space: nowrap;
      gap: 0;
    }
    .ticker-item {
      display: flex; align-items: center; gap: 10px;
      padding: 0 40px;
      font-size: 0.82rem;
      font-weight: 700;
      color: #000;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .ticker-item i { font-size: 0.7rem; opacity: 0.6; }
    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* =============================================
       PROBLEM / AGITATE
    ============================================= */
    #problem {
      background: var(--bg-section);
      position: relative;
      overflow: hidden;
    }
    #problem::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(245,194,0,0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .problem-image {
      position: relative;
    }
    .problem-image img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      border-radius: 16px;
    }
    .problem-image::before {
      content: '';
      position: absolute; inset: -8px;
      border: 2px solid var(--yellow);
      border-radius: 20px;
      opacity: 0.2;
    }
    .problem-image .stat-badge {
      position: absolute;
      bottom: -20px; right: -20px;
      background: var(--yellow);
      color: #000;
      padding: 16px 24px;
      border-radius: 12px;
      text-align: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      line-height: 1;
      box-shadow: 0 8px 32px rgba(245,194,0,0.25);
    }
    .problem-image .stat-badge small { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 600; }

    .problem-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
    .problem-item {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 18px 20px;
      background: var(--bg-card);
      border-radius: var(--radius);
      border-left: 3px solid var(--yellow);
      transition: transform var(--transition);
    }
    .problem-item:hover { transform: translateX(4px); }
    .problem-item i {
      color: var(--yellow);
      font-size: 1rem;
      margin-top: 3px;
      flex-shrink: 0;
      width: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .problem-item p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.6; }
    .problem-item p strong { color: var(--text); }

    /* Agitate callout */
    .agitate-box {
      margin-top: 36px;
      background: linear-gradient(135deg, var(--bg-card), var(--bg-section));
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 32px;
      position: relative;
      overflow: hidden;
    }
    .agitate-box::before {
      content: '⚡';
      position: absolute;
      right: 20px; top: 50%;
      transform: translateY(-50%);
      font-size: 5rem;
      opacity: 0.04;
    }
    .agitate-box h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--yellow);
      margin-bottom: 8px;
    }
    .agitate-box p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; }

    /* =============================================
       STATS
    ============================================= */
    #stats {
      background: #000000;
      padding: 52px 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
    }
    .stat-item {
      display: flex; flex-direction: column; align-items: center;
      text-align: center;
      padding: 20px;
      position: relative;
    }
    .stat-item + .stat-item::before {
      content: '';
      position: absolute; left: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: rgba(255,255,255,0.15);
    }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.6rem;
      color: #ffffff;
      line-height: 1;
    }
    .stat-label {
      font-size: 0.82rem;
      font-weight: 700;
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 4px;
    }
    .stat-stars { color: var(--yellow); font-size: 0.85rem; margin-top: 2px; }

    @media (max-width: 900px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .stat-item:nth-child(n+3)::before {
        display: none;
      }
    }
    @media (max-width: 500px) {
      .stats-grid {
        grid-template-columns: 1fr;
      }
      .stat-item + .stat-item::before {
        display: none;
      }
      .stat-item + .stat-item::after {
        content: '';
        position: absolute; top: 0; left: 20%; right: 20%;
        height: 1px;
        background: rgba(255,255,255,0.15);
      }
    }

    /* =============================================
       SERVICES
    ============================================= */
    #services {
      position: relative;
    }

    .services-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .services-header .section-sub { margin: 14px auto 0; }

    .services-tabs {
      display: flex; justify-content: center; gap: 8px;
      flex-wrap: wrap;
      margin-top: 32px;
    }
    .tab-btn {
      padding: 10px 24px;
      border-radius: 100px;
      border: 1.5px solid var(--border);
      background: transparent;
      color: var(--text-muted);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }
    .tab-btn.active, .tab-btn:hover {
      background: var(--yellow);
      border-color: var(--yellow);
      color: #000;
    }

    .services-layout {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 40px;
      align-items: start;
    }

    .services-image {
      position: sticky;
      top: 100px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .services-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    @media (max-width: 992px) {
      .services-layout { grid-template-columns: 1fr; }
      .services-image { position: static; margin-top: 24px; max-width: 480px; margin-inline: auto; }
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    
    .services-grid > .service-card:last-child:nth-child(odd) {
      grid-column: 1 / -1;
    }

    .service-card {
      background: var(--bg-grey);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px 30px;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
      cursor: default;
      z-index: 1;
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.9));
      transition: background 0.4s;
      z-index: -1;
    }
    .service-card:hover { transform: translateY(-6px); border-color: var(--yellow); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
    .service-card:hover::before { background: linear-gradient(to bottom, rgba(30, 30, 30, 0.8), rgba(25, 25, 25, 0.7)); }

    .service-card-residential {
      background-color: var(--bg-card);
    }
    .service-card-commercial {
      background-color: var(--bg-card);
    }
    .service-card-industrial {
      background-color: var(--bg-card);
    }

    .service-icon-wrap {
      width: 58px; height: 58px;
      background: var(--yellow-glow);
      border: 1px solid var(--border);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      color: var(--yellow);
      margin-bottom: 22px;
      position: relative; z-index: 1;
      transition: background 0.3s;
    }
    .service-card:hover .service-icon-wrap {
      background: var(--yellow);
      color: #000;
      border-color: var(--yellow);
    }

    .service-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      margin-bottom: 12px;
      position: relative; z-index: 1;
    }
    .service-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
      position: relative; z-index: 1;
    }
    .service-list {
      margin-top: 18px;
      display: flex; flex-direction: column; gap: 8px;
      position: relative; z-index: 1;
    }
    .service-list li {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    .service-list li::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--yellow);
      flex-shrink: 0;
    }

    .service-card-featured {
      border-color: var(--yellow) !important;
      position: relative;
    }
    .service-card-featured .featured-label {
      position: absolute;
      top: 20px; right: 20px;
      background: var(--yellow);
      color: #000;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      padding: 4px 10px;
      border-radius: 100px;
      text-transform: uppercase;
    }

    /* =============================================
       AREAS
    ============================================= */
    #areas {
      background: var(--bg-section);
    }
    .areas-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: center;
    }
    .areas-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 32px;
    }
    .area-chip {
      display: flex; align-items: center; gap: 10px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 16px;
      font-size: 0.88rem;
      color: var(--text-muted);
      transition: var(--transition);
    }
    .area-chip:hover { border-color: var(--yellow); color: var(--yellow); }
    .area-chip i { color: var(--yellow); font-size: 0.75rem; }

    .areas-image {
      position: relative;
    }
    .areas-image img {
      width: 100%; height: 440px;
      object-fit: cover;
      border-radius: 16px;
    }
    .areas-image .map-overlay {
      position: absolute;
      bottom: 24px; left: 24px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px 20px;
      display: flex; align-items: center; gap: 12px;
    }
    .map-overlay i { color: var(--yellow); font-size: 1.1rem; }
    .map-overlay strong { display: block; font-size: 0.92rem; }
    .map-overlay span { font-size: 0.78rem; color: var(--text-muted); }

    /* =============================================
       GALLERY
    ============================================= */
    #gallery {
      position: relative;
      overflow: hidden;
    }

    .gallery-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      cursor: pointer;
      min-height: 250px;
    }
    .gallery-item-wide {
      grid-column: span 3;
      height: 480px;
    }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .gallery-item:hover img { transform: scale(1.06); }

    @media (max-width: 992px) {
      .gallery-item-wide { grid-column: span 2; height: 350px; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 580px) {
      .gallery-item-wide { grid-column: span 1; height: 280px; }
      .gallery-grid { grid-template-columns: 1fr; }
    }

    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75) 100%);
      display: flex; align-items: flex-end;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-label {
      font-size: 0.85rem;
      font-weight: 600;
      color: #fff;
      display: flex; align-items: center; gap: 8px;
    }
    .gallery-label i { color: var(--yellow); }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.95);
      z-index: 10000;
      align-items: center; justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      max-width: 90vw; max-height: 90vh;
      border-radius: 8px;
      object-fit: contain;
    }
    .lightbox-close {
      position: absolute; top: 24px; right: 28px;
      color: #fff; font-size: 2rem; cursor: pointer;
      background: none; border: none;
      transition: color 0.2s;
    }
    .lightbox-close:hover { color: var(--yellow); }

    /* =============================================
       TESTIMONIALS
    ============================================= */
    #testimonials {
      background: var(--bg-section);
      overflow: hidden;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 52px;
    }

    .reviews-overall {
      display: flex; align-items: center; justify-content: center; gap: 16px;
      margin-top: 20px;
    }
    .reviews-overall .big-score {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      color: var(--yellow);
      line-height: 1;
    }
    .reviews-overall .stars-col { display: flex; flex-direction: column; gap: 4px; }
    .stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; }
    .reviews-count { font-size: 0.82rem; color: var(--text-muted); }

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

    .review-card {
      background: var(--bg-grey);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 30px;
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform var(--transition), border-color var(--transition);
    }
    .review-card:hover { transform: translateY(-4px); border-color: rgba(245,194,0,0.3); }

    .review-quote {
      font-size: 2.5rem;
      color: var(--yellow);
      opacity: 0.25;
      line-height: 1;
      font-family: Georgia, serif;
    }
    .review-text {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin: 10px 0 22px;
    }
    .review-author {
      display: flex; align-items: center; gap: 14px;
    }
    .review-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--yellow);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.1rem;
      color: #000;
      flex-shrink: 0;
    }
    .review-name { font-weight: 700; font-size: 0.92rem; }
    .review-role { font-size: 0.78rem; color: var(--text-muted); }

    /* =============================================
       ABOUT / WHY US
    ============================================= */
    #why {
      position: relative;
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .why-list {
      display: flex; flex-direction: column; gap: 20px;
      margin-top: 36px;
    }
    .why-item {
      display: flex; gap: 18px;
    }
    .why-num {
      width: 42px; height: 42px;
      border-radius: 10px;
      background: var(--yellow-glow);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.1rem;
      color: var(--yellow);
      flex-shrink: 0;
    }
    .why-text h4 {
      font-weight: 700;
      font-size: 0.97rem;
      margin-bottom: 4px;
    }
    .why-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

    .why-image-col { position: relative; }
    .why-image-col img {
      width: 100%; height: 500px;
      object-fit: cover;
      border-radius: 16px;
    }
    .why-image-col .cert-badge {
      position: absolute;
      top: -20px; left: -20px;
      background: #1A1A1A;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px;
      text-align: center;
      min-width: 120px;
    }
    .cert-badge i { font-size: 1.8rem; color: var(--yellow); }
    .cert-badge p { font-size: 0.72rem; color: #fff; margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

    /* =============================================
       CONTACT
    ============================================= */
    #contact {
      background: var(--bg-section);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 56px;
    }

    .contact-form-wrap {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 44px;
    }

    .contact-form-wrap h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 0.04em;
      margin-bottom: 6px;
    }
    .contact-form-wrap p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 30px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .field {
      display: flex; flex-direction: column; gap: 8px;
      margin-bottom: 16px;
    }
    .field label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
    .field input, .field select, .field textarea {
      background: var(--navy);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.93rem;
      padding: 13px 16px;
      outline: none;
      transition: border-color 0.25s;
      width: 100%;
    }
    .field input::placeholder, .field textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--yellow); }
    .field select option { background: var(--navy); }
    .field textarea { resize: vertical; min-height: 110px; }

    .form-submit { width: 100%; padding: 16px; font-size: 1rem; margin-top: 8px; border-radius: 8px; border: none; cursor: pointer; }

    .form-success {
      display: none;
      text-align: center;
      padding: 30px;
    }
    .form-success i { font-size: 2.5rem; color: var(--yellow); margin-bottom: 12px; }
    .form-success h4 { font-size: 1.1rem; margin-bottom: 8px; }
    .form-success p { font-size: 0.88rem; color: var(--text-muted); }

    .contact-info {
      display: flex; flex-direction: column; gap: 28px;
    }
    .contact-info-header h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 0.04em;
      margin-top: 8px;
    }
    .contact-info-header p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-top: 10px; }

    .contact-detail {
      display: flex; gap: 16px;
      align-items: center;
    }
    .contact-detail-icon {
      width: 46px; height: 46px;
      min-width: 46px;
      background: var(--yellow-glow);
      border: 1px solid var(--border);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--yellow);
      flex-shrink: 0;
      font-size: 1.05rem;
    }
    .contact-detail-icon i {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
    }
    .contact-detail-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .contact-detail-text strong { display: block; font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
    .contact-detail-text a, .contact-detail-text span { font-size: 0.97rem; color: var(--text); font-weight: 600; transition: color 0.2s; }
    .contact-detail-text a:hover { color: var(--yellow); }

    .map-wrapper {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      height: 220px;
    }
    .map-wrapper iframe { width: 100%; height: 100%; border: none; }

    .contact-social {
      display: flex; gap: 12px;
      margin-top: 8px;
    }
    .social-link {
      width: 42px; height: 42px;
      border-radius: 10px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted);
      font-size: 1rem;
      transition: var(--transition);
    }
    .social-link i {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .social-link:hover { transform: translateY(-3px); }
    .social-link.instagram { color: #E1306C; }
    .social-link.facebook { color: var(--blue-accent); }
    .social-link.whatsapp { color: #25D366; }
    .social-link.instagram:hover { border-color: #E1306C; background: rgba(225, 48, 108, 0.1); }
    .social-link.facebook:hover { border-color: var(--blue-accent); background: rgba(10, 88, 202, 0.1); }
    .social-link.whatsapp:hover { border-color: #25D366; background: rgba(37, 211, 102, 0.1); }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 52px 0 28px;
    }

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

    .footer-brand p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 16px 0 22px;
      max-width: 260px;
    }

    .footer-col h4 {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-bottom: 18px;
      font-weight: 700;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 0.88rem;
      color: var(--text-muted);
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 0;
    }
    .footer-col ul li a i {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      text-align: center;
    }
    .footer-col ul li a:hover { color: var(--yellow); }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
    .footer-bottom span { color: var(--yellow); }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item + .stat-item::before { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    @media (max-width: 768px) {
      .section-pad { padding: 70px 0; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }

      .problem-grid, .areas-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .testimonials-track { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item:first-child { grid-column: span 2; }
      .gallery-item:first-child img { min-height: 240px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .form-row { grid-template-columns: 1fr; }
      .areas-list { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .problem-image .stat-badge { bottom: 10px; right: 10px; }
      .why-image-col .cert-badge { top: 10px; left: 10px; }
      .hero-trust { gap: 20px; }
      .contact-form-wrap { padding: 28px 20px; }

      .fab-group {
        bottom: 20px;
        right: 16px;
        gap: 10px;
      }
      .fab-group .fab {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
      }
      .fab-group .fab-wa::after {
        width: 50px;
        height: 50px;
      }

      .logo-img {
        height: 40px;
      }
      .footer-logo-img {
        height: 44px;
      }

      .hero-trust-item {
        flex: 0 0 calc(50% - 10px);
      }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 3rem; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:first-child { grid-column: span 1; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }

      .fab-group {
        bottom: 16px;
        right: 12px;
        gap: 8px;
      }
      .fab-group .fab {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
      }
      .fab-group .fab-wa::after {
        width: 46px;
        height: 46px;
      }

      .logo-img {
        height: 36px;
      }
      .footer-logo-img {
        height: auto;
        max-width: 280px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
      }

      .hero-trust {
        gap: 14px;
      }
      .hero-trust-item {
        flex: 0 0 100%;
      }
    }

/* Responsive extras */
@media (max-width: 768px) {
  .areas-image img { width: 100% !important; height: auto !important; max-width: 100% !important; margin: 0 auto; display: block; }
  .footer-logo-img { max-width: 220px; margin: 0 auto 20px auto; }
  .footer-brand { text-align: center; }
  .contact-social { justify-content: center; }
}

/* =============================================
   DROPDOWN MENUS
============================================= */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  min-width: 240px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 0.88rem;
  color: var(--text) !important;
  font-weight: 500 !important;
  transition: background 0.2s, color 0.2s;
  border: none !important;
}
.dropdown-menu a::after {
  display: none !important;
}
.dropdown-menu a:hover {
  background: var(--yellow-glow);
  color: var(--yellow) !important;
}

/* Mobile Dropdown styles */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mobile-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 2px solid var(--border);
}
.mobile-dropdown.open .mobile-dropdown-menu {
  display: flex;
}
.mobile-dropdown-menu a {
  border: none !important;
  font-size: 1.1rem !important;
  padding-bottom: 12px !important;
  padding-top: 6px !important;
}

/* =============================================
   EXPERTISE SECTION
============================================= */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.accreditations-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.acc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.acc-item:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.15);
}

.acc-item i {
  color: var(--yellow);
  font-size: 1.4rem;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

