/* =========================================================
   COOLCARE GOA — DESIGN TOKENS
   Palette:  --blue (brand/CTA), --blue-deep (headings on dark),
             --sky (gradient partner), --green (WhatsApp),
             --ink (body text), --bg (page background)
   Type:     Display = Poppins (headlines, weight 600-800)
             Body    = Inter (paragraphs, UI)
   Signature: cool-air "wave" divider + drag-to-compare before/after
   ========================================================= */

:root {
  --blue: #0D6EFD;
  --blue-deep: #071A3D;
  --blue-mid: #133B8A;
  --sky: #38BDF8;
  --green: #25D366;
  --green-deep: #128C4A;
  --bg: #F7FAFF;
  --ink: #0F1F3D;
  --ink-soft: #5B6B8C;
  --white: #FFFFFF;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(13, 33, 74, 0.08);
  --shadow-strong: 0 20px 45px rgba(13, 33, 74, 0.14);
  --container-pad: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip !important;
  max-width: 100vw;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  max-width: 100%;
}

main, section, footer, header {
  overflow-x: clip;
}

h1, h2, h3, h4, .brand-text {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--blue-deep);
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { color: var(--ink-soft); line-height: 1.7; }

a { text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #BFE0FF;
  background: rgba(255,255,255,0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.eyebrow-dark {
  color: var(--blue);
  background: rgba(13, 110, 253, 0.08);
}

.section-heading { max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: 3rem; }
.section-heading h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 0.75rem; }
.section-heading p { font-size: 1.05rem; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  border: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(13,110,253,0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(13,110,253,0.35); color: #fff; }

.btn-whatsapp-cta {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(37,211,102,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-whatsapp-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(37,211,102,0.4); color: #fff; }

.btn-outline-nav {
  border: 1.5px solid var(--blue);
  color: var(--blue);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}
.btn-outline-nav:hover { background: var(--blue); color: #fff; }

.btn-whatsapp-nav {
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
}
.btn-whatsapp-nav:hover { background: var(--green-deep); color: #fff; }

.btn-light-pill {
  background: #fff;
  color: var(--blue-deep);
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 600;
}

.btn-outline-price {
  border: 1.5px solid #DCE6FA;
  color: var(--blue-deep);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.2s ease;
}
.btn-outline-price:hover { border-color: var(--blue); color: var(--blue); }

/* Button ripple */
.btn-primary-cta, .btn-whatsapp-cta {
  position: relative;
}
.btn-primary-cta::after, .btn-whatsapp-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.btn-primary-cta:active::after, .btn-whatsapp-cta:active::after {
  opacity: 1; transform: scale(1.4); transition: 0s;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 0.9rem 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(13,33,74,0.08);
  padding: 0.55rem 0;
}
.site-header:not(.scrolled) .nav-link { color: #fff; }
.site-header:not(.scrolled) .brand-text { color: #fff; }
.site-header:not(.scrolled) .toggler-bar { background: #fff; }
.site-header:not(.scrolled) .btn-outline-nav { border-color: #fff; color: #fff; }

.brand { display: flex; align-items: center; gap: 0.55rem; }
.brand-text { font-size: 1.25rem; font-weight: 700; color: var(--blue-deep); transition: color 0.3s ease; }
.brand-text em { font-style: normal; color: var(--green); }

.nav-link {
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.15rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: var(--blue); }

.custom-toggler {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 8px !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  position: relative;
  z-index: 1100;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  margin-left: auto;
}

/* Explicit visibility: show toggler ALWAYS on <992px, hide desktop nav */
@media (max-width: 991.98px) {
  .site-header .navbar .custom-toggler.navbar-toggler {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .site-header .navbar #desktopNav.navbar-collapse,
  .site-header .navbar .d-lg-flex,
  .site-header .navbar .collapse.d-lg-flex {
    display: none !important;
  }
}
/* Hide toggler on ≥992px only if desktop nav exists */
@media (min-width: 992px) {
  .site-header .navbar .custom-toggler.navbar-toggler {
    display: none !important;
  }
}

.toggler-bar {
  width: 26px !important;
  height: 2.5px !important;
  background: var(--blue-deep);
  border-radius: 2px !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.toggler-bar:nth-child(1) { top: 14px !important; }
.toggler-bar:nth-child(2) { top: 50% !important; transform: translate(-50%, -50%) !important; }
.toggler-bar:nth-child(3) { bottom: 14px !important; }

.site-header .custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
  top: 50% !important;
  transform: translate(-50%, -50%) rotate(45deg) !important;
}
.site-header .custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
  opacity: 0 !important;
  transform: translate(-50%, -50%) scaleX(0) !important;
}
.site-header .custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
  bottom: 50% !important;
  transform: translate(-50%, 50%) rotate(-45deg) !important;
}

/* Ensure toggler bars are WHITE when header not scrolled (on hero) */
.site-header:not(.scrolled) .toggler-bar {
  background: #fff !important;
}

/* Mobile offcanvas menu - Modern glassy design */
.offcanvas-backdrop {
  background: rgba(7, 26, 61, 0.5);
  backdrop-filter: blur(3px);
}
.mobile-menu {
  background: linear-gradient(175deg, #071A3D 0%, #0A2454 45%, #133B8A 100%);
  width: min(88vw, 340px);
  color: #fff;
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(56,189,248,0.18), transparent 40%),
    radial-gradient(circle at 5% 95%, rgba(37,211,102,0.12), transparent 35%);
  pointer-events: none;
}
.mobile-menu .offcanvas-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 1.25rem;
  position: relative;
}
.mobile-menu .offcanvas-header .brand-text {
  font-size: 1.05rem;
  color: #fff;
}
.mobile-menu .btn-close-white {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.2s ease;
  background-size: 14px;
  padding: 8px;
}
.mobile-menu .btn-close-white:hover {
  opacity: 1;
  transform: rotate(90deg);
}
.mobile-menu .offcanvas-body {
  padding: 0;
  position: relative;
}
.mobile-nav-list {
  margin: 0;
  padding: 0.5rem 1.25rem 1.5rem;
}
.mobile-nav-list li {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.mobile-nav-list li:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav-list li:nth-child(2) { animation-delay: 0.1s; }
.mobile-nav-list li:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav-list li:nth-child(4) { animation-delay: 0.2s; }
.mobile-nav-list li:nth-child(5) { animation-delay: 0.25s; }
.mobile-nav-list li:nth-child(6) { animation-delay: 0.3s; }

@keyframes slideInRight {
  to { opacity: 1; transform: translateX(0); }
}

.mobile-nav-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.25s ease;
  position: relative;
}
.mobile-nav-list li a::after {
  content: "\F138";
  font-family: 'Bootstrap-icons';
  font-size: 0.85rem;
  opacity: 0.5;
  transition: all 0.25s ease;
}
.mobile-nav-list li a:hover,
.mobile-nav-list li a:focus-visible {
  color: var(--sky);
  padding-left: 1rem;
}
.mobile-nav-list li a:hover::after,
.mobile-nav-list li a:focus-visible::after {
  opacity: 1;
  color: var(--green);
  transform: translateX(4px);
}

.mobile-menu-contact {
  padding: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.mobile-menu-contact .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.mobile-menu-contact .btn-light-pill {
  background: #fff;
  color: var(--blue-deep);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.mobile-menu-contact .btn-light-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}
.mobile-menu-contact .btn-whatsapp-nav {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}
.mobile-menu-contact .btn-whatsapp-nav:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,211,102,0.4);
}

body.offcanvas-open {
  overflow: hidden;
  touch-action: none;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 8.5rem 0 0;
  overflow: hidden;
  overflow-x: clip;
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-mid) 48%, #0F4FC4 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(56,189,248,0.25), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(37,211,102,0.12), transparent 40%);
  pointer-events: none;
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
}
.hero-text { position: relative; z-index: 2; padding-bottom: 4rem; }
.hero .eyebrow { color: #D9ECFF; background: rgba(255,255,255,0.12); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}
.hero-sub { color: #D6E4FA; font-size: 1.15rem; max-width: 520px; margin-bottom: 2rem; }

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0.7rem 1.2rem;
  margin-top: 2.2rem;
}
.trust-badges li { color: #EAF2FF; font-size: 0.92rem; display: flex; align-items: center; gap: 0.5rem; }
.trust-badges i { color: var(--green); font-size: 1.05rem; }

.hero-media { position: relative; z-index: 2; }
.hero-img-wrap { position: relative; overflow-x: clip; overflow-y: visible; }
.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  aspect-ratio: 9/7;
  object-fit: cover;
  width: 100%;
}
.hero-float-card {
  position: absolute;
  bottom: -1.5rem; left: -1.2rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: 0.8rem;
  max-width: 260px;
  z-index: 3;
}
.hero-float-card i { font-size: 1.6rem; color: var(--blue); }
.hero-float-card strong { display: block; font-family: 'Poppins', sans-serif; color: var(--blue-deep); font-size: 1.05rem; }
.hero-float-card span { font-size: 0.8rem; color: var(--ink-soft); }

.wave-divider { display: block; width: 100%; height: 60px; margin-top: 3rem; }

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.services-section { background: var(--bg); padding: 6rem 0; }
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #EDF2FC;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13,110,253,0.12), rgba(56,189,248,0.12));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.6rem;
  color: var(--blue);
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-6deg); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.service-card p { font-size: 0.88rem; margin-bottom: 0; }

/* =========================================================
   WHY US
   ========================================================= */
.why-section { padding: 6rem 0; }
.why-card {
  padding: 1.8rem 1.4rem;
  border-radius: var(--radius-md);
  height: 100%;
  background: #fff;
  border: 1px solid #EDF2FC;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); border-color: var(--blue); }
.why-card i { font-size: 1.8rem; color: var(--green-deep); margin-bottom: 0.9rem; display: block; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.88rem; margin-bottom: 0; }

/* =========================================================
   PROCESS
   ========================================================= */
.process-section {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-mid));
  padding: 6rem 0;
  position: relative;
}
.process-section .eyebrow { color: #D9ECFF; background: rgba(255,255,255,0.12); }
.process-section .section-heading p { color: #C7D8F5; }
.process-row { position: relative; }
.process-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 2rem 1.4rem;
  text-align: center;
  height: 100%;
  transition: background 0.3s ease, transform 0.3s ease;
}
.process-step:hover { background: rgba(255,255,255,0.1); transform: translateY(-6px); }
.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sky);
  margin-bottom: 0.6rem;
}
.process-step h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p { color: #C7D8F5; font-size: 0.9rem; margin-bottom: 0; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-section { padding: 6rem 0; }
.about-img-wrap { position: relative; overflow-x: clip; overflow-y: visible; }
.about-img-wrap img { box-shadow: var(--shadow-strong); width: 100%; aspect-ratio: 4/4.5; object-fit: cover; display: block; }
.about-copy { font-size: 1.03rem; margin-bottom: 1.6rem; }
.about-tags { margin-top: 0.5rem; }
.about-tags > div {
  display: flex; align-items: center; gap: 0.55rem;
  font-weight: 600; color: var(--blue-deep); font-size: 0.92rem;
  padding: 0.5rem 0;
}
.about-tags i { color: var(--blue); }

/* =========================================================
   SERVICE AREAS
   ========================================================= */
.areas-section { background: var(--bg); padding: 6rem 0; }
.area-chip {
  background: #fff;
  border: 1px solid #E4ECFB;
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--blue-deep);
  font-size: 0.92rem;
  transition: all 0.25s ease;
}
.area-chip i { color: var(--green-deep); margin-right: 0.35rem; }
.area-chip:hover { background: var(--blue); color: #fff; transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.area-chip:hover i { color: #fff; }
.area-chip-more { background: rgba(13,110,253,0.06); border-style: dashed; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing-section { padding: 6rem 0; }
.price-card {
  background: #fff;
  border: 1px solid #EDF2FC;
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  height: 100%;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.price-card-featured { border: 2px solid var(--blue); box-shadow: var(--shadow-soft); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 0.35rem 1rem; border-radius: 999px;
}
.price-card h3 { font-size: 1.15rem; margin-bottom: 0.8rem; }
.price { font-family: 'Poppins', sans-serif; font-size: 2.1rem; font-weight: 800; color: var(--blue); margin-bottom: 1.2rem; }
.price span { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); margin-left: 0.3rem; }
.price-card ul { text-align: left; margin-bottom: 1.6rem; }
.price-card ul li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--ink-soft); }
.price-card ul i { color: var(--green-deep); margin-right: 0.5rem; }
.pricing-note { margin-top: 2rem; color: var(--ink-soft); font-size: 0.9rem; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-section { background: var(--bg); padding: 6rem 0; }
.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.stars { color: #FFB020; margin-bottom: 0.8rem; font-size: 0.95rem; }
.review-card p { font-size: 0.92rem; color: var(--ink); margin-bottom: 1.3rem; }
.reviewer { display: flex; align-items: center; gap: 0.7rem; }
.reviewer img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.reviewer strong { display: block; font-size: 0.9rem; color: var(--blue-deep); }
.reviewer span { font-size: 0.78rem; color: var(--ink-soft); }

@media (max-width: 991px) {
  .reviews-track {
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }
  .review-card { scroll-snap-align: start; }
}

/* =========================================================
   BEFORE / AFTER SLIDER
   ========================================================= */
.before-after-section {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-mid));
  padding: 6rem 0;
}
.before-after-section .eyebrow { color: #D9ECFF; background: rgba(255,255,255,0.12); }
.text-light-70 { color: #C7D8F5; }
.ba-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  user-select: none;
}
.ba-img-before, .ba-img-after { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba-after-wrap img { width: var(--ba-img-w, 760px); max-width: none; height: 100%; min-width: 100%; }
.ba-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  z-index: 10;
}
/* Prevent range input from causing horizontal overflow on iOS Safari */
input[type="range"].ba-range::-webkit-slider-runnable-track,
input[type="range"].ba-range::-webkit-slider-thumb {
  overflow: hidden;
  max-width: 100%;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { padding: 6rem 0; }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
  border: 1px solid #EDF2FC !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 1rem;
}
.accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--blue-deep);
  font-size: 1rem;
  padding: 1.2rem 1.4rem;
}
.accordion-button:not(.collapsed) {
  background: rgba(13,110,253,0.06);
  color: var(--blue);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; outline: 3px solid var(--sky); outline-offset: -3px; }
.accordion-body { color: var(--ink-soft); font-size: 0.95rem; padding: 0 1.4rem 1.4rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section { background: var(--bg); padding: 6rem 0; }
.contact-details { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item i {
  width: 46px; height: 46px; flex-shrink: 0;
  background: #fff; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
}
.contact-item strong { display: block; font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; margin-bottom: 0.15rem; }
.contact-item a, .contact-item span { color: var(--blue-deep); font-weight: 600; }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.form-label { font-weight: 600; color: var(--blue-deep); font-size: 0.9rem; }
.form-control, .form-select {
  border-radius: var(--radius-sm);
  border: 1px solid #E4ECFB;
  padding: 0.7rem 1rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
}
.form-status { margin-top: 0.9rem; margin-bottom: 0; font-size: 0.9rem; font-weight: 600; color: var(--green-deep); min-height: 1.2em; }

/* =========================================================
   MAP
   ========================================================= */
.map-section iframe { width: 100%; height: 100%; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--blue-deep); padding: 4.5rem 0 2rem; }
.footer-brand { margin-bottom: 1rem; }
.footer-about { color: #A9BEE6; font-size: 0.9rem; max-width: 320px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.footer-links li { margin-bottom: 0.7rem; font-size: 0.9rem; color: #A9BEE6; }
.footer-links a { color: #A9BEE6; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--sky); }
.footer-links i { margin-right: 0.5rem; color: var(--sky); }
.site-footer hr { border-color: rgba(255,255,255,0.1); margin: 2rem 0 1.5rem; }
.copyright { color: #8AA0CE; font-size: 0.85rem; margin-bottom: 0; }

/* =========================================================
   STICKY MOBILE BAR
   ========================================================= */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1040;
  display: flex;
  gap: 0.6rem;
  padding: 0.65rem 0.8rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 -6px 24px rgba(13,33,74,0.12);
}
.mobile-sticky-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-soft);
}
.call-btn { background: var(--blue); color: #fff; }
.whatsapp-btn { background: var(--green); color: #fff; }

/* =========================================================
   DESKTOP FLOATING BUTTONS
   ========================================================= */
.floating-buttons {
  position: fixed;
  right: 1.8rem; bottom: 2rem;
  z-index: 1040;
  flex-direction: column;
  gap: 0.9rem;
}
.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: var(--shadow-strong);
  position: relative;
  transition: transform 0.25s ease;
}
.float-btn:hover { transform: scale(1.08); color: #fff; }
.float-call { background: var(--blue); }
.float-whatsapp { background: var(--green); }
.pulse-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.fade-up, .fade-left, .fade-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
  contain: layout style;
}
.fade-up { transform: translateY(28px); }
.fade-left { transform: translateX(24px); }
.fade-right { transform: translateX(-24px); }
.fade-up.in-view, .fade-left.in-view, .fade-right.in-view {
  opacity: 1;
  transform: translate(0,0);
}
/* Ensure pre-animation state doesn't cause horizontal scroll */
.fade-left, .fade-right {
  max-width: 100%;
  overflow-x: clip;
}

/* Also apply overflow-x:clip to all rows/sections that might host animated elements */
.container, .container-fluid, .row,
.services-section, .why-section, .process-section,
.about-section, .areas-section, .pricing-section,
.reviews-section, .before-after-section, .faq-section,
.contact-section, .hero, .site-footer, .site-header {
  overflow-x: clip;
}

/* stagger children of a row slightly */
.row.g-4 > [class^="col-"].fade-up:nth-child(2) { transition-delay: 0.06s; }
.row.g-4 > [class^="col-"].fade-up:nth-child(3) { transition-delay: 0.12s; }
.row.g-4 > [class^="col-"].fade-up:nth-child(4) { transition-delay: 0.18s; }
.row.g-4 > [class^="col-"].fade-up:nth-child(5) { transition-delay: 0.24s; }
.row.g-4 > [class^="col-"].fade-up:nth-child(6) { transition-delay: 0.3s; }
.row.g-4 > [class^="col-"].fade-up:nth-child(7) { transition-delay: 0.36s; }
.row.g-4 > [class^="col-"].fade-up:nth-child(8) { transition-delay: 0.42s; }

/* =========================================================
   RESPONSIVE — DESKTOP-FIRST BREAKPOINTS
   xl: ≥1400, lg: ≥992, md: ≥768, sm: ≥576
   ========================================================= */

/* --- Large Tablet / Small Laptop (≤1199px) --- */
@media (max-width: 1199px) {
  .container { max-width: 960px; }
  .hero h1 { font-size: clamp(2rem, 4.2vw, 2.8rem); }
  .reviews-track { grid-template-columns: repeat(2, 1fr); }
}

/* --- Tablet (≤991px) — Bootstrap LG breakpoint --- */
@media (max-width: 991px) {
  .hero { padding-top: 7rem; }
  .hero-text { padding-bottom: 2.5rem; }
  .hero-float-card { position: static; margin-top: 1rem; max-width: 320px; }
  main { padding-bottom: 4.7rem; }
  .services-section, .why-section, .process-section,
  .about-section, .areas-section, .pricing-section,
  .reviews-section, .before-after-section, .faq-section,
  .contact-section { padding: 4.5rem 0; }
  .section-heading { margin-bottom: 2.5rem; }
  .site-footer { padding: 3.5rem 0 1.5rem; }
  .floating-buttons { right: 1rem; bottom: 1.2rem; gap: 0.7rem; }
  .float-btn { width: 52px; height: 52px; font-size: 1.3rem; }
  .about-img-wrap img { aspect-ratio: 4/3; }
  .reviews-track { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.2rem; }
}

/* --- Small Tablet (≤850px) --- */
@media (max-width: 850px) {
  .trust-badges {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 0.6rem 1rem;
  }
  .brand-text { font-size: 1.05rem; }
  .brand-mark svg { width: 30px; height: 30px; }
  .service-card, .why-card { padding: 1.5rem 1.1rem; }
  .price-card { padding: 1.8rem 1.4rem; }
}

/* --- Mobile (≤767px) — Bootstrap MD breakpoint --- */
@media (max-width: 767px) {
  :root { --container-pad: 1rem; }
  .container { padding-left: 1.1rem; padding-right: 1.1rem; }

  /* Header */
  .site-header { padding: 0.7rem 0; }
  .site-header.scrolled { padding: 0.45rem 0; }
  .brand { gap: 0.45rem; }
  .brand-text { font-size: 1rem; }
  .brand-mark svg { width: 28px; height: 28px; }

  /* Hero */
  .hero { padding-top: 6rem; }
  .hero h1 { font-size: clamp(1.85rem, 7vw, 2.5rem); line-height: 1.15; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.6rem; }
  .hero-cta { gap: 0.7rem; }
  .hero-cta .btn { padding: 0.78rem 1.3rem; font-size: 0.92rem; }
  .trust-badges { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.55rem 0.85rem; margin-top: 1.6rem; }
  .trust-badges li { font-size: 0.85rem; gap: 0.4rem; }
  .hero-float-card { max-width: 100%; padding: 0.85rem 1rem; gap: 0.65rem; }
  .hero-float-card i { font-size: 1.35rem; }
  .hero-float-card strong { font-size: 0.98rem; }
  .hero-float-card span { font-size: 0.75rem; }
  .wave-divider { height: 45px; margin-top: 2rem; }

  /* Section headings */
  .section-heading { margin-bottom: 2rem; }
  .section-heading h2 { font-size: clamp(1.5rem, 5.5vw, 1.9rem); }
  .section-heading p { font-size: 0.95rem; }
  .eyebrow { font-size: 0.72rem; padding: 0.35rem 0.8rem; margin-bottom: 0.8rem; }

  /* Sections padding */
  .services-section, .why-section, .process-section,
  .about-section, .areas-section, .pricing-section,
  .reviews-section, .before-after-section, .faq-section,
  .contact-section { padding: 3.5rem 0; }

  /* Service cards - 2 columns */
  .services-section .row.g-4,
  .why-section .row.g-4 { --bs-gutter-x: 0.8rem; --bs-gutter-y: 0.8rem; }
  .service-card { padding: 1.3rem 0.9rem; border-radius: 14px; }
  .service-icon { width: 52px; height: 52px; font-size: 1.4rem; border-radius: 14px; margin-bottom: 0.9rem; }
  .service-card h3 { font-size: 0.95rem; }
  .service-card p { font-size: 0.82rem; }

  /* Why us - 2 columns */
  .why-card { padding: 1.3rem 0.95rem; border-radius: 14px; }
  .why-card i { font-size: 1.55rem; margin-bottom: 0.7rem; }
  .why-card h3 { font-size: 0.95rem; }
  .why-card p { font-size: 0.82rem; }

  /* Process - 2 columns grid */
  .process-row { --bs-gutter-x: 0.8rem; --bs-gutter-y: 0.8rem; }
  .process-step { padding: 1.4rem 1rem; }
  .step-number { font-size: 1.8rem; margin-bottom: 0.4rem; }
  .process-step h3 { font-size: 1rem; }
  .process-step p { font-size: 0.85rem; }

  /* About section */
  .about-copy { font-size: 0.95rem; margin-bottom: 1.2rem; }
  .about-tags { --bs-gutter-x: 0.6rem; --bs-gutter-y: 0.3rem; }
  .about-tags > div { font-size: 0.86rem; padding: 0.4rem 0; }
  .about-img-wrap img { aspect-ratio: 4/3; }

  /* Areas - 2 columns */
  .areas-grid { --bs-gutter-x: 0.6rem; --bs-gutter-y: 0.6rem; }
  .area-chip { padding: 0.8rem 0.5rem; font-size: 0.85rem; border-radius: 10px; }

  /* Pricing cards - 1 column full width */
  .pricing-section .row.g-4 { --bs-gutter-x: 0.9rem; --bs-gutter-y: 0.9rem; }
  .price-card { padding: 1.6rem 1.3rem; border-radius: 18px; }
  .price-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
  .price { font-size: 1.8rem; margin-bottom: 1rem; }
  .price-card ul { margin-bottom: 1.3rem; }
  .price-card ul li { font-size: 0.85rem; padding: 0.3rem 0; }
  .pricing-note { margin-top: 1.5rem; font-size: 0.85rem; }

  /* Reviews - horizontal scroll on mobile */
  .reviews-track {
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.8rem;
    gap: 1rem;
    scrollbar-width: none;
  }
  .reviews-track::-webkit-scrollbar { display: none; }
  .review-card { scroll-snap-align: start; padding: 1.4rem; border-radius: 14px; }
  .review-card p { font-size: 0.88rem; margin-bottom: 1rem; }
  .reviewer img { width: 40px; height: 40px; }
  .reviewer strong { font-size: 0.85rem; }
  .reviewer span { font-size: 0.74rem; }

  /* Before/After slider */
  .ba-slider { border-radius: 16px; }
  .ba-handle i { width: 36px; height: 36px; font-size: 0.95rem; }
  .ba-label { font-size: 0.7rem; padding: 0.3rem 0.7rem; top: 0.7rem; }
  .ba-label-before { left: 0.7rem; }
  .ba-label-after { right: 0.7rem; }

  /* FAQ */
  .accordion-button { font-size: 0.92rem; padding: 1rem 1.1rem; }
  .accordion-body { font-size: 0.9rem; padding: 0 1.1rem 1.1rem; }
  .accordion-item { margin-bottom: 0.75rem; border-radius: 14px !important; }

  /* Contact */
  .contact-section .row.g-5 { --bs-gutter-y: 2rem; }
  .contact-details { gap: 1.2rem; }
  .contact-item { gap: 0.8rem; }
  .contact-item i { width: 42px; height: 42px; font-size: 1rem; border-radius: 12px; }
  .contact-item strong { font-size: 0.8rem; }
  .contact-form { padding: 1.4rem; border-radius: 18px; }
  .contact-form .row.g-3 { --bs-gutter-x: 0.75rem; --bs-gutter-y: 0.75rem; }
  .form-label { font-size: 0.85rem; }
  .form-control, .form-select { padding: 0.65rem 0.9rem; font-size: 0.9rem; border-radius: 10px; }
  #cf-message { min-height: 110px; }

  /* Map */
  .map-section .ratio-21x9 { --bs-aspect-ratio: 75%; }

  /* Footer */
  .site-footer { padding: 3rem 0 1.5rem; }
  .site-footer .row.g-4 { --bs-gutter-y: 2rem; }
  .site-footer h4 { font-size: 0.95rem; margin-bottom: 0.9rem; }
  .footer-links li { font-size: 0.86rem; margin-bottom: 0.55rem; }
  .footer-about { font-size: 0.86rem; }
  .site-footer hr { margin: 1.5rem 0 1rem; }
  .copyright { font-size: 0.8rem; }

  /* Mobile sticky bar */
  .mobile-sticky-bar { padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom)); gap: 0.5rem; }
  .mobile-sticky-btn { padding: 0.75rem; font-size: 0.88rem; border-radius: 12px; }
}

/* --- Small Mobile (≤575px) — Bootstrap SM breakpoint --- */
@media (max-width: 575px) {
  .container { padding-left: 0.95rem; padding-right: 0.95rem; }

  /* Hero */
  .hero h1 { font-size: clamp(1.6rem, 8vw, 2rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .trust-badges { grid-template-columns: 1fr; gap: 0.5rem; }

  /* Services - single column for very small screens */
  .services-section .row > [class*="col-"] { width: 100%; flex: 0 0 100%; max-width: 100%; }
  .service-card { padding: 1.4rem 1.2rem; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
  .service-card .service-icon { margin: 0 0 0.9rem 0; }

  /* Why us - single column */
  .why-section .row > [class*="col-"] { width: 100%; flex: 0 0 100%; max-width: 100%; }
  .why-card { padding: 1.4rem 1.2rem; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }

  /* Process - single column */
  .process-section .row > [class*="col-"] { width: 100%; flex: 0 0 100%; max-width: 100%; }
  .process-step { text-align: left; display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem; }
  .process-step > div:nth-child(2) { flex: 1; }
  .step-number { margin-bottom: 0; font-size: 1.6rem; line-height: 1; min-width: 42px; text-align: center; }

  /* About tags - 2 columns */
  .about-tags > [class*="col-"] { width: 50%; flex: 0 0 50%; max-width: 50%; }

  /* Areas - 2 columns */
  .areas-grid > [class*="col-"] { width: 50%; flex: 0 0 50%; max-width: 50%; }

  /* Reviews - wider cards */
  .reviews-track { grid-auto-columns: 92%; }

  /* Pricing - buttons full width */
  .btn-outline-price, .price-card .btn-primary-cta { width: 100%; justify-content: center; display: inline-flex; }

  /* Contact form - single column */
  .contact-form .row > [class*="col-md-6"] { width: 100%; flex: 0 0 100%; max-width: 100%; }

  /* Footer - single column links */
  .site-footer .row > .col-6 { width: 50%; flex: 0 0 50%; max-width: 50%; }
  .site-footer .row > [class*="col-lg-4"],
  .site-footer .row > [class*="col-lg-3"],
  .site-footer .row > [class*="col-lg-2"] { width: 100%; flex: 0 0 100%; max-width: 100%; }
  .site-footer .row > .col-6:first-of-type { width: 100%; flex: 0 0 100%; max-width: 100%; }

  /* Floating buttons - smaller */
  .floating-buttons { right: 0.7rem; bottom: 4.8rem; gap: 0.55rem; }
  .float-btn { width: 46px; height: 46px; font-size: 1.15rem; }
}

/* --- Extra Small Mobile (≤400px) --- */
@media (max-width: 400px) {
  .container { padding-left: 0.85rem; padding-right: 0.85rem; }
  .brand-text { font-size: 0.92rem; }
  .custom-toggler { width: 40px; height: 40px; }
  .toggler-bar { width: 23px; }
  .hero h1 { font-size: 1.5rem; }
  .hero-sub { font-size: 0.9rem; }
  .section-heading h2 { font-size: 1.35rem; }
  .price { font-size: 1.6rem; }
  .mobile-menu-contact .btn { font-size: 0.88rem; padding: 0.8rem 0.85rem; }
  .areas-grid > [class*="col-"] { width: 100%; flex: 0 0 100%; max-width: 100%; }
  .area-chip { padding: 0.75rem; font-size: 0.9rem; }
}

/* --- Landcape Mobile (≤767px height) --- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding-top: 5.5rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero-text { padding-bottom: 1.5rem; }
  .hero-media .hero-img { aspect-ratio: 16/9; max-height: 300px; object-fit: cover; }
  .wave-divider { height: 35px; margin-top: 1.2rem; }
  .mobile-menu .offcanvas-body { overflow-y: auto; }
  .mobile-nav-list li a { padding: 0.7rem 0.5rem; font-size: 0.98rem; }
  .mobile-menu-contact { padding: 0.9rem 1.25rem; }
}

/* --- Fix iOS viewport bug --- */
@supports (-webkit-touch-callout: none) {
  .hero { min-height: 85vh; min-height: 85dvh; }
}

/* --- Fix overflow on horizontal scroll sections --- */
.reviews-track,
.areas-grid,
.services-section .row,
.why-section .row,
.pricing-section .row {
  overflow-x: hidden;
}
