/* =========================================================
   Tech On Wheelz — Clean System CSS (v3)
   Choices: Spacing=Tight, Buttons Sharp, Headings Bold, Nav Underline
========================================================= */

/* ---------- Base Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { text-decoration: none; }

/* DO NOT bring back any global transition on * (it causes lag) */

/* ---------- Design Tokens ---------- */
:root {
  --primary: #006666;
  --primary-600: #005a5a;
  --primary-300: #009999;
  --secondary: #264A7F;

  --text: #263238;
  --muted: #667085;
  --bg: #F8FAFD;
  --white: #ffffff;

  --radius: 4px;                 /* Sharp modern */
  --shadow-sm: 0 2px 10px rgba(0,0,0,.08);
  --shadow-md: 0 6px 18px rgba(0,0,0,.12);
  --shadow-lg: 0 14px 34px rgba(0,0,0,.18);

  --container: 1200px;

  /* Tight rhythm */
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 22px;
  --space-6: 28px;
  --space-7: 36px;
  --space-8: 48px;
  --space-9: 56px;

  /* Type scale */
  --fs-12: .75rem;
  --fs-14: .875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-32: 2rem;
  --fs-40: 2.5rem;
}

/* ---------- Base ---------- */
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
.container { max-width: var(--container); margin-inline: auto; padding-inline: 16px; }
a { color: var(--primary); transition: color .25s ease; }
a:hover { color: var(--primary-300); }

/* Focus ring */
:where(a,button,input,select,textarea,[tabindex]):focus-visible{
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  border-radius: var(--radius);
}

/* ---------- Utilities ---------- */
/* .section { padding-block: var(--space-5); } */

/* Default: hide hamburger on desktop */
/* =========================================================
   MOBILE MENU TOGGLE (HAMBURGER) - SEXY VERSION 🔥
========================================================= */

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 3500;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Subtle background on hover */
.mobile-menu-toggle:hover {
  background: rgba(51, 163, 163, 0.08);
}

/* Press effect */
.mobile-menu-toggle:active {
  transform: scale(0.92);
  background: rgba(51, 163, 163, 0.15);
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text, #333);
  border-radius: 3px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
              opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease,
              width 0.3s ease;
  transform-origin: center;
  position: relative;
}

/* Stagger animation - each line slightly different timing */
.hamburger-line:nth-child(1) {
  transition-delay: 0s;
}

.hamburger-line:nth-child(2) {
  transition-delay: 0.05s;
}

.hamburger-line:nth-child(3) {
  transition-delay: 0.1s;
}

/* Hover effect - lines expand slightly */
.mobile-menu-toggle:hover .hamburger-line {
  width: 28px;
  background: var(--primary, #33a3a3);
}

/* Middle line shrinks on hover */
.mobile-menu-toggle:hover .hamburger-line:nth-child(2) {
  width: 22px;
}

/* When menu is OPEN - sexy X animation */
.main-nav.active ~ .mobile-menu-toggle .hamburger-line {
  background: var(--primary, #33a3a3);
}

/* Rotate and glow effect when open */
.main-nav.active ~ .mobile-menu-toggle {
  background: rgba(51, 163, 163, 0.12);
}

/* Show on mobile/tablet */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* Desktop - hide completely */
@media (min-width: 993px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =========================================================
   ENHANCED MOBILE NAV ANIMATIONS
========================================================= */

@media (max-width: 992px) {
  
  /* Smooth slide + fade in */
  .nav-list {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease,
                visibility 0.35s ease,
                transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
  }

  .main-nav.active .nav-list {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Staggered fade-in for nav items */
  .nav-list li {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .main-nav.active .nav-list li {
    opacity: 1;
    transform: translateX(0);
  }

  /* Create stagger effect */
  .main-nav.active .nav-list li:nth-child(1) { transition-delay: 0.05s; }
  .main-nav.active .nav-list li:nth-child(2) { transition-delay: 0.1s; }
  .main-nav.active .nav-list li:nth-child(3) { transition-delay: 0.15s; }
  .main-nav.active .nav-list li:nth-child(4) { transition-delay: 0.2s; }
  .main-nav.active .nav-list li:nth-child(5) { transition-delay: 0.25s; }
  .main-nav.active .nav-list li:nth-child(6) { transition-delay: 0.3s; }

  /* Nav links with smooth hover */
  .nav-list li a,
  .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 16px 22px;
    font-size: 16px !important;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-align: left;
    font-weight: 700 !important;
    white-space: normal;
    word-wrap: break-word;
    transition: background 0.25s ease, 
                padding-left 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.25s ease;
    position: relative;
    overflow: hidden;
  }

  /* Ripple effect on tap */
  .nav-list li a::before,
  .dropdown-toggle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary, #33a3a3);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
  }

  .nav-list li a:active::before,
  .dropdown-toggle:active::before {
    transform: scaleY(1);
  }

  /* Active/hover state */
  .nav-list li a:active,
  .dropdown-toggle:active {
    background: rgba(51, 163, 163, 0.08);
    padding-left: 28px;
  }

  /* Prevent button stretching */
  .dropdown-toggle {
    justify-content: space-between;
  }

  /* Dropdown arrow rotation with bounce */
  .dropdown-arrow {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Submenu smooth expand */
  .dropdown-menu {
    background: linear-gradient(135deg, #f7f9fa 0%, #eef3f6 100%);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                visibility 0.3s ease,
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .has-dropdown.active .dropdown-menu {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Dropdown items fade in */
  .dropdown-menu a {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.25s ease, 
                transform 0.25s ease,
                background 0.2s ease,
                padding-left 0.2s ease;
  }

  .has-dropdown.active .dropdown-menu a {
    opacity: 1;
    transform: translateX(0);
  }

  .has-dropdown.active .dropdown-menu a:nth-child(1) { transition-delay: 0.05s; }
  .has-dropdown.active .dropdown-menu a:nth-child(2) { transition-delay: 0.1s; }
  .has-dropdown.active .dropdown-menu a:nth-child(3) { transition-delay: 0.15s; }
  .has-dropdown.active .dropdown-menu a:nth-child(4) { transition-delay: 0.2s; }

  .dropdown-menu a:active {
    background: rgba(51, 163, 163, 0.12);
    padding-left: 26px;
  }

  /* Book button - centered and sexy */
  .cta-nav {
    padding: 16px 22px;
  }

  .cta-nav .btn {
    display: block;
    width: calc(100% - 0px);
    margin: 0;
    text-align: center;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    background: var(--primary, #33a3a3);
    color: white;
    box-shadow: 0 4px 12px rgba(51, 163, 163, 0.25);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.2s ease,
                background 0.2s ease;
  }

  .cta-nav .btn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(51, 163, 163, 0.3);
    background: color-mix(in srgb, var(--primary, #33a3a3) 85%, black);
  }
}



.section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--container);
  padding-left: 16px;
  padding-right: 16px;
}


.section{
  padding-block: 40px;
}
.section-title {
  font-size: var(--fs-32);
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  color: var(--text);
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: var(--fs-18);
  max-width: 720px;
  margin-bottom: 38px;
}
.grid { display: grid; gap: var(--space-6); }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
/* =========================================================
   Promo Bar + Sticky Header + Navigation
========================================================= */

/* Promo bar scrolls away (not sticky) */
.promo-bar {
  background: #33a3a3;
  color: #fff;
  text-align: center;
  padding: 10px 12px;
  font-size: var(--fs-14);
  font-weight: 600;
    position: relative;
  z-index: 4000;
}
.promo-bar a { color: #fff; text-decoration: underline; }

/* Sticky header (nav) */
/* ——— NAV: fixed + safe z-index ——— */
.sticky-wrapper { 
   position: static !important;
  display: block;
  width: 100%; /* wrapper becomes a normal block */
}

.site-header {
  position: fixed !important;
  left: 0;
  right: 0;
  z-index: 3000;
  background: #ffffff;
  transition: box-shadow .25s ease, background .25s ease, top .25s ease;
}

/* shadow on scroll still works with your JS .scrolled toggle */
.site-header.scrolled {
  box-shadow: 0 8px 26px rgba(0,0,0,.08);
}

/* when JS sets the header height, push content down cleanly */
body.has-fixed-header main {
  padding-top: var(--header-h, 80px) !important;
}
/* body.has-fixed-header.scrolled main {
  padding-top: calc(var(--header-h, 80px));
} */

.site-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
@media (max-width: 992px) {
  .main-nav { z-index: 3500; }
}
/* Nav */
.main-nav { position: relative; }
.nav-list { list-style: none; display: flex; gap: 26px; align-items: center; }

/* Soft underline hover (chosen) */
.nav-list a {
  color: var(--text);
  font-weight: 700;                  /* Bold & strong personality */
  font-size: 16px;
  position: relative;
  padding-block: 8px;
  transition: color .25s ease;
}
.nav-list a:hover, .nav-list a:focus { color: var(--primary); }
.nav-list a[aria-current="page"] { color: var(--primary); font-weight: 700; }

/* underline */
.nav-list a::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: -5px; height: 1px; width: 0;
  background: var(--primary);
  border-radius: 1px;
  transition: width .28s ease;
  
}
.nav-list a::after { bottom: -9px; }

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after { width: 100%; }

/* ===================== DROPDOWN (DESKTOP + MOBILE CLEAN) ===================== */

.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: transparent;
  border: none;
  font: inherit;
  color: var(--text);
  font-weight: 700 !important;
  font-size: 16px !important;
  cursor: pointer;
  padding-block: 8px;
  position: relative;
  display: flex;
  align-items: center;
  transition: color .25s ease;
}

/* Hover + focus match nav links */
.dropdown-toggle:hover,
.dropdown-toggle:focus {
  color: var(--primary);
}

/* underline like regular nav links */
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -9px;
  height: 1px;
  width: 0;
  background: var(--primary);
  border-radius: 1px;
  transition: width .28s ease;
}

.dropdown-toggle:hover::after,
.has-dropdown:hover > .dropdown-toggle::after,
.has-dropdown.active > .dropdown-toggle::after {
  width: 100%;
}

/* Active & opened state coloring (mobile + desktop) */
.has-dropdown.active > .dropdown-toggle {
  color: var(--primary) !important;
  font-weight: 700;
}
/* ---------- DESKTOP : Floating dropdown (NO layout movement) ---------- */
@media (min-width: 993px) {

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #f7f9fa;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 2000;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: var(--text);
    font-size: 15px;
    white-space: nowrap;
  }

  .dropdown-menu a:hover {
    background: #eef3f6;
    color: var(--primary);
  }
}

/* ---------- MOBILE : Accordion expand (NO hover behavior) ---------- */
@media (max-width: 992px) {

  /* place menu below header */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 2000;
  }

  /* collapsed menu by default */
  .nav-list {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .35s ease, opacity .3s ease, visibility .3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .main-nav.active .nav-list {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
  }

  /* all nav items stacked */
  .nav-list li a,
  .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 14px 22px;
    font-size: 16px !important;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-align: left;
    font-weight: 700 !important;
    white-space: normal; /* Allow text to wrap instead of stretching */
    word-wrap: break-word;
  }

    /* Prevent button stretching specifically */
  .dropdown-toggle {
    justify-content: space-between;
  }
  
  /* Book button shouldn't stretch full width */
  .cta-nav .btn {
    display: inline-block;
    width: auto;
    margin: 12px 22px;
  }




  @media (max-width: 992px) {
  .has-dropdown.active > .dropdown-toggle {
    color: var(--primary) !important;
  }
}

@media (min-width: 993px) {
  .has-dropdown:hover > .dropdown-toggle {
    color: var(--primary);
  }
}

  /* submenu collapses cleanly */
  .dropdown-menu {
    background: #f7f9fa;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .35s ease, opacity .25s ease, visibility .25s ease;
  }

  .has-dropdown.active .dropdown-menu {
    max-height: 350px;
    opacity: 1;
    visibility: visible;
  }

  /* Arrow rotation */
  .has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
}


/* =========================================================
   Buttons — Sharp + Bold
========================================================= */
.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 600;                    /* Bold buttons */
  font-size: var(--fs-16);
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn.full-width { width: 100%; }

.btn-primary {
  background: var(--primary); color: #fff; border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--primary-600); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }

.btn-accent {
  background: var(--secondary); color: #fff; border-color: var(--secondary);
}
.btn-accent:hover { filter: brightness(1.05); box-shadow: var(--shadow-md); }

/* =========================================================
   Animations
========================================================= */
.fade-up { opacity: 0; transform: translateY(22px); animation: fadeUp .7s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce){
  .fade-up { animation: none; opacity: 1; transform: none; }
  .btn, .card { transition: none; }
}

/* =========================================================
   Hero (A) — text left, image right
========================================================= */
/* .hero { background: #fff; padding-block: var(--space-9); } */
.hero,
.hero-section,
.about-hero,
.blog-hero,
.contact-hero {
  padding-block: 80px;
}

.hero-container {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--space-7); align-items: center;
  width: 90%; max-width: 1200px; margin-inline: auto;
}
.hero-text h3 {
  font-size: 1.10rem;      /* around 20px – calm, clean, not shouting */
  line-height: 1.3;
  font-weight: 400;
  max-width: 540px;        /* prevents long stretched lines */
  margin-top: 0.75rem;
  opacity: 0.9;
  text-align: start;
}
.hero-text h1 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 800; color: #0f2a2a; margin-bottom: var(--space-3); }
.hero-text p { color: var(--muted); font-size: var(--fs-18); max-width: 560px; margin-bottom: var(--space-5); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual img { width: 100%; max-width: 520px; animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

@media (max-width: 992px){
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin-inline: auto; }
  .hero-visual img { margin-inline: auto; max-width: 420px; }
}

/* =========================================================
   Cards / Grids / Sections
========================================================= */
.card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: var(--space-6);
  transition: transform .28s ease, box-shadow .28s ease;
}
/* Card hover = POP (chosen) */
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: var(--space-6); }

/* =======================================================
   FIX SERVICE GRID LAYOUT (3 / 2 / 1 responsive columns)
   ======================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* desktop = 3 cards */
  gap: 24px !important;
}

/* Tablet → 2 columns */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile → 1 column */
@media (max-width: 680px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* Journey */
.journey-wrapper { display: grid; gap: var(--space-6); max-width: 950px; margin-inline: auto; }
.timeline-step {
  display: flex; gap: 16px; align-items: flex-start; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: var(--space-6); transition: transform .25s ease, box-shadow .25s ease;
}
.timeline-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.timeline-step img { width: 60px; height: 60px; }
.timeline-step h3 { color: var(--primary); font-size: var(--fs-20); margin-bottom: 6px; }
.timeline-step p { color: var(--muted); }

/* Areas */
.areas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-6); margin-top: var(--space-6); }
@media (max-width: 768px){ .areas-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .areas-grid { grid-template-columns: 1fr; } }
.area-card {
  text-align: center; font-weight: 700; color: var(--primary);
  background: #f8fbfb; border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.area-card:hover { transform: translateY(-6px); background: var(--primary); color: #fff; box-shadow: var(--shadow-md); }

/* FAQ */
.faq { max-width: 850px; margin-inline: auto; }
.faq-item {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 20px 24px; margin-bottom: 12px; cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease;
}
.faq-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--primary); }
.faq-item h3 { font-size: var(--fs-18); font-weight: 700; transition: color .25s ease; }
.faq-item:hover h3 { color: var(--primary); } 
.faq-answer { max-height: 0; overflow: hidden; opacity: 0; line-height: 1.7; transition: max-height .35s ease, opacity .25s ease, padding-top .25s ease; }
.faq-item.open .faq-answer { max-height: 400px; opacity: 1; padding-top: 10px; }

/* Reviews */
.reviews-section { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-6); max-width: 1100px; margin: 0 auto var(--space-6); }
@media (max-width: 900px){ .reviews-grid { grid-template-columns: 1fr; } }
.review-card { text-align: center; }
.review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
.reviewer-name { font-weight: 800; }
.review-rating { color: #FFB800; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-6); align-items: flex-start; }
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-map-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-6); }
@media (max-width: 900px){ .contact-map-grid { grid-template-columns: 1fr; } }
.contact-intro { margin: 8px 0 18px; color: var(--muted); font-size: .95rem; }
.form-trust-note { margin-top: 10px; text-align: center; color: var(--muted); font-size: .85rem; }

/* Forms */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; margin-bottom: 6px; color: var(--text); font-weight: 700; font-size: var(--fs-14); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px; border: 1px solid #e4e7ec; border-radius: var(--radius); background: #fff; font-size: var(--fs-16);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,102,102,.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 720px){ .form-row { grid-template-columns: 1fr; } }

/* Blog */
.blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-6); }
@media (max-width: 900px){ .blog-grid { grid-template-columns: 1fr; } }
.blog-article img { border-radius: 10px; margin-bottom: 12px; }
.blog-article h2 { font-size: var(--fs-24); font-weight: 800; margin: 6px 0 2px; }
.post-date { font-size: var(--fs-12); color: var(--muted); }
.sidebar-box h3, .sidebar-cta h3 { margin-bottom: 8px; }


/* ===== REFINED FOOTER ===== */
footer {
  background: var(--primary);
  color: #ffffff;
  padding: 70px 0 25px;
  overflow-x: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 50px;
}

/* ===== FOOTER COLUMNS ===== */
.footer-col h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #ffffff;
  position: relative;
  padding-bottom: 14px;
  letter-spacing: 0.3px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.footer-col:hover h3::after {
  width: 60px;
}

/* ===== ABOUT SECTION ===== */
.footer-about p {
  line-height: 1.8;
  opacity: 0.88;
  font-size: 0.96rem;
  font-weight: 400;
}

.footer-logo {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  margin-bottom: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.footer-logo img {
  width: 60px;
  height: auto;
  transition: transform 0.4s ease;
}

.footer-logo:hover img {
  transform: rotate(5deg);
}

/* ===== QUICK LINKS ===== */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 13px;
  transition: transform 0.3s ease;
}

.footer-links a {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.96rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  opacity: 0.88;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
  transition: width 0.35s ease;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(6px);
  color: #ffffff;
}

.footer-links a:hover::before {
  width: 100%;
}

/* ===== CONTACT SECTION ===== */
.footer-contact p {
  margin-bottom: 16px;
  font-size: 0.96rem;
  opacity: 0.88;
  transition: opacity 0.3s ease;
}

.footer-contact p:hover {
  opacity: 1;
}

.footer-contact strong {
  font-weight: 600;
  opacity: 1;
  margin-right: 8px;
}

.footer-contact a {
  color: #ffffff;
  transition: all 0.35s ease;
  opacity: 0.92;
  position: relative;
}

.footer-contact a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transition: width 0.35s ease;
}

.footer-contact a:hover {
  opacity: 1;
  letter-spacing: 0.3px;
}

.footer-contact a:hover::after {
  width: 100%;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.social-icons a:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  border-color: #ffffff;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
  color: #ffffff;
  font-size: 0.91rem;
  opacity: 0.88;
  transition: opacity 0.3s ease;
}

.footer-bottom:hover {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  footer {
    padding: 55px 0 22px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    text-align: left;
    margin-bottom: 45px;
  }

  .footer-about {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-about .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col h3::after {
    left: 0;
  }

  .footer-about h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

/* Mobile */
@media (max-width: 600px) {
  footer {
    padding: 45px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 38px;
    margin-bottom: 40px;
  }

  .footer-col h3 {
    font-size: 1.18rem;
    margin-bottom: 20px;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a:hover {
    transform: translateX(0) scale(1.02);
  }

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

  .footer-bottom {
    font-size: 0.87rem;
    padding-top: 20px;
  }

  .footer-logo {
    width: 85px;
    height: 85px;
  }

  .footer-logo img {
    width: 56px;
  }
}




/* =========================================================
   Responsive Trim
========================================================= */
@media (max-width: 1100px){ .section-title { font-size: 1.75rem; } }
@media (max-width: 768px){ .section { padding-block: var(--space-8); } }



/* =====================================================
   PREMIUM WEBFORM MODAL — SEXY & PROFESSIONAL 🔥
   ===================================================== */

/* Main modal container */
.webform-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  z-index: 5000;
  padding: 20px;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.webform-modal.active {
  visibility: visible;
  opacity: 1;
}

/* Blurred background overlay with smooth fade */
.webform-modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  transition: backdrop-filter 0.3s ease;
}

/* Modal box - SEXY card design */
.webform-modal .modal-content {
  position: relative;
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  padding: 40px 36px 36px;
  border-radius: 20px;
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow-y: auto;
  max-height: calc(100vh - 40px);
  transform: translateZ(0);
  will-change: transform, opacity;
}

/* Smooth modal entry animation - slides up with bounce */
@keyframes modalSlideUp {
  0% { 
    transform: translateY(40px) scale(0.95); 
    opacity: 0; 
  }
  100% { 
    transform: translateY(0) scale(1); 
    opacity: 1; 
  }
}

/* Close button - Modern X with hover effect */
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(0, 0, 0, 0.04);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  color: #666;
  transition: background 0.25s ease, 
              color 0.25s ease, 
              transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  transform: rotate(90deg);
}

.modal-close:active {
  transform: rotate(90deg) scale(0.9);
}

/* Title - Bold and centered */
#webformModalTitle {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

/* Optional subtitle */
#webformModalTitle::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary, #33a3a3), var(--primary, #33a3a3) 80%, transparent);
  margin: 12px auto 24px;
  border-radius: 2px;
}

/* Form layout */
.quote-form {
  margin-top: 8px;
}

.quote-form .form-group {
  margin-bottom: 20px;
}

.quote-form .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.quote-form .form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

/* Labels - Clean and bold */
.quote-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2d3748;
  letter-spacing: 0.2px;
}

/* Radio group - Modern horizontal layout */
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  color: #4a5568;
  margin-bottom: 0;
}

.radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary, #33a3a3);
}

/* Inputs - Modern floating feel */
.quote-form input[type="text"],
.quote-form input[type="tel"],
.quote-form input[type="email"],
.quote-form input[type="time"],
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-size: 15px;
  font-family: inherit;
  background: #f8fafc;
  color: #1a202c;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #a0aec0;
}

/* Focus state - Glowing border */
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--primary, #33a3a3);
  background: #ffffff;
  outline: none;
  box-shadow: 
    0 0 0 4px rgba(51, 163, 163, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* Hover state - Subtle lift */
.quote-form input:hover:not(:focus),
.quote-form select:hover:not(:focus),
.quote-form textarea:hover:not(:focus) {
  border-color: #cbd5e0;
  background: #ffffff;
}

/* Select dropdown - Custom arrow */
.quote-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}

/* Textarea - Better spacing */
.quote-form textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
  font-family: inherit;
}

/* Checkbox - Modern design */
.quote-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
  cursor: pointer;
  padding: 12px;
  border-radius: 10px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  transition: all 0.25s ease;
}

.quote-form .checkbox:hover {
  background: #edf2f7;
  border-color: #cbd5e0;
}

.quote-form .checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 2px;
  accent-color: var(--primary, #33a3a3);
  flex-shrink: 0;
}

/* Submit Button - SEXY gradient with animation */
.webform-modal .btn.full-width {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary, #33a3a3) 0%, color-mix(in srgb, var(--primary, #33a3a3) 85%, black) 100%);
  box-shadow: 
    0 4px 14px rgba(51, 163, 163, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
  margin-top: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on button */
.webform-modal .btn.full-width::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.webform-modal .btn.full-width:hover::before {
  left: 100%;
}

.webform-modal .btn.full-width:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px rgba(51, 163, 163, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.webform-modal .btn.full-width:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 8px rgba(51, 163, 163, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Trust note - Small reassuring text */
.form-trust-note {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #718096;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-trust-note::before {
  content: '🔒';
  font-size: 14px;
}

/* Custom scrollbar - Minimal and clean */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
  background-clip: padding-box;
}

/* =====================================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZATION
   ===================================================== */

/* Tablets */
@media (max-width: 768px) {
  .webform-modal {
    padding: 16px;
  }

  .webform-modal .modal-content {
    max-width: 100%;
    padding: 32px 24px 28px;
    max-height: calc(100vh - 32px);
    border-radius: 16px;
  }

  #webformModalTitle {
    font-size: 24px;
  }

  .quote-form .form-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }

  .quote-form .form-row .form-group {
    margin-bottom: 20px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .webform-modal {
    padding: 12px;
  }

  .webform-modal .modal-content {
    padding: 28px 20px 24px;
    border-radius: 14px;
  }

  #webformModalTitle {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 24px;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .radio-group {
    gap: 16px;
  }

  .webform-modal .btn.full-width {
    padding: 14px 20px;
    font-size: 15px;
  }

  .form-trust-note {
    font-size: 12px;
    margin-top: 12px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .webform-modal .modal-content {
    padding: 24px 16px 20px;
  }

  .radio-group {
    flex-direction: column;
    gap: 10px;
  }
}

/* Prevent body scroll when modal is open */
body.webform-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Loading state (optional - if you add this to your form) */
.quote-form.loading {
  pointer-events: none;
  opacity: 0.6;
}

.quote-form.loading .btn.full-width::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Focus visible for accessibility */
.quote-form input:focus-visible,
.quote-form select:focus-visible,
.quote-form textarea:focus-visible,
.modal-close:focus-visible,
.webform-modal .btn:focus-visible {
  outline: 2px solid var(--primary, #33a3a3);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .webform-modal,
  .modal-content,
  .modal-close,
  .quote-form input,
  .quote-form select,
  .quote-form textarea,
  .webform-modal .btn {
    animation: none;
    transition: none;
  }
}

:root {
  --section-space: 50px;
  --section-space-sm: 34px;
  --gap: 22px;
}

/* Default section spacing */
.section,
section.section {
  padding: var(--section-space) 0;
}

/* Hero sections get slightly extra breathing room (but not too much) */
.hero,
.hero-section,
.about-hero,
.blog-hero,
.contact-hero {
  padding: calc(var(--section-space) + 20px) 0;
}

/* Reduce internal spacing */
.section-title,
.section-subtitle,
h1, h2, h3 {
  margin-bottom: var(--gap);
}

/* Reduce paragraph spacing in sections */
.section p, .about-story, .blog-intro-text {
  margin-bottom: calc(var(--gap) - 4px);
}

/* Tighter grid spacing */
.corporate-services,
.reviews-grid,
.blog-grid,
.areas-grid,
.timeline-wrapper {
  gap: var(--gap);
}




.section-title,
.section-subtitle {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================
   SECTION TITLES (Consistent)
========================== */
.section-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 750;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 50px;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Reduce spacing across this section */
.brand-section {
  padding: 80px 0 70px;
  background: var(--bg-light);
}




.reviews-section {
  padding: 80px 0;
}

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

.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpSmooth .9s ease forwards;
}

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

/* Fade stagger */
.fade-delay-1 { animation-delay: .15s; }
.fade-delay-2 { animation-delay: .3s; }
.fade-delay-3 { animation-delay: .45s; }

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

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar img {
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

.reviewer-name {
  font-weight: 700;
  color: var(--primary-dark);
  display: block;
}

.review-location {
  color: var(--text-light);
  font-size: 0.9rem;
}

.review-rating span {
  color: var(--primary-color);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-dark);
  line-height: 1.7;
  margin-top: 12px;
}



/* === CTA SECTION === */
.cta-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}


/* CALL BUTTON (White button) */
.btn-light-call {
  background: #ffffff;
  color: #006666;
  border-radius: 50px;
  padding: 0.75rem 1.8rem;
  font-weight: 650;
  border: 2px solid #ffffff;
  transition: 0.3s ease;
}
.btn-light-call:hover {
  background: #004f4f;
  color: #ffffff;
  border-color: #004f4f;
}




/* Remove extra spacing between CTA and footer */

footer {
  margin-top: 0 !important;
}


/* ==========================
   BRAND SLIDER (Refined)
========================== */
.brand-slider {
  padding: 45px 0;
  background: var(--bg-light);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

/* Key: Start from the right smoothly */
.brand-track {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-left: 40vw;
  animation: brandScroll 24s linear infinite;
  will-change: transform;
}


/* Logo styling */
.brand-track img {
  height: 50px;
  /* filter: grayscale(100%) brightness(0.9) opacity(0.7); */
  transition: filter 0.4s ease, transform 0.4s ease;
}

/* Hover effect pops color & clarity */
.brand-track img:hover {
  /* filter: grayscale(0%) brightness(1) opacity(1); */
  transform: scale(1.16);
}

/* Smooth infinite scroll */
@keyframes brandScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Pause scroll on hover */
/* .brand-slider:hover .brand-track {
  animation-play-state: paused;
} */

/* Mobile adjustments */
@media (max-width: 768px) {
  .brand-track {
    gap: 36px;
    padding-left: 55vw;
    animation-duration: 15s;
  }
  .brand-track img {
    height: 34px;
  }
}


body.has-fixed-header main {
  padding-top: var(--header-h, 80px) !important;
}
@media (min-width: 993px) {
  .main-nav {
    position: relative !important;
  }

  .nav-list {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: none !important;
  }
}



body.has-fixed-header main {
  padding-top: var(--header-h, 80px) !important;
}




#backToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:  #264a7f !important;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 3000;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}






@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;      /* <-- stacks the 3 lines vertically */
    justify-content: center;
    align-items: center;
    gap: 6px;                    /* spacing between lines */
    padding: 8px 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 5000; /* ensures it stays above the nav */
  }

  /* Make sure it’s clickable */
  .mobile-menu-toggle,
  .mobile-menu-toggle * {
    pointer-events: auto;
  }

  /* Ensure nav doesn't cover it */
  .site-header .header-content {
    position: relative;
    z-index: 6000;
  }
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #263238;
  border-radius: 2px;
}



/* Mobile hero alignment fix */
@media (max-width: 768px) {

  .hero-container,
  .hero-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left !important; /* force left alignment */
    align-items: flex-start !important;
  }

  .hero-text h1,
  .hero-text p {
    text-align: left !important;
    width: 100%;
  }

  .hero-text .btn,
  .hero-text .btn-primary,
  .hero-text a.btn {
    margin-left: 0 !important;
    align-self: flex-start !important;
  }

  /* Keep hero image centered but text left */
  .hero-visual img {
    margin: 0 auto 20px auto;
    display: block;
  }
}


@media (max-width: 768px) {
  .hero-container,
  .hero-wrapper {
    flex-direction: column;
  }

  .hero-visual {
    order: -1; /* Image above text */
    width: 100%;
    text-align: center;
  }

  .hero-visual img {
    max-width: 260px;
    margin: 0 auto 20px auto;
    display: block;
  }

  .hero-text {
    text-align: left;
    width: 100%;
  }
}

/* review */
/* ==========================
   GOOGLE REVIEWS SECTION
========================== */
/* Tighten spacing between Google Reviews and FAQ on all service pages */
/* FINAL universal fix for spacing between Google Reviews & FAQ on all service pages */
.reviews-section {
  padding-bottom: 20px !important;
  margin-bottom: 0 !important;
}

/* When FAQ follows Reviews, tighten spacing */
.reviews-section + .faq-section,
.reviews-section + .section.faq-section,
.reviews-section + section.faq-section {
  padding-top: 16px !important;
  margin-top: -8px !important;
  padding-bottom: 55px !important;
}


/* ===============================
   REVIEWS DECOR ICONS — PREMIUM
================================ */
.reviews-section {
  background-color: var(--bg-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ICON COLUMN STRUCTURE */
.reviews-bg-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 34px;
  z-index: 1;
  pointer-events: none;
}

/* BASE APPEARANCE */
.reviews-bg-icon img {
  width: 56px;
  height: auto;
  object-fit: contain;
  opacity: 0.18;
  filter: grayscale(100%) brightness(0.85)
          drop-shadow(0 4px 10px rgba(0,0,0,0.15));
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
              opacity 0.45s ease;
}

/* HOVER POP — DESKTOP ONLY */
@media (min-width: 992px) {
  .reviews-bg-icon img:hover {
    transform: scale(1.18);
    opacity: 0.28;
    filter: grayscale(0%) brightness(1)
            drop-shadow(0 6px 16px rgba(0,0,0,0.25));
  }
}

/* POSITIONING */
.left-icon { left: 40px; }
.right-icon { right: 40px; }

/* LARGE SCREEN */
@media (max-width: 1400px) {
  .reviews-bg-icon img { width: 48px; }
  .left-icon { left: 28px; }
  .right-icon { right: 28px; }
}

/* MID SCREEN */
@media (max-width: 1200px) {
  .reviews-bg-icon img { width: 42px; }
}

/* TABLET + SMALL LAPTOP */
@media (max-width: 992px) {
  .reviews-bg-icon {
    top: 30% !important;               /* pull icons UP */
    transform: translateY(-30%) !important;
    z-index: 999 !important;           /* FORCE above the widget */
  }

  .reviews-bg-icon img {
    width: 30px !important;
    opacity: 0.16 !important;
  }

  .left-icon { left: 6px !important; }
  .right-icon { right: 6px !important; }
}

/* REAL MOBILE DEVICES */
@media (max-width: 768px) {
  .reviews-bg-icon {
    top: 38%;               /* moved up to avoid widget overlap */
    transform: translateY(-38%);
    gap: 14px;
  }

  .reviews-bg-icon img {
    width: 22px;            /* perfect size for phones */
    opacity: 0.16;
  }

  .left-icon { left: 4px; }
  .right-icon { right: 4px; }
}

/* FLOATING MOTION */
@keyframes softFloatPremium {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.06); }
  100% { transform: translateY(0) scale(1); }
}

.reviews-bg-icon img {
  animation: softFloatPremium 5.6s ease-in-out infinite;
}
/* =====================================================
   RESPONSIVE BRAND BACKGROUND — FIXED + PROFESSIONAL
===================================================== */

/* =====================================================
   RESPONSIVE BRAND DECOR — FLOATING + MOBILE FRIENDLY
===================================================== */

.brand-bg {
  width: 110px;
  opacity: 0.10;
  filter: grayscale(100%);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  animation: floatSlow 6s ease-in-out infinite;
}

/* Stagger animation timings */
.brand-bg:nth-child(2) { animation-duration: 7s; animation-delay: 0.3s; }
.brand-bg:nth-child(3) { animation-duration: 5.5s; animation-delay: 0.6s; }
.brand-bg:nth-child(4) { animation-duration: 7.5s; animation-delay: 0.2s; }
.brand-bg:nth-child(5) { animation-duration: 6.2s; animation-delay: 0.4s; }
.brand-bg:nth-child(6) { animation-duration: 8s; animation-delay: 0.7s; }

@keyframes floatSlow {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* DESKTOP STACKS = FULL HEIGHT */
.brand-stack-left,
.brand-stack-right {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 0;
  z-index: 1;
}

.brand-stack-left { left: -50px; }
.brand-stack-right { right: -50px; }

/* TABLET */
@media (max-width: 992px) {
  .brand-bg {
    width: 80px;
    opacity: 0.08;
  }

  .brand-stack-left { left: -30px; }
  .brand-stack-right { right: -30px; }
}

/* MOBILE FIX — NO MORE CRAMMING AT TOP */
@media (max-width: 768px) {

  /* reduce the icons */
  .brand-bg {
    width: 55px;
    opacity: 0.06;
  }

  /* stacks become scrollable bands */
  .brand-stack-left,
  .brand-stack-right {
    position: absolute;
    top: 0;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;

    /* NEW: vertical scrolling illusion */
    animation: scrollDown 18s linear infinite;
  }

  .brand-stack-right {
    animation-delay: 2s;
  }

  @keyframes scrollDown {
    0% { transform: translateY(-20%); }
    100% { transform: translateY(20%); }
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .brand-bg {
    width: 42px;
    opacity: 0.05;
  }

  .brand-stack-left { left: -12px; }
  .brand-stack-right { right: -12px; }
}


/* Mobile tightening */
@media (max-width: 768px) {
  .reviews-section {
    padding-bottom: 10px !important;
  }
  .reviews-section + .faq-section,
  .reviews-section + .section.faq-section,
  .reviews-section + section.faq-section {
    padding-top: 12px !important;
    margin-top: -10px !important;
    padding-bottom: 40px !important;
  }
}


.flash {
  padding: 12px 15px;
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  animation: fadeSlide 0.35s ease;
  text-align: center;
}

.flash-success {
  background: #e4f8f4;
  border-left: 4px solid #1ca58f;
  color: #17695e;
}

.flash-error {
  background: #ffe9e9;
  border-left: 4px solid #cc3a3a;
  color: #792b2b;
}

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



/* FORCE THE BOOK A REPAIR BUTTON STYLE */
.book-btn {
    background: #264a7f !important;
    color: #ffffff !important;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

/* ensure hover looks clean */
.book-btn:hover {
    opacity: 0.9;
    color: #ffffff !important;
}



.nav-icon {
  margin-right: 8px;
  font-size: 16px;
  color: var(--primary-dark);
  opacity: .85;
  transition: transform .25s ease, opacity .25s ease;
}

.main-nav a:hover .nav-icon,
.dropdown-toggle:hover .nav-icon {
  opacity: 1;
  transform: translateY(-2px);
}


/* margin/padding */


/* ============================
   GLOBAL TIGHT SPACING FIX
   ============================ */

.section,
section.section {
  padding: 55px 0 !important; /* tighter universally */
}

.hero,
.hero-section {
  padding: 70px 0 !important; /* reduced from 100+ */
}

.section-title {
  margin-bottom: 10px !important;
}

.section-subtitle {
  margin-bottom: 26px !important;
}

.services-grid,
.reviews-grid,
.brand-track,
.timeline-wrapper,
.faq-wrapper {
  gap: 20px !important;
}

.service-card p {
  margin: 8px 0 10px 0 !important;
}

.service-price {
  margin-bottom: 14px !important;
}

/* Reduce FAQ spacing */
.faq-section {
  padding-top: 40px !important;
  padding-bottom: 50px !important;
}

.reviews-section {
  padding-bottom: 20px !important;
}



/* ============================================
   FIX HOMEPAGE HERO → SERVICES GAP
============================================ */

.homepage .hero {
  padding-bottom: 30px !important;    /* reduce bottom space */
}

.homepage .hero-container {
  margin-bottom: 0 !important;        /* remove extra spacing */
}

.homepage .hero + .section {
  margin-top: 0 !important;           /* kill section top gap */
  padding-top: 30px !important;       /* nice tight spacing */
}



.site-header .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 24px;
}
/* But keep all other containers the same */
body main .container {
    width: 90%;
    max-width: 1200px;
    margin-inline: auto;
}


.logo {
  padding: 10px 0;
}

/* Desktop only */
@media (min-width: 1024px) {
  .logo {
    padding-left: 30px;   /* push logo away from the left */
  }
}



.leaflet-map {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
}



.input-error {
    border: 2px solid #e63946 !important;
}

.error-text {
    color: #e63946;
    font-size: 13px;
    margin-top: 4px;
}



.agree-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.agree-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.agree-group label {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.privacy-link {
    color: #006666;
    text-decoration: underline;
    font-weight: 500;
}

.privacy-link:hover {
    color: #004c4c;
}







#submitBtn.loading {
  opacity: 0.8;
  pointer-events: none;
}

#submitBtn .btn-loading {
  display: none;
}

#submitBtn.loading .btn-loading {
  display: inline-block !important;
}

#submitBtn.loading .btn-text {
  display: none !important;
}


.btn-loading {
  display: none;
}

.loading .btn-loading {
  display: inline-block !important;
}

.loading .btn-text {
  display: none !important;
}
