/* ═══════════════════════════════════════════
   CAROL STREAM PRESSURE WASHING
   Mobile-first · SEO-optimized · Fast
   ═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --blue:       #0a3d6b;
  --blue-mid:   #1260a8;
  --blue-light: #1e7fd4;
  --orange:     #e8580a;
  --orange-lt:  #f07030;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --gray-100:   #f0f2f5;
  --gray-200:   #e2e6ea;
  --gray-400:   #9aa5b4;
  --gray-700:   #3d4f63;
  --dark:       #0c1f30;
  --text:       #1a2d3f;
  --text-light: #4a6070;

  --ff-display: 'Bebas Neue', 'Impact', sans-serif;
  --ff-body:    'DM Sans', 'Segoe UI', sans-serif;

  --radius:     6px;
  --radius-lg:  12px;
  --shadow:     0 2px 12px rgba(10,61,107,0.10);
  --shadow-lg:  0 8px 32px rgba(10,61,107,0.18);

  --max-w: 1160px;
  --gutter: 1.25rem;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── SECTION SPACING ── */
.section { padding: 5rem 0; }
.section--dark  { background: var(--dark); color: var(--white); }
.section--gray  { background: var(--gray-100); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header--light { color: var(--white); }
.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-eyebrow--light { color: var(--orange-lt); }
.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--blue);
  margin-bottom: 1rem;
}
.section-header--light h2 { color: var(--white); }
.section-sub { color: var(--text-light); font-size: 1.05rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-lt); border-color: var(--orange-lt); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,88,10,0.35); }
.btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-secondary:hover { background: var(--blue); color: var(--white); }
.btn-hero {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
}
.btn-hero:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,88,10,0.4); }
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ── TOP BAR ── */
.topbar {
  background: var(--blue);
  color: var(--white);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem var(--gutter);
  gap: 1rem;
}
.topbar-phone {
  font-weight: 600;
  color: var(--orange-lt);
  white-space: nowrap;
}
.topbar-phone:hover { color: var(--white); }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--blue);
}
.logo-sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}
.nav { display: none; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--gray-100); }
.nav-cta { margin-left: 0.5rem; }
.mobile-menu-btn {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--blue);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 1rem var(--gutter) 1.5rem;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
}
.mobile-nav a:hover { background: var(--gray-100); color: var(--blue); }
.mobile-phone { color: var(--orange) !important; font-weight: 700 !important; margin-top: 0.5rem; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,61,107,0.97) 0%, rgba(18,96,168,0.90) 60%, rgba(30,127,212,0.75) 100%);
}
.hero-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.025) 40px,
    rgba(255,255,255,0.025) 80px
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
  max-width: 720px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
.hero-title-line {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title-big {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-title-big span { color: var(--orange); }
.hero-sub {
  color: rgba(255,255,255,0.80);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 2rem;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  animation: fadeUp 0.6s 0.5s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--orange);
  color: var(--white);
  padding: 1.5rem 0;
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 0;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
  text-align: center;
}
.proof-item strong { font-family: var(--ff-display); font-size: 2rem; letter-spacing: 0.02em; line-height: 1; }
.proof-item span { font-size: 0.8rem; font-weight: 500; opacity: 0.85; margin-top: 0.2rem; }
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10,61,107,0.06);
}
.service-featured-tag {
  position: absolute;
  top: -0.65rem;
  left: 1.5rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
  border-radius: 100px;
}
.service-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--text-light); margin-bottom: 1rem; font-size: 0.95rem; }
.service-list { margin-bottom: 1.25rem; }
.service-list li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0.25rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-light);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.service-link:hover { color: var(--orange); }
.services-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── WHY ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.why-item { padding: 1.5rem; border-top: 2px solid rgba(255,255,255,0.12); }
.why-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.why-item h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.why-item p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* ── SERVICE AREA ── */
.area-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.area-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--blue);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.area-text p { color: var(--text-light); margin-bottom: 1.5rem; }
.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.area-list li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.15s;
}
.area-list li a::before { content: "→"; color: var(--orange); }
.area-list li a:hover { color: var(--orange); }
.area-visual { display: flex; justify-content: center; }
.area-map-placeholder {
  position: relative;
  width: 280px;
  height: 280px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--blue);
}
.area-pin { font-size: 2rem; margin-bottom: 0.25rem; }
.area-map-placeholder p { font-size: 0.85rem; font-weight: 600; color: var(--blue); }
.area-map-placeholder small { color: var(--text-light); font-weight: 400; }
.area-radius-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed var(--blue-light);
  opacity: 0.25;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 320px; height: 320px; }
.ring-2 { width: 380px; height: 380px; }
.ring-3 { width: 440px; height: 440px; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  font-style: normal;
}
.testimonial--featured {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.testimonial footer strong { color: var(--blue); font-weight: 700; }
.testimonial footer span { color: var(--gray-400); font-size: 0.85rem; margin-left: 0.4rem; }

/* ── FAQ ── */
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  list-style: none;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  font-size: 0.94rem;
  line-height: 1.7;
}
.faq-answer strong { color: var(--text); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  padding: 4rem 0;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.cta-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.cta-text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .footer-logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-phone {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange-lt);
}
.footer-nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
  font-size: 0.9rem;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--orange-lt); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 0.35rem; }
.footer-btn { margin-top: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem var(--gutter);
  text-align: center;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--orange-lt); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.2); }
}

/* ── TABLET (640px+) ── */
@media (min-width: 640px) {
  :root { --gutter: 2rem; }
  .services-grid      { grid-template-columns: 1fr 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr 1fr; }
  .testimonial--featured { grid-column: span 2; }
  .why-grid           { grid-template-columns: 1fr 1fr; }
}

/* ── DESKTOP (900px+) ── */
@media (min-width: 900px) {
  :root { --gutter: 2.5rem; }
  .nav           { display: flex; }
  .nav-cta       { display: inline-flex; }
  .mobile-menu-btn { display: none; }

  .services-grid     { grid-template-columns: 1fr 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; }
  .testimonial--featured { grid-column: span 1; }
  .why-grid          { grid-template-columns: repeat(4, 1fr); }
  .area-inner        { grid-template-columns: 1fr 1fr; }
  .footer-inner      { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .cta-inner         { flex-direction: row; text-align: left; justify-content: space-between; }
  .section-header h2 { font-size: 2.8rem; }
}
/* ═══════════════════════════════════════════
   INNER PAGES — appended to style.css
   Add these rules to the bottom of style.css
   ═══════════════════════════════════════════ */

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  padding: 4rem 0 3rem;
  color: var(--white);
}
.page-hero .section-eyebrow { color: var(--orange-lt); }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 620px;
}

/* ── SERVICE DETAIL LAYOUT ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 0;
}
@media (min-width: 900px) {
  .service-detail { grid-template-columns: 1fr 1fr; }
  .service-detail--reverse .service-detail-text { order: 2; }
  .service-detail--reverse .service-detail-visual { order: 1; }
}
.service-detail-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--blue);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.service-detail-text p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.75; }
.service-detail-text h3 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 1.5rem 0 0.5rem;
}
.service-detail-price {
  background: var(--off-white);
  border-left: 4px solid var(--orange);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 1.25rem 0 1.5rem;
}
.service-detail-price strong { color: var(--orange); }

.service-visual-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
}
.service-visual-icon { font-size: 4rem; margin-bottom: 1rem; }
.service-visual-box p { font-family: var(--ff-display); font-size: 1.6rem; letter-spacing: 0.03em; margin: 0; }
.service-visual-sub { font-family: var(--ff-body) !important; font-size: 0.88rem !important; opacity: 0.7; margin-top: 0.4rem !important; }

.service-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 2rem 0;
}
