/* =====================================================
   EverClean Steam Services — Main Stylesheet
   ===================================================== */

:root {
  --blue-900: #0D2B6B;
  --blue-800: #1140A0;
  --blue-700: #1565C0;
  --blue-600: #1976D2;
  --blue-400: #42A5F5;
  --blue-100: #E3F2FD;
  --blue-50:  #F0F8FF;
  --accent:   #FF6B00;
  --accent-light: #FF8C00;
  --white:    #FFFFFF;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-500: #64748B;
  --gray-700: #334155;
  --gray-900: #0F172A;
  --star:     #FFC107;
  --green:    #2E7D32;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  padding-bottom: 70px; /* mobile bar */
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-700); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
  color: var(--gray-900);
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-100);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,0,0.35); text-decoration: none; color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); text-decoration: none; color: #fff; }
.btn-blue {
  background: var(--blue-700);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-800); transform: translateY(-1px); text-decoration: none; color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border: 2px solid var(--blue-700);
}
.btn-outline:hover { background: var(--blue-700); color: #fff; text-decoration: none; }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.header-top {
  background: var(--blue-900);
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  text-align: center;
}
.header-top a { color: #fff; font-weight: 700; }
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 20px;
}
.logo img {
  height: 56px;
  width: auto;
}
.main-nav { display: flex; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-700);
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover { background: var(--blue-100); color: var(--blue-700); text-decoration: none; }
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--blue-700);
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--gray-700);
}

/* Dropdown nav */
.has-dropdown { position: relative; }
/* dropdown hidden by default — specificity (0,2,0) beats .main-nav > ul flex */
.main-nav .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  z-index: 200;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  flex-direction: column;
}
/* show only when .open is on the parent li */
.main-nav .has-dropdown.open > .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  color: var(--gray-700);
  border-radius: 0;
}
.dropdown li a:hover { background: var(--blue-50); color: var(--blue-700); }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--blue-600) 100%);
  color: var(--white);
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/van-hero.webp');
  background-size: cover;
  background-position: center right;
  opacity: 0.22;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 60px 20px 60px 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  opacity: 0.9;
  font-weight: 600;
}
.trust-pill svg { flex-shrink: 0; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
}

/* ---- SECTIONS ---- */
section { padding: 72px 0; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-header p {
  margin-top: 12px;
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--gray-500); font-size: 0.95rem; flex: 1; margin-bottom: 16px; }
.service-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-700);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { color: var(--accent); text-decoration: none; }

/* ---- CONTENT GRID (alternating) ---- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.content-text .section-label { display: inline-block; }
.content-text h2 { margin: 10px 0 16px; }
.content-text p { color: var(--gray-500); margin-bottom: 20px; }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.7rem;
  font-weight: 900;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--blue-900); color: white; }
.testimonials-section h2 { color: white; }
.testimonials-section .section-header p { color: rgba(255,255,255,0.7); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
}
.stars { color: var(--star); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.97rem; opacity: 0.92; margin-bottom: 18px; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: white;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; }
.reviewer-city { font-size: 0.8rem; opacity: 0.65; }

/* ---- AREAS SERVED ---- */
.areas-section { background: var(--gray-50); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-tag {
  background: var(--white);
  border: 2px solid var(--blue-200, #90CAF9);
  color: var(--blue-700);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.2s;
}
.area-tag:hover { background: var(--blue-700); color: white; border-color: var(--blue-700); text-decoration: none; }

/* ---- FAQ ---- */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
details {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
details[open] { border-color: var(--blue-400); }
summary {
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue-700);
  transition: transform 0.2s;
}
details[open] summary::after { content: '−'; }
.faq-answer { padding: 0 22px 18px; color: var(--gray-500); font-size: 0.95rem; line-height: 1.7; }

/* ---- CTA BANNER ---- */
.cta-section {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  color: white;
  text-align: center;
  padding: 72px 20px;
}
.cta-section h2 { color: white; margin-bottom: 12px; }
.cta-section p { opacity: 0.9; margin-bottom: 32px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- CONTACT FORM ---- */
.form-section { background: var(--gray-50); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-card h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-700);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-info h3 { margin-bottom: 20px; }
.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
  flex-shrink: 0;
}
.info-item strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; }
.info-item p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
  font-size: 0.88rem;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--blue-700); }
.breadcrumb span { margin: 0 8px; color: var(--gray-500); }

/* ---- PAGE HERO (subpages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: white;
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p { opacity: 0.85; font-size: 1.05rem; max-width: 600px; margin: 0 auto 24px; }

/* ---- LOCATION TAG CLOUD ---- */
.location-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.location-tag {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-700);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}
.location-tag:hover { background: var(--blue-700); color: white; text-decoration: none; }

/* ---- GALLERY GRID ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 20px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 14px;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: white; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-phone { color: var(--blue-400); font-weight: 700; font-size: 1rem; }
.footer-phone:hover { color: white; text-decoration: none; }

/* ---- MOBILE BOTTOM BAR ---- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 12px;
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
}
.mobile-bar .call { background: var(--green); color: white; }
.mobile-bar .quote { background: var(--accent); color: white; }

/* ---- STAT BAR ---- */
.stat-bar { background: var(--blue-700); color: white; padding: 40px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: white;
  line-height: 1;
}
.stat-label { font-size: 0.88rem; opacity: 0.85; margin-top: 4px; }

/* ---- PROCESS SECTION ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.process-step { padding: 24px; }
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-700);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--gray-500); font-size: 0.93rem; }

/* ---- ABOUT ---- */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.value-card h3 { margin-bottom: 8px; font-size: 1rem; }
.value-card p { color: var(--gray-500); font-size: 0.9rem; }

/* ---- 404 ---- */
.error-page { text-align: center; padding: 100px 20px; }
.error-code {
  font-family: 'Montserrat', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: var(--blue-100);
  line-height: 1;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 32px 0;
}
.quick-link {
  background: var(--blue-50);
  border: 1px solid var(--blue-200, #90CAF9);
  color: var(--blue-700);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s;
}
.quick-link:hover { background: var(--blue-700); color: white; text-decoration: none; }

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    padding: 16px 0;
    z-index: 500;
  }
  .main-nav.open { display: block !important; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { display: block; padding: 12px 24px; }
  .main-nav .dropdown { position: static !important; box-shadow: none; border: none; background: var(--gray-50); display: none !important; }
  .has-dropdown { position: static; }
  .main-nav .has-dropdown.open .dropdown { display: block !important; }
  .header-phone span { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { padding-bottom: 74px; }
  .mobile-bar { display: flex; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid.reverse { direction: ltr; }
  .content-grid img { height: 260px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 48px 20px; }
  .hero-trust { gap: 16px; }
  .trust-bar-inner { gap: 20px; }
  section { padding: 52px 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.9rem; }
  .form-card { padding: 24px; }
}