﻿:root {
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --accent: #0891b2;
  --accent-light: #22d3ee;
  --accent-green: #10b981;
  --text-dark: #1f2937;
  --text-medium: #4b5563;
  --text-light: #6b7280;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-blue: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #0891b2 100%);
  --border: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-light);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--bg-light);
  color: var(--primary-dark);
}

.btn-accent {
  background: var(--accent);
  color: white;
}

.btn-accent:hover {
  background: var(--accent-light);
  color: white;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.header {
  background: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--primary);
}

.header-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.hero {
  background: var(--bg-blue);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 32px;
  opacity: 0.95;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btns .btn-primary {
  background: white;
  color: var(--primary);
}

.hero-btns .btn-primary:hover {
  background: var(--bg-light);
  color: var(--primary-dark);
}

.hero-btns .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.hero-btns .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.section {
  padding: 80px 20px;
}

.section-alt {
  background: var(--bg-light);
}

.section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-medium);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-item {
  text-align: center;
  padding: 24px;
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}

.wash-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.wash-type-item {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.wash-type-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.wash-type-item svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 12px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.city-link {
  display: block;
  padding: 16px;
  background: white;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s;
}

.city-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.cta-section {
  background: var(--bg-blue);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.95;
  font-size: 1.1rem;
}

.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h4, .footer h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer a {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-content {
  padding: 24px;
}

.blog-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card h3 a {
  color: var(--text-dark);
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 600;
  color: var(--primary);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.resource-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.resource-card h3 {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.resource-card p {
  color: var(--text-medium);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.faq-answer {
  color: var(--text-medium);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-form {
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.page-header {
  background: var(--bg-blue);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 12px;
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.content-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  margin-bottom: 20px;
}

.content-section p {
  margin-bottom: 16px;
  color: var(--text-medium);
}

.content-section ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.content-section li {
  margin-bottom: 8px;
  color: var(--text-medium);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .contact-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }
  
  .hero-btns .btn {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.article-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.article-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content p {
  margin-bottom: 16px;
  color: var(--text-medium);
}

.article-content ul,
.article-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
  color: var(--text-medium);
}

.article-content li {
  margin-bottom: 8px;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.article-content th,
.article-content td {
  padding: 12px;
  border: 1px solid var(--border);
  text-align: left;
}

.article-content th {
  background: var(--bg-light);
  font-weight: 600;
}

.article-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.article-intro {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-box {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
  border: 1px solid var(--border);
}

.cta-box h3 {
  margin-bottom: 12px;
}

.cta-box p {
  margin-bottom: 20px;
  color: var(--text-medium);
}

.breadcrumb {
  padding: 16px 0;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--text-light);
}

.breadcrumb span {
  color: var(--text-light);
  margin: 0 8px;
}

.areas-section {
  padding: 60px 20px;
}

.area-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.area-card h3 {
  margin-bottom: 16px;
  color: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-top: 4px;
}
.wash-type-item h3 { font-size: 1.25rem; margin-bottom: 10px; }


:root {
  --primary: #1f6feb;
  --primary-dark: #1147a8;
  --primary-light: #67a4ff;
  --accent: #19b6c9;
  --accent-light: #7fe7ef;
  --accent-green: #2bd1a4;
  --text-dark: #eaf1fb;
  --text-medium: #aebcd0;
  --text-light: #7f92ab;
  --bg-white: #09111d;
  --bg-light: #0f1a2b;
  --bg-blue: radial-gradient(circle at top, rgba(31, 111, 235, 0.28) 0%, rgba(9, 17, 29, 0) 38%), linear-gradient(135deg, #08111c 0%, #102033 48%, #0a1625 100%);
  --surface: rgba(18, 30, 48, 0.92);
  --surface-strong: rgba(9, 17, 29, 0.98);
  --surface-soft: rgba(127, 146, 171, 0.08);
  --border: rgba(127, 146, 171, 0.2);
  --border-strong: rgba(103, 164, 255, 0.25);
  --shadow: 0 18px 40px rgba(3, 8, 15, 0.34);
  --shadow-lg: 0 28px 70px rgba(2, 6, 13, 0.46);
  --glow: 0 0 0 1px rgba(103, 164, 255, 0.14), 0 0 40px rgba(25, 182, 201, 0.12);
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  background-image: radial-gradient(circle at top, rgba(31, 111, 235, 0.12), transparent 30%), linear-gradient(180deg, #08111c 0%, #0b1522 100%);
}

a {
  transition: color 0.25s ease, opacity 0.25s ease;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
}

.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 45%, var(--accent) 100%);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 35%, #14899e 100%);
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-dark);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(103, 164, 255, 0.1);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.btn-accent {
  background: linear-gradient(135deg, #127d8a 0%, var(--accent) 100%);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #1496a5 0%, var(--accent-light) 100%);
}

.header {
  background: rgba(8, 17, 28, 0.82);
  box-shadow: 0 10px 30px rgba(2, 6, 13, 0.28);
  border-bottom: 1px solid rgba(127, 146, 171, 0.12);
  backdrop-filter: blur(18px);
}

.logo {
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--accent-light);
}

.nav a {
  color: var(--text-medium);
  position: relative;
}

.nav a:hover {
  color: var(--text-dark);
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.hero,
.page-header,
.cta-section {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 110px 20px 100px;
}

.hero::before,
.hero::after,
.page-header::before,
.cta-section::before {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -100px;
  top: -80px;
  background: radial-gradient(circle, rgba(25, 182, 201, 0.38) 0%, rgba(25, 182, 201, 0) 70%);
}

.hero::after {
  width: 420px;
  height: 420px;
  left: -120px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(31, 111, 235, 0.28) 0%, rgba(31, 111, 235, 0) 72%);
}

.page-header::before,
.cta-section::before {
  width: 340px;
  height: 340px;
  right: -80px;
  top: -120px;
  background: radial-gradient(circle, rgba(103, 164, 255, 0.18) 0%, rgba(103, 164, 255, 0) 70%);
}

.hero .container,
.page-header .container,
.cta-section .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.4rem;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: #d9e6f7;
  opacity: 0.92;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(127, 146, 171, 0.16);
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.trust-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(127, 146, 171, 0.14);
  color: #dce7f6;
  font-size: 0.92rem;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-panel-card,
.hero-stat,
.trust-strip,
.metric-card,
.conversion-band {
  background: linear-gradient(180deg, rgba(18, 30, 48, 0.96) 0%, rgba(9, 18, 31, 0.98) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-panel-card {
  padding: 28px;
}

.hero-panel-label,
.trust-card-kicker {
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-panel-card h2 {
  text-align: left;
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.hero-checklist {
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--text-medium);
}

.hero-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--primary-light));
  box-shadow: var(--glow);
}

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

.hero-stat {
  padding: 20px;
}

.hero-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.hero-stat span {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.trust-strip-section {
  padding-top: 28px;
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 22px;
  padding: 28px;
}

.trust-card h2 {
  text-align: left;
  margin-bottom: 12px;
}

.trust-card p {
  color: var(--text-medium);
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric-card {
  padding: 22px 18px;
  text-align: center;
}

.metric-value {
  display: block;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.metric-label {
  display: block;
  color: var(--text-light);
  font-size: 0.88rem;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.section-cta-tight {
  margin-top: 32px;
}

.wash-type-description {
  color: var(--text-light);
  font-size: 0.9rem;
}

.centered-heading {
  text-align: center;
}

.spaced-copy {
  margin-bottom: 24px;
}

.stack-heading {
  margin-top: 32px;
}

.meta-line {
  margin-top: 8px;
}

.meta-block {
  margin-top: 12px;
}

.calendar-embed {
  width: 100%;
  height: 900px;
  border: 1px solid rgba(127, 146, 171, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
}

.calendar-embed-frame {
  border: none;
  overflow: hidden;
}

.contact-direct-note {
  margin-top: 24px;
  text-align: center;
  color: var(--text-light);
}

.faq-shell {
  max-width: 900px;
  margin: 0 auto;
}

.footer-muted {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-cta {
  margin-top: 12px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.section-title-spaced {
  margin-bottom: 48px;
}

.conversion-band {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 48px;
}

.conversion-band h3 {
  margin-bottom: 10px;
}

.conversion-band p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.conversion-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btns .btn-primary,
.hero-btns .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 45%, var(--accent) 100%);
  color: white;
}

.hero-btns .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 35%, #14899e 100%);
}

.hero-btns .btn-secondary {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
}

.hero-btns .btn-secondary:hover {
  background: rgba(255,255,255,0.14);
}

.section-alt {
  background: linear-gradient(180deg, rgba(15, 26, 43, 0.9) 0%, rgba(10, 22, 37, 0.95) 100%);
}

.service-card,
.blog-card,
.resource-card,
.contact-info,
.contact-form,
.cta-box,
.area-card,
.wash-type-item,
.city-link,
.why-item,
.stat-item {
  background: linear-gradient(180deg, rgba(18, 30, 48, 0.96) 0%, rgba(11, 22, 37, 0.96) 100%);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.service-card,
.blog-card,
.resource-card,
.contact-info,
.cta-box,
.area-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.resource-card::before,
.blog-card::before,
.area-card::before,
.cta-box::before,
.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(103, 164, 255, 0.08), rgba(25, 182, 201, 0.02) 45%, transparent 70%);
  pointer-events: none;
}

.service-card:hover,
.blog-card:hover,
.resource-card:hover,
.wash-type-item:hover,
.city-link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.service-icon {
  background: linear-gradient(135deg, rgba(31, 111, 235, 0.2) 0%, rgba(25, 182, 201, 0.3) 100%);
  box-shadow: var(--glow);
}

.why-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(127, 146, 171, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.why-icon {
  background: linear-gradient(135deg, rgba(103, 164, 255, 0.15), rgba(25, 182, 201, 0.14));
  color: var(--accent-light);
  box-shadow: var(--glow);
}

.wash-type-item:hover,
.city-link:hover {
  transform: translateY(-4px);
}

.city-link {
  color: var(--text-medium);
}

.city-link:hover {
  background: linear-gradient(135deg, rgba(31, 111, 235, 0.18), rgba(25, 182, 201, 0.16));
  color: white;
}

.footer {
  background: #050b13;
  border-top: 1px solid rgba(127, 146, 171, 0.12);
}

.blog-category {
  background: rgba(103, 164, 255, 0.12);
  color: var(--accent-light);
}

.contact-form {
  border: 1px solid var(--border);
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid rgba(127, 146, 171, 0.18);
  background: rgba(6, 12, 20, 0.8);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(31, 111, 235, 0.14);
}

.article-content th {
  background: rgba(103, 164, 255, 0.08);
}

.section,
.page-header,
.cta-section,
.hero {
  scroll-margin-top: 90px;
}

@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .resource-card,
  .blog-card,
  .wash-type-item,
  .city-link,
  .why-item,
  .area-card,
  .cta-box {
    animation: fadeUp 0.7s ease both;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(127, 146, 171, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    padding: 0;
    cursor: pointer;
    box-shadow: var(--shadow);
  }

  .mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav {
    display: none;
    padding: 14px 20px 20px;
    border-top: 1px solid rgba(127, 146, 171, 0.12);
    background: rgba(6, 12, 20, 0.96);
    backdrop-filter: blur(18px);
  }

  .mobile-nav.active {
    display: grid;
    gap: 10px;
  }

  .mobile-nav a {
    color: var(--text-dark);
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(127, 146, 171, 0.12);
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-layout,
  .trust-strip,
  .conversion-band {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .trust-points,
  .conversion-actions {
    justify-content: center;
  }

  .hero-stats,
  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (min-width: 769px) {
  .mobile-menu-btn,
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 12px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .mobile-menu-btn {
    width: 42px;
    height: 42px;
  }
}
