/* ==========================================================
   Sale Plumbers Pro — styles.css
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --bg:            hsl(204, 33%, 97%);
  --fg:            hsl(222, 47%, 11%);
  --card:          hsl(0, 0%, 100%);
  --muted:         hsl(204, 30%, 94%);
  --muted-fg:      hsl(215, 16%, 47%);
  --border:        hsl(199, 30%, 88%);

  --primary:       hsl(199, 92%, 74%);
  --secondary:     hsl(199, 90%, 60%);
  --accent:        hsl(217, 91%, 60%);
  --accent-fg:     hsl(0, 0%, 100%);

  --water-light:   hsl(199, 92%, 92%);
  --water-medium:  hsl(199, 92%, 74%);
  --water-dark:    hsl(199, 90%, 60%);

  --navy:          hsl(222, 47%, 11%);
  --navy-mid:      hsl(222, 47%, 18%);
  --navy-fg:       hsl(210, 40%, 98%);

  --destructive:   hsl(0, 84%, 60%);

  --radius:        0.75rem;
  --radius-lg:     1.25rem;
  --radius-xl:     1.5rem;
  --radius-full:   9999px;

  --shadow-sm: 0 1px 3px hsl(222 47% 11% / 0.06), 0 1px 2px hsl(222 47% 11% / 0.04);
  --shadow-md: 0 4px 16px hsl(222 47% 11% / 0.08), 0 2px 6px hsl(222 47% 11% / 0.04);
  --shadow-lg: 0 12px 36px hsl(222 47% 11% / 0.11), 0 4px 12px hsl(222 47% 11% / 0.05);
  --shadow-xl: 0 24px 60px hsl(222 47% 11% / 0.14), 0 8px 20px hsl(222 47% 11% / 0.07);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font: inherit; background: none; border: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-sm { padding-block: clamp(3rem, 5vw, 5rem); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.max-w-2xl { max-width: 42rem; margin-inline: auto; }
.max-w-3xl { max-width: 52rem; margin-inline: auto; }

/* ── Gradients / Backgrounds ─────────────────────────────── */
.water-gradient {
  background: linear-gradient(135deg, hsl(199 92% 88%) 0%, hsl(199 92% 74%) 100%);
}
.water-gradient-dark {
  background: linear-gradient(135deg, hsl(199 90% 55%) 0%, hsl(217 91% 55%) 100%);
}
.navy-gradient {
  background: linear-gradient(135deg, hsl(222 47% 11%) 0%, hsl(222 47% 18%) 100%);
}
.bg-card   { background: var(--card); }
.bg-muted  { background: var(--muted); }
.bg-water-light { background: hsl(199 92% 92% / 0.35); }

/* ── Section heading ─────────────────────────────────────── */
.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-heading h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  color: var(--fg);
  margin-bottom: 0.875rem;
}
.section-heading h2.light { color: var(--navy-fg); }
.section-heading p {
  color: var(--muted-fg);
  max-width: 520px;
  margin-inline: auto;
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle, hsl(199 92% 74% / 0.35) 0%, transparent 70%);
  transform: scale(0);
  transition: opacity 0.5s, transform 0.5s;
}
.btn:hover::after { opacity: 1; transform: scale(2.5); }
.btn-accent {
  background: var(--accent);
  color: var(--accent-fg);
  box-shadow: 0 4px 18px hsl(217 91% 60% / 0.32);
}
.btn-accent:hover { background: hsl(217 91% 53%); transform: translateY(-1px); box-shadow: 0 8px 28px hsl(217 91% 60% / 0.4); }
.btn-outline-light {
  background: transparent;
  color: var(--navy-fg);
  border: 2px solid hsl(0 0% 100% / 0.35);
}
.btn-outline-light:hover { background: hsl(0 0% 100% / 0.1); border-color: hsl(0 0% 100% / 0.55); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy-fg);
  border: 2px solid hsl(210 40% 98% / 0.28);
}
.btn-outline-navy:hover { background: hsl(210 40% 98% / 0.1); }
.btn-card {
  background: var(--card);
  color: var(--fg);
  box-shadow: var(--shadow-lg);
}
.btn-card:hover { background: hsl(0 0% 97%); transform: translateY(-1px); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.82rem; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--card);
  border-radius: var(--radius-xl);
  border: 1px solid hsl(199 30% 88% / 0.6);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.card-body { padding: 2rem; }

/* icon box */
.icon-box {
  width: 3.5rem; height: 3.5rem;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.icon-box.water { background: linear-gradient(135deg, hsl(199 92% 88%), hsl(199 92% 74%)); }
.icon-box svg { width: 1.6rem; height: 1.6rem; color: var(--fg); }
.card:hover .icon-box { transform: scale(1.1); }

/* ── HEADER ──────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
#header.scrolled {
  background: hsl(204 33% 97% / 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px hsl(222 47% 11% / 0.07);
  border-bottom: 1px solid hsl(199 92% 74% / 0.12);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
}
.nav-logo svg { color: var(--accent); transition: transform 0.3s; }
.nav-logo:hover svg { transform: scale(1.12); }
.nav-logo .logo-accent { color: var(--accent); }

/* Desktop nav */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(222 47% 11% / 0.72);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--accent); background: hsl(217 91% 60% / 0.07); }
.nav-links a.active { color: var(--accent); background: hsl(217 91% 60% / 0.1); }

.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-quote { display: none; }
.nav-quote a {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--accent-fg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-quote a:hover { background: hsl(217 91% 53%); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem; height: 2.25rem;
  padding: 0.25rem;
  color: var(--fg);
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--muted); }
.nav-hamburger span {
  display: block; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger span:nth-child(2) { width: 75%; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-nav {
  display: none;
  background: hsl(204 33% 97% / 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  animation: slideDown 0.25s ease;
}
#mobile-nav.open { display: block; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0.75rem clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.mobile-nav-inner a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(222 47% 11% / 0.75);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav-inner a:hover { background: var(--muted); color: var(--fg); }
.mobile-nav-inner a.active { background: hsl(217 91% 60% / 0.1); color: var(--accent); font-weight: 700; }
.mobile-nav-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
}
.mobile-nav-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border-radius: var(--radius-full);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
}
.mobile-cta-primary { background: var(--accent); color: var(--accent-fg); }
.mobile-cta-outline { border: 1.5px solid var(--accent); color: var(--accent); }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-quote { display: block; }
  .nav-hamburger { display: none; }
  #mobile-nav { display: none !important; }
}

/* ── HERO (homepage) ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 93vh;
  min-height: min(93vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    hsl(222 47% 11% / 0.62) 0%,
    hsl(222 47% 11% / 0.42) 40%,
    hsl(222 47% 11% / 0.68) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-inline: 1rem;
  padding-top: 5rem;
  max-width: 60rem;
  margin-inline: auto;
  width: 100%;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--navy-fg);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease-out both;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: hsl(0 0% 100% / 0.8);
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.7s ease-out 0.4s both;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.25rem;
  font-size: 0.82rem;
  color: hsl(0 0% 100% / 0.7);
  animation: fadeInUp 0.7s ease-out 0.6s both;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-trust svg { color: var(--water-medium); }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(199 92% 88%) 0%, hsl(199 92% 74%) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-inline: 1rem;
  padding-top: 5rem;
  padding-bottom: 2rem;
  max-width: 48rem;
  margin-inline: auto;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--fg);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: hsl(222 47% 11% / 0.68);
  line-height: 1.75;
}

/* Emergency page hero (dark) */
.emergency-hero {
  background: linear-gradient(135deg, hsl(199 90% 55%) 0%, hsl(217 91% 55%) 100%);
}
.emergency-hero h1,
.emergency-hero p { color: var(--navy-fg); }
.emergency-hero p { color: hsl(0 0% 100% / 0.82); }

/* ── Water drops animation ───────────────────────────────── */
.water-drops {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.water-drop {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: fallDrop linear infinite;
}
@keyframes fallDrop {
  0%   { transform: translateY(-60px); opacity: 0; }
  8%   { opacity: 0.18; }
  90%  { opacity: 0.18; }
  100% { transform: translateY(110vh); opacity: 0; }
}
/* Float variant (for page sections) */
@keyframes floatDrop {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.12; }
  50%       { transform: translateY(-18px) scale(1.08); opacity: 0.26; }
}

/* ── TWO COL ─────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 4.5rem; } }
.two-col h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.two-col p { color: var(--muted-fg); line-height: 1.8; margin-bottom: 1rem; }
.two-col-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.two-col-img img { width: 100%; height: clamp(18rem, 35vw, 26rem); object-fit: cover; }

/* ── Service cards grid ──────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card-top { display: flex; align-items: flex-start; gap: 1.25rem; }
.service-card h3 {
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 0.35rem;
}
.service-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.75; }
.service-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}
.service-link:hover { gap: 0.6rem; color: hsl(217 91% 50%); }

/* Services page — horizontal cards */
.services-list { display: flex; flex-direction: column; gap: 1.5rem; }
.service-list-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
}
@media (min-width: 640px) { .service-list-card { display: grid; grid-template-columns: auto 1fr; } }
.service-list-card h3 { font-size: 1.1rem; color: var(--fg); margin-bottom: 0.5rem; }
.service-list-card p { font-size: 0.9rem; color: var(--muted-fg); line-height: 1.8; margin-bottom: 1rem; }

/* ── Emergency cards ─────────────────────────────────────── */
.emergency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) { .emergency-grid { grid-template-columns: repeat(4, 1fr); } }
.emergency-card { padding: 1.75rem; text-align: center; }
.emergency-card h3 { font-size: 1rem; color: var(--fg); margin-bottom: 0.5rem; }
.emergency-card p { font-size: 0.85rem; color: var(--muted-fg); line-height: 1.7; }

/* ── Process steps ───────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px)  { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step { text-align: center; position: relative; }
.step-num {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--fg);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, hsl(199 92% 88%), hsl(199 92% 74%));
}
.step-connector {
  display: none;
  position: absolute;
  top: 2rem;
  left: 60%; width: 80%;
  height: 1px;
  background: linear-gradient(to right, hsl(199 92% 74% / 0.5), transparent);
}
@media (min-width: 1024px) { .step-connector { display: block; } }
.step h3 { font-size: 0.95rem; color: var(--fg); margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--muted-fg); line-height: 1.75; }

/* ── Why choose grid ─────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(5, 1fr); } }
.why-card { padding: 1.5rem; text-align: center; }
.why-card h3 { font-size: 0.875rem; color: var(--fg); margin-top: 0.875rem; line-height: 1.4; }

/* ── Testimonials ─────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card { padding: 2rem; }
.testi-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: var(--water-dark); }
.testi-stars svg { width: 1.1rem; height: 1.1rem; fill: currentColor; }
.testi-text { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.85; font-style: italic; margin-bottom: 1.25rem; }
.testi-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.875rem; color: var(--fg); }

/* ── Area pills / cards ──────────────────────────────────── */
.area-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.875rem; margin-bottom: 2.5rem; }
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--card);
  border: 1px solid hsl(199 30% 88% / 0.7);
  box-shadow: var(--shadow-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fg);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
}
.area-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent); color: var(--accent); }
.area-pill svg { color: var(--accent); }

.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px)  { .areas-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card { padding: 1.5rem; }
.area-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.area-card-header svg { color: var(--accent); }
.area-card-header h3 { font-size: 1rem; color: var(--fg); }
.area-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.75; }

/* ── About values ────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card { padding: 2rem; text-align: center; }
.value-card h3 { font-size: 0.95rem; color: var(--fg); margin: 0.875rem 0 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--muted-fg); line-height: 1.7; }

/* Stats bar */
.stats-bar {
  background: var(--muted);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 4rem;
  text-align: center;
  margin-top: 5rem;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.stat-label { font-size: 0.85rem; color: var(--muted-fg); margin-top: 0.25rem; display: block; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.875rem; }
details.faq {
  background: var(--card);
  border: 1px solid hsl(199 30% 88% / 0.6);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
details.faq:hover { border-color: hsl(217 91% 60% / 0.3); }
details.faq[open] { box-shadow: var(--shadow-md); border-color: hsl(217 91% 60% / 0.25); }
details.faq summary {
  list-style: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
}
details.faq summary::-webkit-details-marker { display: none; }
.faq-chevron { color: var(--muted-fg); flex-shrink: 0; transition: transform 0.3s, color 0.2s; }
details.faq[open] .faq-chevron { transform: rotate(90deg); color: var(--accent); }
.faq-answer { margin-top: 1rem; font-size: 0.9rem; color: var(--muted-fg); line-height: 1.85; }

/* ── Emergency CTA band ───────────────────────────────────── */
.emergency-band {
  position: relative;
  padding-block: clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
}
.emergency-band .band-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.emergency-band h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  color: var(--accent-fg);
  margin-bottom: 1.25rem;
}
.emergency-band p {
  color: hsl(0 0% 100% / 0.78);
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ── Navy CTA ─────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding-block: clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
}
.cta-section .cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
.cta-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  color: var(--navy-fg);
  margin-bottom: 1rem;
}
.cta-section p {
  color: hsl(210 40% 98% / 0.65);
  margin-bottom: 2.75rem;
  line-height: 1.75;
  font-size: 1.02rem;
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* What to expect box */
.expect-box {
  background: var(--muted);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 46rem;
  margin: 0 auto;
}
.expect-box h3 {
  font-size: 1.2rem;
  color: var(--fg);
  text-align: center;
  margin-bottom: 1.5rem;
}
.expect-list { display: flex; flex-direction: column; gap: 1rem; }
.expect-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.expect-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.expect-item p { font-size: 0.9rem; color: var(--muted-fg); line-height: 1.75; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-form-card { padding: 2.5rem; }
.contact-form-card h2 { font-size: 1.5rem; color: var(--fg); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  display: block;
  width: 100%;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px hsl(217 91% 60% / 0.14);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info h2 { font-size: 1.5rem; color: var(--fg); margin-bottom: 1rem; }
.contact-info > p { color: var(--muted-fg); line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  background: hsl(199 92% 92% / 0.32);
  border: 1px solid hsl(199 92% 74% / 0.18);
  margin-bottom: 0.875rem;
  transition: background 0.2s;
}
.contact-detail:hover { background: hsl(199 92% 92% / 0.55); }
.contact-detail .contact-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, hsl(199 92% 88%), hsl(199 92% 74%));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--fg);
}
.contact-detail .detail-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--fg);
  display: block;
  margin-bottom: 0.2rem;
}
.contact-detail .detail-value {
  font-size: 0.875rem;
  color: var(--muted-fg);
  white-space: pre-line;
  line-height: 1.6;
}
.contact-detail .detail-value a { color: var(--accent); transition: color 0.2s; }
.contact-detail .detail-value a:hover { color: hsl(217 91% 50%); }
.map-wrap {
  margin-top: 4rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Toast ────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  max-width: 300px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--fg); margin-bottom: 0.2rem; }
.toast-desc  { font-size: 0.82rem; color: var(--muted-fg); }

/* ── FOOTER ───────────────────────────────────────────────── */
#footer { background: linear-gradient(135deg, hsl(222 47% 11%), hsl(222 47% 18%)); color: var(--navy-fg); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: 2.5rem;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1.2fr; } }
.footer-brand-logo {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
.footer-brand-logo svg { color: var(--water-medium); }
.footer-brand-logo .logo-accent { color: var(--water-medium); }
.footer-desc { font-size: 0.875rem; color: hsl(0 0% 100% / 0.55); line-height: 1.75; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.footer-col nav { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col nav a { font-size: 0.875rem; color: hsl(0 0% 100% / 0.55); transition: color 0.2s; }
.footer-col nav a:hover { color: var(--water-medium); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: hsl(0 0% 100% / 0.55); }
.footer-contact-list svg { color: var(--water-medium); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-block: 1.5rem;
  border-top: 1px solid hsl(0 0% 100% / 0.09);
  text-align: center;
  font-size: 0.82rem;
  color: hsl(0 0% 100% / 0.35);
}

/* ── Scroll reveal ────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: sectionFadeIn 0.7s ease-out both;
    animation-play-state: paused;
  }
  .reveal.in-view { animation-play-state: running; }
  .reveal-d1 { animation-delay: 0.1s; }
  .reveal-d2 { animation-delay: 0.2s; }
  .reveal-d3 { animation-delay: 0.3s; }
  .reveal-d4 { animation-delay: 0.4s; }
  @keyframes sectionFadeIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ── Bounce alert icon ────────────────────────────────────── */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.float-icon { animation: floatIcon 2.5s ease-in-out infinite; }
