/* ============================================
   AquaPro — Drain cleaning landing page
   Aesthetic: confident, professional, urgent
   Palette: deep navy + ivory + urgent amber
   ============================================ */

:root {
  /* Colors */
  --navy-900: #0a1f3d;
  --navy-800: #122a4d;
  --navy-700: #1e3a5f;
  --navy-600: #2c4a78;

  --ivory: #faf7f2;
  --cream: #f5efe6;
  --paper: #fdfbf7;

  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-light: #fbbf24;

  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-900: #0f172a;

  --green-500: #10b981;
  --red-500: #ef4444;

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing rhythm */
  --container: 1200px;
  --gutter: clamp(1rem, 3vw, 2rem);

  /* Effects */
  --shadow-soft: 0 4px 20px -4px rgb(10 31 61 / 0.12);
  --shadow-strong: 0 20px 60px -15px rgb(10 31 61 / 0.35);
  --shadow-amber: 0 10px 30px -8px rgb(245 158 11 / 0.5);

  --radius: 14px;
  --radius-lg: 24px;
}

/* ============================================
   Reset & base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Sticky urgency bar */
.urgency-bar {
  background: var(--navy-900);
  color: var(--ivory);
  font-size: 14px;
  padding: 8px 16px;
  text-align: center;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}
.urgency-bar__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.urgency-bar__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgb(34 197 94 / 0.7);
  animation: pulse-dot 2s infinite;
}
.urgency-bar strong { color: var(--amber-light); }

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgb(34 197 94 / 0.7); }
  70% { box-shadow: 0 0 0 10px rgb(34 197 94 / 0); }
  100% { box-shadow: 0 0 0 0 rgb(34 197 94 / 0); }
}

/* ============================================
   Header
   ============================================ */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid rgb(10 31 61 / 0.08);
  position: sticky;
  top: 33px;
  z-index: 90;
  backdrop-filter: saturate(180%) blur(8px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo__mark {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  background: var(--navy-900);
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}
.logo__text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
  color: var(--navy-900);
}
.logo__text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-900);
  color: var(--ivory);
  padding: 11px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s, background .2s;
}
.header-phone:hover { background: var(--amber); color: var(--navy-900); transform: translateY(-1px); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--amber);
  color: var(--navy-900);
  box-shadow: var(--shadow-amber);
}
.btn--primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -8px rgb(245 158 11 / 0.6);
}
.btn--secondary {
  background: var(--navy-900);
  color: var(--ivory);
}
.btn--secondary:hover { background: var(--navy-800); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border: 2px solid rgb(255 255 255 / 0.3);
}
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn--large {
  padding: 18px 28px;
  font-size: 17px;
}
.btn--block { width: 100%; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--ivory);
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 80px);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px circle at 90% 10%, rgb(245 158 11 / 0.15), transparent 50%),
    radial-gradient(600px circle at 10% 80%, rgb(245 158 11 / 0.08), transparent 50%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 1.2fr 1fr; gap: 64px; }
}

.hero__content { animation: fadeUp .8s ease both; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgb(245 158 11 / 0.12);
  border: 1px solid rgb(245 158 11 / 0.3);
  color: var(--amber-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 24px;
}
.hero__badge-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  animation: pulse-dot 2s infinite;
  box-shadow: 0 0 0 0 rgb(245 158 11 / 0.7);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ivory);
}
.hero__title-lead {
  display: block;
}
.hero__city {
  display: block;
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber) 60%, var(--amber-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 600;
  position: relative;
}
.hero__title-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 19px);
  letter-spacing: 0;
  color: rgb(255 255 255 / 0.75);
  margin-top: 14px;
  line-height: 1.4;
}
.hero__title-sub strong { color: var(--amber-light); font-weight: 700; }

.hero__lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgb(255 255 255 / 0.8);
  max-width: 56ch;
  margin: 0 0 32px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__trust {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  font-size: 14px;
  color: rgb(255 255 255 / 0.85);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__trust svg { color: var(--green-500); flex-shrink: 0; }

/* Hero visual card (replaces the form) */
.hero__visual {
  animation: fadeUp .8s .15s ease both;
}
.hero__visual-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}
.hero__visual-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--amber);
  color: var(--navy-900);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-amber);
  z-index: 2;
}
.hero__visual-card svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
}
.hero__visual-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgb(10 31 61 / 0.08);
}
.hero__visual-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}
.hero__visual-stats strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--navy-900);
  letter-spacing: -.02em;
  line-height: 1;
}
.hero__visual-stats span {
  font-size: 12px;
  color: var(--slate-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* Map / area illustration container (truck instead of map) */
.area__map svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Trust strip
   ============================================ */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid rgb(10 31 61 / 0.06);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 32px 0;
}
@media (min-width: 720px) {
  .trust-strip__inner { grid-template-columns: repeat(4, 1fr); }
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.trust-strip__item strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--navy-900);
  letter-spacing: -.02em;
}
.trust-strip__item span {
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 500;
}

/* ============================================
   Section heads
   ============================================ */
section { padding: clamp(56px, 8vw, 96px) 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.section-head--light { color: var(--ivory); }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 14px;
}
.section-head--light .eyebrow { color: var(--amber-light); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--navy-900);
}
.section-head--light .section-title { color: var(--ivory); }
.section-title span { font-style: italic; color: var(--amber-dark); font-weight: 600; }
.section-head--light .section-title span { color: var(--amber-light); }
.section-lede {
  font-size: 17px;
  color: var(--slate-500);
  margin: 0;
}

/* ============================================
   Services
   ============================================ */
.services { background: var(--paper); }
.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service-card {
  background: var(--cream);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: var(--shadow-soft);
}
.service-card__icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--amber);
  margin-bottom: 18px;
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--navy-900);
  letter-spacing: -.01em;
}
.service-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate-700);
  margin: 0;
}

/* ============================================
   Process — dark band
   ============================================ */
.process {
  background:
    radial-gradient(600px circle at 80% 20%, rgb(245 158 11 / 0.08), transparent 50%),
    var(--navy-900);
  color: var(--ivory);
}
.process-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.process-list li {
  background: rgb(255 255 255 / 0.04);
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.process-list__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 44px;
  color: var(--amber);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  letter-spacing: -.04em;
}
.process-list h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 6px;
}
.process-list p {
  font-size: 14px;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.7);
  margin: 0;
}
.process-list strong { color: var(--amber-light); }

/* ============================================
   Testimonials
   ============================================ */
.testimonials { background: var(--cream); }
.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 14px;
  color: var(--slate-700);
}
.rating-summary__stars {
  color: var(--amber);
  letter-spacing: 1.5px;
  font-size: 18px;
}
.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
  border: 1px solid rgb(10 31 61 / 0.06);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -8px; left: 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 90px;
  line-height: 1;
  color: var(--amber);
  opacity: 0.3;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  color: var(--navy-900);
  margin: 0 0 18px;
  font-style: italic;
}
.testimonial figcaption {
  font-size: 14px;
  color: var(--slate-500);
}
.testimonial figcaption strong { color: var(--navy-900); display: block; font-size: 15px; }

/* ============================================
   Service area
   ============================================ */
.area { background: var(--paper); }
.area__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 880px) {
  .area__inner { grid-template-columns: 1.1fr 1fr; }
}
.area__text .eyebrow { text-align: left; }
.area__text .section-title { text-align: left; }
.area__text p { font-size: 17px; color: var(--slate-700); line-height: 1.65; }
.area__list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}
.area__list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px;
  color: var(--slate-700);
  font-weight: 500;
}
.area__list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}
.area__map {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--cream); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list details {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid rgb(10 31 61 / 0.06);
  padding: 20px 24px;
  transition: box-shadow .2s, border-color .2s;
}
.faq-list details[open] {
  border-color: var(--amber);
  box-shadow: var(--shadow-soft);
}
.faq-list summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 28px;
  color: var(--amber);
  line-height: 1;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-700);
}
.faq-list details p strong { color: var(--navy-900); }

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
  background:
    radial-gradient(800px circle at 50% 0%, rgb(245 158 11 / 0.18), transparent 60%),
    var(--navy-900);
  color: var(--ivory);
  text-align: center;
}
.final-cta__inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -.02em;
}
.final-cta__inner h2 span { color: var(--amber-light); font-style: italic; font-weight: 600; }
.final-cta__inner p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 17px;
  color: rgb(255 255 255 / 0.78);
  line-height: 1.6;
}
.final-cta__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   Mobile sticky call button
   ============================================ */
.mobile-call-cta {
  display: none;
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 95;
  background: var(--amber);
  color: var(--navy-900);
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 15px;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px -8px rgb(245 158 11 / 0.6), 0 4px 12px rgb(0 0 0 / 0.2);
  animation: bobUp 2.4s ease-in-out infinite;
}
@keyframes bobUp {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}
@media (max-width: 760px) {
  .mobile-call-cta { display: inline-flex; }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   Mobile adjustments
   ============================================ */
@media (max-width: 600px) {
  .urgency-bar { font-size: 12.5px; padding: 7px 12px; }
  .site-header__inner { gap: 12px; }
  .logo__text { font-size: 17px; }
  .logo__text small { font-size: 10px; }
  .header-phone span { display: none; }
  .header-phone { padding: 10px 12px; }
  .hero__visual-card { padding: 20px; }
  body { padding-bottom: 80px; } /* room for mobile CTA */
}
