    :root {
      --ink: #0d0d0d;
      --paper: #faf8f5;
      --accent: #e63c1e;
      --accent2: #1a56db;
      --gold: #c8922a;
      --mid: #5a5a5a;
      --light: #f0ede8;
      --border: #e2ddd6;
      --white: #ffffff;
      --green-wa: #25D366;
      --blue-call: #1a73e8;
      --radius: 12px;
      --shadow: 0 4px 24px rgba(13,13,13,0.10);
      --shadow-lg: 0 12px 48px rgba(13,13,13,0.16);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

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

    h1, h2, h3, h4, .brand { font-family: 'Syne', sans-serif; }

    /* ===== FLOATING BUTTONS ===== */
    .float-btns {
      position: fixed;
      bottom: 28px;
      right: 22px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      z-index: 9999;
    }

    .float-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 18px rgba(0,0,0,0.22);
      transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s;
      border: none;
      cursor: pointer;
      font-size: 1.4rem;
      color: white;
    }

    .float-btn:hover { transform: scale(1.13); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }
    .float-wa { background: #25D366; }
    .float-call { background: #1a73e8; }

    /* ===== NAVBAR ===== */
    nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      border-bottom: 2px solid var(--border);
      padding: 0 5vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    }

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

    .nav-logo img { height: 50px; width: auto; object-fit: contain; }

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

    .nav-links a {
      text-decoration: none;
      color: var(--ink);
      font-weight: 500;
      font-size: 0.9rem;
      padding: 7px 13px;
      border-radius: 6px;
      transition: background 0.18s, color 0.18s;
    }

    .nav-links a:hover { background: var(--light); color: var(--accent); }

    .nav-cta {
      background: var(--accent) !important;
      color: var(--white) !important;
      font-weight: 700 !important;
      padding: 8px 18px !important;
    }

    .nav-cta:hover { background: #c0321a !important; }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

    /* ===== HERO ===== */
    .hero {
      min-height: 90vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 0;
      padding: 0 5vw;
      background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #16213e 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(230,60,30,0.18) 0%, transparent 60%),
                  radial-gradient(ellipse at 80% 20%, rgba(26,86,219,0.12) 0%, transparent 50%);
      pointer-events: none;
    }

    .hero-pattern {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.03) 39px, rgba(255,255,255,0.03) 40px),
                        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.03) 39px, rgba(255,255,255,0.03) 40px);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 60px 0;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(230,60,30,0.18);
      border: 1px solid rgba(230,60,30,0.4);
      color: #ff7b5e;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 30px;
      margin-bottom: 22px;
      animation: fadeSlideUp 0.6s ease both;
    }

    .hero h1 {
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.12;
      margin-bottom: 18px;
      animation: fadeSlideUp 0.7s ease 0.1s both;
    }

    .hero h1 span.accent-red { color: var(--accent); }
    .hero h1 span.accent-gold { color: var(--gold); }

    .hero-desc {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.72);
      margin-bottom: 32px;
      max-width: 720px;
      animation: fadeSlideUp 0.7s ease 0.2s both;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeSlideUp 0.7s ease 0.3s both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: var(--white);
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 14px 26px;
      border-radius: 8px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
      box-shadow: 0 4px 20px rgba(230,60,30,0.4);
    }

    .btn-primary:hover { background: #c0321a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(230,60,30,0.5); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.08);
      color: var(--white);
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 14px 26px;
      border-radius: 8px;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.2);
      transition: background 0.2s, transform 0.2s;
      backdrop-filter: blur(6px);
    }

    .btn-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 40px;
      animation: fadeSlideUp 0.7s ease 0.4s both;
    }

    .stat-item { text-align: left; }

    .stat-num {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }

    .stat-num span { color: var(--accent); }

    .stat-label {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.55);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 4px;
    }

    /* Hero Visual Side */
    .hero-visual {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 0;
      animation: fadeSlideUp 0.8s ease 0.2s both;
    }

    .hero-cards-stack { position: relative; width: 340px; height: 340px; }

    .hcard {
      position: absolute;
      border-radius: 14px;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .hcard-1 {
      width: 260px; height: 155px; top: 20px; left: 20px;
      background: linear-gradient(135deg, #e63c1e, #c0321a);
      transform: rotate(-4deg); z-index: 3;
      display: flex; align-items: center; justify-content: center;
      color: white; font-family: 'Syne', sans-serif; padding: 20px;
    }

    .hcard-2 {
      width: 240px; height: 145px; top: 80px; right: 10px;
      background: linear-gradient(135deg, #1a56db, #0d3fa6);
      transform: rotate(3deg); z-index: 2;
      display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
      padding: 18px; color: white;
    }

    .hcard-3 {
      width: 220px; height: 130px; bottom: 20px; left: 30px;
      background: linear-gradient(135deg, #0d0d0d, #2a2a2a);
      transform: rotate(1.5deg); z-index: 1;
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; flex-direction: column;
      padding: 16px; justify-content: space-between; color: white;
    }

    .shc-pattern {
      position: absolute; inset: 0;
      background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12) 0%, transparent 40%),
                        repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 20px);
    }

    .hcard-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; margin-bottom: 4px; }
    .hcard-name { font-size: 1.15rem; font-weight: 800; }
    .hcard-title { font-size: 0.78rem; opacity: 0.8; }
    .hcard-dots { display: flex; gap: 5px; }
    .hcard-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); }

    /* ===== TICKER STRIP ===== */
    .ticker-strip {
      background: var(--accent);
      color: white;
      padding: 12px 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .ticker-inner {
      display: inline-block;
      animation: ticker 90s linear infinite;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .ticker-inner span { margin: 0 28px; opacity: 0.7; }

    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ===== TRUST BAR ===== */
    .trust-bar {
      background: var(--white);
      border-bottom: 2px solid var(--border);
      padding: 18px 5vw;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--mid);
    }

    .trust-item i { color: var(--accent); font-size: 1.1rem; }

    /* ===== SECTIONS COMMON ===== */
    section { padding: 80px 5vw; }

    .section-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(230,60,30,0.08);
      border: 1px solid rgba(230,60,30,0.2);
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 14px;
    }

    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: 14px;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--mid);
      max-width: 560px;
      margin-bottom: 50px;
    }

    .section-header { text-align: center; }
    .section-header .section-sub { margin-left: auto; margin-right: auto; }

    /* ===== FEATURED SERVICES ===== */
    .featured-services { background: var(--paper); }

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

    .service-hero-card {
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      text-decoration: none;
    }

    .service-hero-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

    .shc-visiting { background: linear-gradient(160deg, #e63c1e 0%, #8b1a0a 100%); }
    .shc-pamphlet { background: linear-gradient(160deg, #1a56db 0%, #0d2a6b 100%); }

    .shc-icon {
      position: absolute;
      top: 30px;
      right: 30px;
      opacity: 0.2;
      font-size: 5rem;
      color: white;
    }

    .shc-content {
      position: relative;
      z-index: 2;
      padding: 32px;
      color: white;
    }

    .shc-title {
      font-size: clamp(1.5rem, 2.5vw, 2.2rem);
      line-height: 1.1;
      font-weight: 700;
      margin-bottom: 35px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .shc-desc { font-size: 0.88rem; opacity: 0.82; margin-bottom: 35px; max-width: 340px; }

    .shc-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.2);
      color: white;
      font-weight: 700;
      font-size: 0.85rem;
      padding: 10px 18px;
      border-radius: 8px;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.3);
      transition: background 0.2s;
    }

    .shc-link:hover { background: rgba(255,255,255,0.3); }

    /* ===== ALL SERVICES GRID ===== */
/* =========================================================
   YOUR EXACT ORIGINAL STYLES
   ========================================================= */
.services-section { 
  background: var(--white); 
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--paper);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,60,30,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover { 
  border-color: var(--accent); 
  transform: translateY(-4px); 
  box-shadow: 0 8px 28px rgba(230,60,30,0.12); 
}

.service-card:hover::before { 
  opacity: 1; 
}

.sc-icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.2s;
  font-size: 1.3rem;
  color: var(--accent);
}

.service-card:hover .sc-icon { 
  background: rgba(230,60,30,0.1); 
}

.sc-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.sc-desc { 
  font-size: 0.82rem; 
  color: var(--mid); 
  line-height: 1.5; 
}

.sc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.sc-badge-new {
  background: var(--accent2);
}

/* ============================================================
   GLOBAL IMAGE SWIPER ENGINE (Applies to Desktop & Mobile)
   ============================================================ */
.sc-exp-carousel {
  position: relative;
}

/* Inactive slides stay hidden; active slide displays */
.sc-exp-carousel .carousel-img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}

.sc-exp-carousel .carousel-img.active {
  display: block !important;
  opacity: 1 !important;
}

/* ============================================================
   MOBILE-ONLY UI FIXES (<= 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Prevent any JavaScript/CSS from hiding sibling cards */
  .services-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* Keep all cards displayed regardless of other states */
  .service-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    cursor: pointer !important;
    transform: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Always hide the desktop paragraph & close button on mobile */
  .sc-exp-info,
  .close-btn {
    display: none !important;
  }

  /* 1. Default State: Image section remains hidden */
  .service-card .sc-expanded-content {
    display: none !important;
  }

  /* 2. Active/Open State: Only show the image section inside the tapped card */
  .service-card.mobile-open .sc-expanded-content {
    display: block !important;
    width: 100% !important;
    margin-top: 14px !important;
    padding-top: 12px !important;
    border-top: 1px solid var(--border, #eaeaea) !important;
  }

  /* Fixed, well-proportioned mobile image box */
  .sc-exp-carousel {
    width: 100% !important;
    height: 180px !important;
    min-height: 180px !important;
    max-height: 180px !important;
    margin-bottom: -60px;
    border-radius: 12px !important;
    background: #ffffff !important;
    border: 1px solid var(--border, #e5e7eb) !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px !important;
    box-sizing: border-box !important;
  }

  /* Keep image proportions locked with smooth rounded borders */
  .sc-exp-carousel .carousel-img {
  display: none !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important; /* Changed from contain to cover */
  border-radius: 12px !important;
}

  .sc-exp-carousel .carousel-img.active {
    display: block !important;
    opacity: 1 !important;
  }
}


/* =========================================================
   EXPANSION & PERFECT FIT 6x2 GRID STYLES
   ========================================================= */

/* Desktop view: Enforces 6 equal columns and 2 equal rows */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, minmax(260px, auto));
  }
}

/* Hide inactive cards when expanded */
.services-grid.is-expanded .service-card:not(.active) {
  display: none !important;
}

/* Force expanded card to stretch to full 6-col x 2-row dimensions */
.service-card.active {
  grid-column: 1 / -1 !important;
  grid-row: 1 / span 2 !important;
  width: 100%;
  height: 100%;
  min-height: 540px; /* Exact height of 2 card rows + 20px gap */
  display: flex;
  flex-direction: column;
  cursor: default;
  transform: none !important;
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

/* Hide inactive elements on active */
.service-card.active .sc-badge {
  display: none !important;
}

.sc-desc {
  text-align: justify;
  text-align-last: left;
}

.sc-exp-info {
    text-align: justify;
    text-align-last: left;
  }

/* Back / Close button */
.close-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 10;
  pointer-events: auto !important;
}

.service-card.active .close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Restrict text width so it doesn't collide with the right image */
.service-card.active .sc-header-row,
.service-card.active .sc-name,
.service-card.active .sc-desc,
.service-card.active .sc-expanded-content {
  max-width: 52%;
}

/* Fills the rest of the expanded card area */
.sc-expanded-content {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-grow: 1;
  animation: fadeIn 0.2s ease-in-out;
  margin-bottom: 50px;
}

.service-card.active .sc-expanded-content {
  display: block;
}

/* Image carousel container: locks strictly to the right side */
.sc-exp-carousel {
  display: none;
}

.service-card.active .sc-exp-carousel {
  display: block !important;
  position: absolute;
  top: 24px;
  right: 24px;
  bottom: 24px;
  width: 42%;
  height: calc(100% - 48px);
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a;
}

/* Carousel image */
.carousel-img {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.service-card.active .carousel-img:first-child,
.service-card.active .carousel-img.slide-active {
  display: block !important;
  opacity: 1 !important;
}

/* Prevents card hover overlay from blocking clicks */
.service-card::before {
  pointer-events: none !important;
}

/* Fixed animation: purely opacity fade without position transforms */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

    /* ===== WHY CHOOSE US ===== */
    .why-section { background: var(--ink); color: white; }
    .why-section .section-title { color: white; }
    .why-section .section-sub { color: rgba(255,255,255,0.6); }

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

    .why-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 32px 24px;
      transition: background 0.2s, transform 0.2s;
    }

    .why-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }

    .why-num {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 14px;
    }

    .why-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .why-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; text-align: justify; }

    /* ===== REVIEWS ===== */
    .reviews-section { background: var(--light); }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 10px;
    }

    .review-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
    }

    .review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

    .review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
    .star { color: #f4c430; font-size: 1rem; }

    .review-text {
      font-size: 0.9rem;
      line-height: 1.65;
      color: var(--ink);
      margin-bottom: 20px;
      font-style: italic;
      flex-grow: 1;
    }

    .review-author { display: flex; align-items: center; gap: 12px; }

    .review-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      margin-top: auto;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Syne', sans-serif;
      font-weight: 800; font-size: 1rem; color: white; flex-shrink: 0;
    }

    .review-name { font-weight: 700; font-size: 0.9rem; }
    .review-source { font-size: 0.75rem; color: var(--mid); display: flex; align-items: center; gap: 4px; }

    .google-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 2px solid var(--border);
      border-radius: 30px;
      padding: 8px 18px;
      font-weight: 700;
      font-size: 0.82rem;
      margin-bottom: 32px;
    }

    /* ===== PROCESS ===== */
    .process-section { background: var(--white); }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      margin-top: 50px;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(12.5% + 20px);
      right: calc(12.5% + 20px);
      height: 2px;
      background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 8px, transparent 8px, transparent 16px);
    }

    .process-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 16px;
    }

    .ps-circle {
      width: 72px; height: 72px;
      background: var(--paper);
      border: 3px solid var(--accent);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      position: relative; z-index: 2;
      transition: background 0.2s, transform 0.2s;
      font-size: 1.5rem; color: var(--accent);
    }

    .process-step:hover .ps-circle { background: var(--accent); transform: scale(1.1); color: white; }

    .ps-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
    .ps-desc { font-size: 0.82rem; color: var(--mid); line-height: 1.5; }

    /* ===== CONTACT ===== */
    #contact.contact-section {
      background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
      color: white;
    }

    .contact-section .section-title { color: white; }
    .contact-section .section-sub { color: rgba(255,255,255,0.65); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 24px;
    }

    .ci-icon {
      width: 46px; height: 46px;
      background: rgba(230,60,30,0.15);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 2px;
      font-size: 1.1rem; color: var(--accent);
    }

    .ci-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
    .ci-value { font-size: 0.95rem; font-weight: 500; color: white; }
    .ci-value a { color: white; text-decoration: none; }
    .ci-value a:hover { color: var(--accent); }

    /* Contact Form */
    .contact-form {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px;
      padding: 36px;
      backdrop-filter: blur(10px);
    }

    .form-title { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 24px; }

    .form-group { margin-bottom: 16px; }

    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      margin-bottom: 6px;
      letter-spacing: 0.04em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      padding: 12px 14px;
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      transition: border-color 0.2s, background 0.2s;
      outline: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--accent);
      background: rgba(255,255,255,0.12);
    }

    .form-group input.error,
    .form-group select.error { border-color: #ff6b6b; }

    .field-error { font-size: 0.75rem; color: #ff9a9a; margin-top: 4px; display: none; }
    .field-error.show { display: block; }

    .form-group select option { background: #1a1a2e; color: white; }
    .form-group textarea { resize: vertical; min-height: 100px; }

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

    .form-submit {
      width: 100%;
      background: #25D366;
      color: white;
      border: none;
      border-radius: 10px;
      padding: 14px;
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background 0.2s, transform 0.2s;
      margin-top: 8px;
    }

    /* Hide on mobile and tablet devices (screens narrower than 1024px) */
  @media (max-width: 1023px) {
    .desktop-only {
    display: none !important;
    }
  }

    .form-submit:hover { background: #1da851; transform: translateY(-2px); }

    /* ===== MAP ===== */
    .map-section { padding: 0; }
    .map-section iframe { width: 100% !important; display: block; height: 420px; }

    /* ===== FAQ ===== */
    .faq-section { background: var(--paper); }
    .faq-list { max-width: 780px; margin: 0 auto; }

    .faq-item {
      border: 2px solid var(--border);
      border-radius: var(--radius);
      margin-bottom: 12px;
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .faq-item.open { border-color: var(--accent); }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      background: var(--white);
      border: none;
      text-align: left;
      cursor: pointer;
      font-family: 'Syne', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--ink);
      gap: 16px;
    }

    .faq-icon {
      flex-shrink: 0;
      width: 28px; height: 28px;
      background: var(--light);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, transform 0.3s;
      color: var(--ink); font-size: 0.85rem;
    }

    .faq-item.open .faq-icon { background: var(--accent); transform: rotate(45deg); color: white; }

    .faq-a {
      padding: 0 24px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s;
    }

    .faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
    .faq-a p { font-size: 0.9rem; color: var(--mid); line-height: 1.7; margin-top: 15px; }

    /* ===== FOOTER ===== */
    footer {
      background: #0d0d0d;
      color: rgba(255,255,255,0.75);
      padding: 60px 5vw 24px;
    }

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

    .footer-brand img { height: 48px; margin-bottom: 14px; display: block; filter: brightness(0) invert(1); }
    .footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 310px; }

    .footer-social {
      display: flex; gap: 12px; margin-top: 18px;
    }

    .footer-social a {
      width: 38px; height: 38px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: white;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.2s;
    }

    .footer-social a:hover { opacity: 0.85; transform: scale(1.1); }

    .footer-col h4 {
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: white;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 18px;
    }

    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--accent); }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 14px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
    }

    .footer-contact-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
    .footer-contact-item a { color: rgba(255,255,255,0.75); text-decoration: none; }
    .footer-contact-item a:hover { color: var(--accent); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
    .footer-bottom a { color: var(--accent); text-decoration: none; }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(22px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; min-height: auto; padding: 40px 5vw; }
      .hero-visual { display: none; }
      .services-hero-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 30px; }
      .process-steps::before { display: none; }
      .form-row { grid-template-columns: 1fr; }
    }

    @media (max-width: 600px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      nav.nav-open .nav-links {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: var(--white);
        padding: 16px;
        border-bottom: 2px solid var(--white);
        box-shadow: var(--shadow);
        z-index: 999;
      }
      .hero-stats { gap: 20px; }
      .stat-num { font-size: 1.5rem; }
      section { padding: 60px 5vw; }
      .footer-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      .trust-bar { gap: 16px; }
    }



    .custom-enquiry-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #111b21;
    color: #e9edef;
    padding: 14px 18px;
    border-radius: 12px;
    border-left: 5px solid #25d366;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .custom-enquiry-toast.show-toast {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .toast-icon {
    font-size: 1.4rem;
    color: #25d366;
    display: flex;
    align-items: center;
  }

  .toast-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
  }

  .toast-desc {
    font-size: 0.82rem;
    color: #8696a0;
    margin-top: 2px;
  }