/* ================================================================
   Falls Pressure Wash — styles.css
   Pure CSS, no external dependencies, mobile-responsive
   Primary: #0a6abf  |  Accent: #fff  |  Neutral: #1a1a1a
   Alt BG:  #eef4fb
================================================================ */

/* ----------------------------------------------------------------
   RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0a6abf;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

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

/* ----------------------------------------------------------------
   LAYOUT HELPERS
---------------------------------------------------------------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, transform 0.1s ease;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1.4;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: #0a6abf;
  color: #ffffff;
  border-color: #0a6abf;
}

.btn-primary:hover {
  background: #085ea8;
  border-color: #085ea8;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-header {
  background: #0a6abf;
  color: #ffffff;
  border-color: #0a6abf;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-header:hover {
  background: #085ea8;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

/* ----------------------------------------------------------------
   SECTION TITLES
---------------------------------------------------------------- */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-sub {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 640px;
}

section {
  padding: 72px 0;
}

/* alternating section backgrounds */
#services,
#reviews,
#service-area {
  background: #eef4fb;
}

#hero,
#how-it-works,
#pricing,
#quote-form {
  background: #ffffff;
}

/* ----------------------------------------------------------------
   STICKY HEADER
---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #dce8f5;
  box-shadow: 0 2px 8px rgba(10, 106, 191, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1a1a1a;
}

.logo-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.logo-text {
  font-size: 1.1rem;
  color: #1a1a1a;
  white-space: nowrap;
}

.logo-text strong {
  color: #0a6abf;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav a {
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

.header-nav a:hover {
  color: #0a6abf;
}

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
#hero {
  background: linear-gradient(135deg, #0a6abf 0%, #0854a0 100%);
  color: #ffffff;
  padding: 80px 0 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.65;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(2px);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero card */
.hero-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.hero-card-inner {
  padding: 32px 28px;
}

.hero-card-headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.hero-card-body {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.55;
}

.hero-card-list {
  margin-bottom: 24px;
}

.hero-card-list li {
  font-size: 0.92rem;
  color: #333;
  padding: 5px 0;
  border-bottom: 1px solid #eef4fb;
}

.hero-card-list li:last-child {
  border-bottom: none;
}

/* ----------------------------------------------------------------
   OFFER / SPRING SPECIAL
---------------------------------------------------------------- */
#offer {
  background: #0a6abf;
  padding: 56px 0;
  text-align: center;
}

.offer-inner {
  max-width: 700px;
  margin: 0 auto;
}

.offer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.35);
}

.offer-headline {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.offer-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.6;
}

#offer .btn-primary {
  background: #ffffff;
  color: #0a6abf;
  border-color: #ffffff;
}

#offer .btn-primary:hover {
  background: #eef4fb;
}

/* ----------------------------------------------------------------
   SERVICES
---------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #dce8f5;
  border-radius: 10px;
  padding: 28px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(10, 106, 191, 0.12);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   HOW IT WORKS
---------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: steps;
}

.step {
  text-align: center;
  padding: 28px 16px;
  position: relative;
}

/* connecting line between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 44px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: #dce8f5;
}

.step-number {
  width: 52px;
  height: 52px;
  background: #0a6abf;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   REVIEWS
---------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #ffffff;
  border: 1px solid #dce8f5;
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card blockquote {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.review-card cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}

.review-card cite strong {
  font-size: 0.95rem;
  color: #1a1a1a;
}

.review-location {
  font-size: 0.83rem;
  color: #0a6abf;
  font-weight: 500;
}

/* ----------------------------------------------------------------
   PRICING
---------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.pricing-card {
  border: 2px solid #dce8f5;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.pricing-card:hover {
  box-shadow: 0 6px 24px rgba(10, 106, 191, 0.1);
}

.pricing-card--featured {
  border-color: #0a6abf;
  box-shadow: 0 4px 20px rgba(10, 106, 191, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a6abf;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-service {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.pricing-from {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0a6abf;
  line-height: 1.1;
  margin-bottom: 14px;
}

.pricing-note {
  font-size: 0.83rem;
  color: #666;
  line-height: 1.5;
}

.pricing-disclaimer {
  font-size: 0.83rem;
  color: #888;
  text-align: center;
  margin-top: 4px;
}

/* ----------------------------------------------------------------
   SERVICE AREA
---------------------------------------------------------------- */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.area-tag {
  background: #ffffff;
  border: 1px solid #dce8f5;
  color: #1a1a1a;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s;
}

.area-tag:hover {
  background: #0a6abf;
  border-color: #0a6abf;
  color: #ffffff;
  cursor: default;
}

.area-note {
  font-size: 0.92rem;
  color: #555;
}

.area-note a {
  color: #0a6abf;
  font-weight: 600;
}

/* ----------------------------------------------------------------
   QUOTE FORM
---------------------------------------------------------------- */
#quote-form {
  background: #ffffff;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
  background: #eef4fb;
  border-radius: 14px;
  padding: 48px;
  border: 1px solid #dce8f5;
}

.form-intro h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.form-intro p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.form-promises {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-promises li {
  font-size: 0.9rem;
  color: #1a1a1a;
  font-weight: 500;
}

.form-promises li::before {
  color: #0a6abf;
}

/* Form elements */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
}

.required {
  color: #c0392b;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #ccd8e8;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1a1a1a;
  background: #ffffff;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0a6abf;
  box-shadow: 0 0 0 3px rgba(10, 106, 191, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aab4be;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding-top: 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #333;
}

.footer-brand .logo-text {
  color: #ffffff;
  font-size: 1.1rem;
}

.footer-brand .logo-text strong {
  color: #5ba8f5;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #888;
  margin-top: 8px;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #bbb;
}

.footer-contact a {
  color: #5ba8f5;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-areas p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.7;
}

.footer-bottom {
  padding: 18px 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #666;
  text-align: center;
}

/* ----------------------------------------------------------------
   RESPONSIVE — TABLET (max-width: 960px)
---------------------------------------------------------------- */
@media (max-width: 960px) {
  .section-title {
    font-size: 1.7rem;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-card {
    max-width: 480px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* How it works */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step:not(:last-child)::after {
    display: none;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Form */
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-areas {
    grid-column: 1 / -1;
  }

  /* Header nav */
  .header-nav {
    display: none;
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE (max-width: 600px)
---------------------------------------------------------------- */
@media (max-width: 600px) {
  section {
    padding: 52px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 1.65rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    text-align: center;
  }

  .trust-badges {
    gap: 8px;
  }

  .badge {
    font-size: 0.8rem;
    padding: 5px 11px;
  }

  /* Offer */
  .offer-headline {
    font-size: 1.45rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 24px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Header */
  .header-inner {
    gap: 10px;
  }

  .logo-text {
    font-size: 0.95rem;
  }
}
