:root {
  --bg: #EAEEF3;
  --hero-bg: #0F2A4D;
  --surface: #FFFFFF;
  --surface-soft: #E0E6EE;
  --border: #B9C6D6;
  --ink: #10151C;
  --ink-soft: #3E4956;
  --ink-faint: #6B7684;
  --blue: #123A6E;
  --blue-dark: #071C33;
  --blue-soft: #DCE7F6;
  --red: #8C211C;
  --red-dark: #5A120F;
  --red-soft: #F3DCDA;
  --mint: #E4F4EE;
  --mint-ink: #1E7A5C;
  --shadow: rgba(7, 28, 51, 0.14);
  --shadow-lg: rgba(7, 28, 51, 0.26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.55;
}
img, svg, iframe { max-width: 100%; }
a, p, h1, h2, h3 { overflow-wrap: break-word; word-break: break-word; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

:is(a, button, input, textarea, select):focus-visible {
  outline: 2.5px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

#services, #about, #reviews, #hours, #contact { scroll-margin-top: 88px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.wrap { max-width: 1120px; margin-inline: auto; padding-inline: 24px; }

h1, h2, h3 {
  font-family: "Baloo 2", ui-rounded, sans-serif;
  font-weight: 700;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(2.2rem, 4.2vw, 3.3rem); line-height: 1.12; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.2; margin-bottom: 12px; }
h3 { font-size: 1.18rem; margin-bottom: 6px; }
p { margin: 0 0 8px; color: var(--ink-soft); }

.accent-text { color: var(--blue); }

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-dark);
  background: var(--mint);
  padding: 7px 16px 7px 10px;
  border-radius: 999px;
  margin: 0 0 14px;
}
.pill-tag svg { flex-shrink: 0; }
.center .pill-tag { margin-inline: auto; }
.pill-tag-row { display: flex; justify-content: center; }

.center { text-align: center; }
.section-lede { max-width: 52ch; margin-inline: auto; margin-bottom: 44px; font-size: 1.03rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.97); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 8px 20px var(--shadow-lg); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-dark); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(234, 238, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 0 0 rgba(10, 38, 71, 0);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.logo em { font-style: normal; font-weight: 800; color: var(--red); }
.logo-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  background: #fff;
}
.mobile-menu { display: contents; }
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--blue-dark); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
}
.phone-link:hover { color: var(--blue-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  margin: -6px;
}
.nav-toggle:active { background: var(--surface-soft); }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: 64px 110px;
  background: radial-gradient(120% 100% at 100% 0%, #16375F 0%, var(--hero-bg) 55%, var(--blue-dark) 100%);
  overflow: hidden;
  color: #fff;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { color: #fff; }
.hero .accent-text { color: #8FB8EE; }
.hero .pill-tag { background: rgba(255,255,255,0.14); color: #fff; }
.hero-lede { font-size: 1.08rem; max-width: 46ch; margin-bottom: 28px; color: rgba(255,255,255,0.82); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero .btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.35); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.16); border-color: #fff; color: #fff; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-stat { display: flex; flex-direction: column; }
.trust-stat strong { font-family: "Baloo 2", sans-serif; font-size: 1.7rem; color: #fff; line-height: 1; }
.trust-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; }

.hero-photo-carousel {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(6, 20, 40, 0.45);
  animation: hero-frame-float 7s ease-in-out infinite;
}
.hero-photo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: hero-slide-fade 16s ease-in-out infinite;
}
@keyframes hero-slide-fade {
  0%, 5% { opacity: 1; transform: scale(1); }
  22% { opacity: 1; transform: scale(1.06); }
  27%, 100% { opacity: 0; transform: scale(1.06); }
}
@keyframes hero-frame-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.6deg); }
}
.hero-photo-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 26, 46, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.hero-photo-badge svg { color: var(--red); flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) {
  .hero-photo-carousel { animation: none; }
  .hero-photo-slide { animation: none; opacity: 0; }
  .hero-photo-slide:first-child { opacity: 1; }
}

.hero-card {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 20px 44px var(--shadow);
  max-width: 300px;
  margin-top: -40px;
  margin-inline: auto;
}
.hero-card-row { display: flex; align-items: center; gap: 14px; }
.hero-card-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--red-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-title { font-size: 0.8rem; color: var(--ink-faint); margin: 0; }
.hero-card-value { font-family: "Baloo 2", sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--ink); margin: 2px 0 0; }
.hero-card-divider { height: 1px; background: var(--border); margin: 18px 0; }
.hero-card-note { font-size: 0.86rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }

.wave-divider { display: block; width: 100%; line-height: 0; margin-top: -60px; position: relative; z-index: 0; }
.wave-divider svg { width: 100%; height: auto; display: block; }

/* ---------- Stat badge ---------- */
.stat-badge-row { display: flex; justify-content: center; margin-top: -46px; position: relative; z-index: 3; }
.stat-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--blue-dark);
  color: #fff;
  border-radius: 18px;
  padding: 18px 28px;
  box-shadow: 0 16px 36px var(--shadow-lg);
}
.stat-badge-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-badge strong { font-family: "Baloo 2", sans-serif; font-size: 1.4rem; display: block; line-height: 1; }
.stat-badge span { font-size: 0.8rem; color: rgba(255,255,255,0.8); }

/* ---------- Services ---------- */
.services { padding-block: 76px 88px; background: var(--surface-soft); }

.service-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 18px;
  flex: 1;
  scrollbar-width: none;
}
.service-track::-webkit-scrollbar { display: none; }
.service-card {
  flex: 0 0 auto;
  width: min(300px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px var(--shadow); }
.service-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card p { font-size: 0.92rem; margin: 0 0 18px; flex: 1; }

.btn-book {
  align-self: flex-start;
  background: var(--red-soft);
  color: var(--red-dark);
  padding: 9px 18px;
  font-size: 0.85rem;
}
.btn-book:hover { background: var(--red); color: #fff; }

.carousel-arrow {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.carousel-arrow:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 4px; }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: var(--border); padding: 0; cursor: pointer;
}
.carousel-dots button.active { background: var(--blue); width: 22px; border-radius: 5px; }

/* ---------- Booking modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 34, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--surface-soft);
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.modal-close:hover { background: var(--border); }
.modal h3 { margin-bottom: 4px; }
.modal-lede { font-size: 0.92rem; margin-bottom: 20px; }
.modal .form-row select {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  padding: 12px 13px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
}

/* ---------- Gallery ---------- */
.gallery { padding-block: 76px 88px; background: var(--surface-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 18px 36px var(--shadow-lg); }
.gallery-item { overflow: hidden; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  animation: gallery-ken-burns 14s ease-in-out infinite alternate;
}
.gallery-item:nth-child(2) img { animation-delay: -3.5s; }
.gallery-item:nth-child(3) img { animation-delay: -7s; }
.gallery-item:nth-child(4) img { animation-delay: -10.5s; }
@keyframes gallery-ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-item img { animation: none; }
}
.gallery-item figcaption {
  padding: 12px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.gallery-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-dark);
  text-decoration: none;
}
.gallery-more:hover { color: var(--blue); }

/* ---------- About & Team ---------- */
.about { padding-block: 88px; }
.about-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.about-checklist {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.about-checklist svg { flex-shrink: 0; color: var(--blue); }

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 16px 40px var(--shadow);
}
.team-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--blue-soft);
  display: block;
}
.team-card h3 { margin-bottom: 2px; }
.team-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.team-note { font-size: 0.9rem; margin: 0; }

/* ---------- Reviews ---------- */
.reviews { padding-block: 76px; }
.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.rating-big { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.rating-number { font-family: "Baloo 2", sans-serif; font-size: 3rem; font-weight: 700; color: var(--ink); line-height: 1; }
.rating-stars { color: var(--red); font-size: 1.5rem; letter-spacing: 2px; }
.rating-count { font-size: 0.9rem; color: var(--ink-faint); }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 999px;
  margin-top: 6px;
}

.contact-method-static { cursor: default; }
.contact-method-static:hover { color: var(--ink); }

/* ---------- Hours & Location ---------- */
.hours { padding-block: 88px; background: var(--blue-dark); color: #fff; }
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.hours h2, .location-card h2 { color: #fff; }
.hours-card, .location-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 32px;
}
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.88); font-size: 0.96rem; }
.hours-table td:last-child { text-align: right; font-weight: 700; color: #fff; }
.hours-table tr:last-child td { border-bottom: none; }
.emergency-note {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px; padding: 12px 14px;
  background: rgba(196,48,43,0.2);
  border-radius: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.92);
}
.emergency-note a { color: #fff; font-weight: 700; text-decoration: underline; }
.address { font-size: 1.05rem; color: #fff; line-height: 1.5; }
.map-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid rgba(255,255,255,0.16);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-card .btn-ghost { border-color: rgba(255,255,255,0.4); background: transparent; color: #fff; margin-top: 20px; }
.location-card .btn-ghost:hover { border-color: #fff; }

/* ---------- CTA banner ---------- */
.cta-banner { padding-block: 64px; }
.cta-banner-inner {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue) 70%);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  color: #fff;
}
.cta-banner-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 26px; }
.cta-banner .btn-ghost { background: #fff; color: var(--blue-dark); border-color: #fff; }
.cta-banner .btn-ghost:hover { background: var(--surface-soft); }

/* ---------- Contact ---------- */
.contact { padding-block: 76px 88px; }
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.contact-method {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none; font-weight: 700; font-size: 0.98rem;
}
.contact-method:hover { color: var(--blue-dark); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 32px var(--shadow);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row label { font-size: 0.84rem; font-weight: 700; color: var(--ink); }
.form-row input, .form-row textarea {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  padding: 12px 13px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--blue); background: var(--surface); }
.form-status { min-height: 1.2em; font-size: 0.88rem; color: var(--blue-dark); font-weight: 700; margin: 12px 0 0; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-block: 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-brand span { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; }
.footer-brand em { font-style: normal; font-weight: 800; color: var(--red); }
.footer-brand p { font-size: 0.84rem; margin: 4px 0 0; color: rgba(255,255,255,0.55); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.88rem; }
.footer-links a:hover { color: #fff; }
.footer-social {
  color: rgba(255,255,255,0.75);
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-social:hover { color: #fff; border-color: #fff; }
.footer-copyright { width: 100%; font-size: 0.78rem; color: rgba(255,255,255,0.4); margin: 20px 0 0; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  z-index: 60;
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  transition: transform 0.15s ease, opacity 0.25s ease;
}
.whatsapp-fab.visible { opacity: 1; transform: scale(1); pointer-events: auto; }
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab:active { transform: scale(0.96); }
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab { transition: opacity 0.25s ease; }
}
.whatsapp-fab-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab-ring { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner, .contact-inner, .about-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; flex-direction: column; gap: 24px; }
  .hero-photo-carousel { max-width: 220px; }
  .hero-card { max-width: 100%; margin-top: 0; }
  .hours-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-badge-row { margin-top: 24px; }
  .wave-divider { display: none; }
}
@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
  }
  .main-nav {
    flex-direction: column;
    padding: 16px 24px 0;
    gap: 16px;
  }
  .header-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 20px;
    gap: 12px;
  }
  .site-header.nav-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
@media (max-width: 560px) {
  .hero-trust { gap: 22px; }
  .cta-banner-inner { padding: 36px 22px; }
  .stat-badge { flex-direction: column; text-align: center; padding: 20px 26px; }
  .carousel-arrow { width: 36px; height: 36px; }
  .whatsapp-fab { width: 50px; height: 50px; right: 16px; bottom: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }

  /* Tighter vertical rhythm — desktop-sized section padding reads as
     bloated on a phone screen where every scroll costs more. */
  .hero { padding-block: 40px 72px; }
  .services { padding-block: 52px 60px; }
  .gallery { padding-block: 52px 60px; }
  .about { padding-block: 56px; }
  .reviews { padding-block: 52px; }
  .hours { padding-block: 56px; }
  .cta-banner { padding-block: 44px; }
  .contact { padding-block: 52px 60px; }
  .site-footer { padding-block: 32px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section-lede { margin-bottom: 32px; }
}
