/* =========================================================
   BLUEWAVE PRESSURE WASHING
   Customize most colors here.
   ========================================================= */
:root {
  --blue-900: #082a4a;
  --blue-700: #0b5ea8;
  --blue-500: #1689d8;
  --blue-100: #eaf6ff;
  --white: #ffffff;
  --ink: #102231;
  --muted: #667786;
  --border: #dbe7ef;
  --surface: #f7fbfe;
  --success: #1f8f5f;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(8, 42, 74, 0.12);
  --max-width: 1180px;
}

/* Change the font here if you want a different site-wide font. */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a { color: inherit; }

.container {
  width: min(calc(100% - 36px), var(--max-width));
  margin-inline: auto;
}

.section { padding: 78px 0; }
.section-sm { padding: 48px 0; }

.eyebrow {
  color: var(--blue-700);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  margin-bottom: 10px;
}

h1, h2, h3 {
  line-height: 1.1;
  color: var(--blue-900);
  margin-top: 0;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.3rem); margin-bottom: 20px; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 700px;
}

.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
  transition: .2s ease;
  cursor: pointer;
  font: inherit;
}

.btn-primary {
  background: var(--blue-700);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-900);
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--blue-900);
  border-color: var(--blue-700);
  background: var(--white);
}

.btn-outline:hover {
  background: var(--blue-100);
}

.btn-white {
  background: var(--white);
  color: var(--blue-900);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  color: var(--blue-900);
  font-size: 1.14rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50% 50% 50% 12px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-900));
  box-shadow: 0 7px 18px rgba(11,94,168,.22);
}

.logo span:last-child { white-space: nowrap; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: .94rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-700);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  color: var(--blue-900);
}

/* HERO */
.hero {
  padding: 86px 0 68px;
  background:
    radial-gradient(circle at 85% 15%, rgba(22,137,216,.20), transparent 25%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}

.hero-card {
  border-radius: 32px;
  overflow: hidden;
  min-height: 520px;
  position: relative;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(8,42,74,.05), rgba(8,42,74,.55)),
    url('images/hero-pressure-washing.jpg') center/cover no-repeat,
    linear-gradient(135deg, var(--blue-100), #bfe5ff);
}

.hero-card::after {
  content: "Replace images/hero-pressure-washing.jpg with your own photo";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.88);
  color: var(--blue-900);
  font-size: .8rem;
  font-weight: 700;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.badge {
  background: var(--blue-100);
  color: var(--blue-900);
  border: 1px solid #cae8fb;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: .88rem;
}

/* CARDS + GRIDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 26px rgba(8,42,74,.06);
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-100);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.surface { background: var(--surface); }

.feature-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--success);
  font-weight: 900;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stat {
  text-align: center;
  border: 1px solid var(--border);
  padding: 22px 14px;
  border-radius: 16px;
  background: var(--white);
}

.stat strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.7rem;
}

/* PAGE HERO */
.page-hero {
  padding: 82px 0;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
}

.page-hero h1,
.page-hero h2 { color: var(--white); }

.page-hero .lead { color: #d9efff; }

/* BEFORE/AFTER */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8,42,74,.08);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}

.ba-placeholder {
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  font-weight: 900;
  color: var(--blue-900);
  background: linear-gradient(135deg, #dff2ff, #f7fbfe);
}

.ba-placeholder.after {
  background: linear-gradient(135deg, #bde5ff, #eaf7ff);
}

.ba-content { padding: 22px; }

/* QUOTE / CONTACT */
.quote-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full { grid-column: 1 / -1; }

label {
  font-weight: 800;
  color: var(--blue-900);
  font-size: .9rem;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #cbdbe7;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(22,137,216,.15);
  border-color: var(--blue-500);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

/* CTA */
.cta {
  border-radius: 28px;
  padding: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-500));
  box-shadow: var(--shadow);
}

.cta h2, .cta p { color: var(--white); }
.cta p { opacity: .9; }

/* FOOTER */
footer {
  background: #061d32;
  color: #dceaf4;
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

footer h3 { color: var(--white); }
footer a { color: #dceaf4; text-decoration: none; }
footer a:hover { color: var(--white); }

.footer-links {
  display: grid;
  gap: 8px;
}

.copyright {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #98b0c1;
  font-size: .9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid,
  .quote-wrap,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card { min-height: 400px; }

  .nav-toggle { display: block; cursor: pointer; }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
}

@media (max-width: 620px) {
  .section { padding: 58px 0; }
  .hero { padding-top: 54px; }

  .grid-3,
  .stats,
  .ba-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .field.full { grid-column: auto; }
  .cta { padding: 30px 22px; }
}


/* =========================================================
   IDLEWILD EXTERIORS — V2 ENHANCEMENTS
   ========================================================= */

.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-lockup strong {
  font-size: 1.08rem;
  letter-spacing: -.02em;
}

.brand-lockup small {
  margin-top: 5px;
  color: var(--blue-700);
  font-size: .68rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-weight: 800;
}

.logo-mark.idlewild {
  position: relative;
  transform: none;
  border-radius: 14px 14px 18px 18px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--blue-500), var(--blue-900));
}

.logo-mark.idlewild::before,
.logo-mark.idlewild::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
}

.logo-mark.idlewild::before { top: 12px; transform: rotate(-8deg); }
.logo-mark.idlewild::after { top: 22px; transform: rotate(8deg); opacity: .75; }

.hero h1 .accent {
  color: var(--blue-700);
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-strip-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 18px;
  text-align: center;
  font-weight: 800;
  color: var(--blue-900);
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(8,42,74,.06);
}

.stars {
  color: #f2aa00;
  letter-spacing: .08em;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-card blockquote {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.02rem;
}

.review-meta {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: stretch;
}

.area-card {
  background:
    radial-gradient(circle at 15% 20%, rgba(22,137,216,.15), transparent 24%),
    linear-gradient(135deg, #f7fbfe, #e9f7ff);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
}

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.city-chip {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid #cfe3f1;
  color: var(--blue-900);
  font-weight: 800;
  font-size: .9rem;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-top: 30px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--blue-900);
}

.faq details p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Before / After slider */
.compare {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dceef9;
  border-bottom: 1px solid var(--border);
}

.compare img,
.compare .compare-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  font-weight: 900;
  color: var(--blue-900);
  background: linear-gradient(135deg, #dcefff, #f8fcff);
}

.compare-after {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid rgba(255,255,255,.95);
  box-shadow: 6px 0 16px rgba(0,0,0,.12);
}

.compare-after .compare-placeholder {
  width: 200%;
  max-width: none;
  background: linear-gradient(135deg, #afdfff, #eefaff);
}

.compare-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--blue-900);
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(0,0,0,.2);
  pointer-events: none;
}

.compare input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}

.mobile-actions {
  display: none;
}

.photo-note {
  margin-top: 12px;
  font-size: .82rem;
  color: var(--muted);
}

.form-note {
  margin-top: 12px;
  font-size: .82rem;
  color: var(--muted);
}

.quote-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.quote-mini-grid .stat strong {
  font-size: 1rem;
}

.kicker-card {
  padding: 18px;
  border-radius: 16px;
  background: var(--blue-100);
  color: var(--blue-900);
  font-weight: 800;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .review-grid,
  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 0;
  }

  .mobile-actions {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1100;
    gap: 10px;
  }

  .mobile-actions a {
    box-shadow: 0 10px 26px rgba(8,42,74,.18);
  }

  body { padding-bottom: 78px; }
}

@media (max-width: 620px) {
  .review-grid,
  .quote-mini-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
    font-size: .86rem;
  }
}
