/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 75vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center top;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.6) 60%,
    rgba(0,86,179,0.35) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.4);
  color: var(--aqua-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--aqua);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,180,216,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(0,180,216,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,180,216,0); }
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-accent { color: var(--aqua); }

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-stars { color: var(--gold-bright); }
.trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.25); }

/* ─── INTRO ───────────────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.intro-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.intro-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.highlight-pill {
  background: var(--light-blue);
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0,86,179,0.15);
}

.intro-img {
  position: relative;
}

.intro-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.intro-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--aqua);
  color: var(--navy);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.badge-num {
  display: block;
  font-family: 'Baloo 2', cursive;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.85;
}

/* ─── RES SERVICES ────────────────────────────────────────── */
.res-services-section { background: var(--off-white); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle { margin: 0 auto; }

.res-services-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.res-service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.res-service-card:hover { box-shadow: var(--shadow-lg); }

.res-service-card.reverse { direction: rtl; }
.res-service-card.reverse > * { direction: ltr; }

.res-service-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.res-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.res-service-card:hover .res-service-img img { transform: scale(1.06); }

.res-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.5), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.res-service-number {
  font-family: 'Baloo 2', cursive;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}

.res-service-content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.res-service-content h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.res-service-content > p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.res-feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.res-feature-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.res-feature-list li::before {
  content: '✓';
  color: var(--aqua);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ─── BA SHOWCASE ────────────────────────────────────────── */
.ba-section { background: white; }

.ba-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ba-showcase-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-items: center;
}

.ba-showcase-item {
  position: relative;
}

.ba-showcase-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.ba-showcase-label {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.before-label { background: rgba(220,38,38,0.85); color: white; }
.after-label { background: rgba(5,150,105,0.85); color: white; }

.ba-showcase-caption {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.ba-showcase-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
}

.ba-divider-line {
  width: 2px;
  height: 60px;
  background: var(--aqua);
  opacity: 0.4;
}

.ba-divider-icon {
  font-size: 1.6rem;
  background: var(--aqua);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── ECO ─────────────────────────────────────────────────── */
.eco-section {
  background: linear-gradient(135deg, #e8f4fd 0%, #d1eaf8 100%);
  padding: 60px 40px;
}

.eco-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}

.eco-icon { font-size: 4rem; }

.eco-text h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.eco-text p {
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

.eco-stats {
  display: flex;
  gap: 32px;
}

.eco-stat {
  text-align: center;
}

.eco-stat strong {
  display: block;
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  color: var(--blue);
  line-height: 1;
}

.eco-stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── SOFTWASH CTA ────────────────────────────────────────── */
.softwash-section { background: var(--off-white); }

.softwash-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.softwash-cta-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.softwash-cta-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* ─── RESIDENTIAL REVIEWS ────────────────────────────────── */
.res-reviews-section { background: white; }

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

.res-review-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid transparent;
}

.res-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0,180,216,0.2);
}

.res-review-card.featured-review {
  background: var(--navy);
  grid-row: span 1;
}

.res-review-card.featured-review p { color: rgba(255,255,255,0.85); }
.res-review-card.featured-review .quote-mark { color: var(--aqua); }
.res-review-card.featured-review .reviewer strong { color: white; }
.res-review-card.featured-review .reviewer span { color: rgba(255,255,255,0.55); }

.quote-mark {
  font-size: 4rem;
  font-family: 'Baloo 2', cursive;
  color: var(--aqua);
  line-height: 0.8;
  opacity: 0.6;
}

.res-review-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.reviewer strong { display: block; font-size: 0.88rem; color: var(--navy); }
.reviewer span { font-size: 0.78rem; color: var(--text-muted); }

.res-review-stars {
  color: var(--gold-bright);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--off-white); }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.faq-item.open { border-color: rgba(0,180,216,0.3); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: color 0.3s;
}

.faq-q:hover { color: var(--blue); }
.faq-item.open .faq-q { color: var(--blue); }

.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  color: var(--aqua);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.open .faq-a { max-height: 200px; }

.faq-a p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ─── FINAL CTA ───────────────────────────────────────────── */
.final-cta-section {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.9) 0%, rgba(0,86,179,0.7) 100%);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}

.final-cta-content h2 {
  font-size: 2.6rem;
  color: white;
  margin-bottom: 12px;
}

.final-cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-img { order: -1; }
  .intro-badge { left: 20px; }
  .eco-inner { grid-template-columns: 1fr; gap: 24px; }
  .eco-stats { justify-content: flex-start; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .softwash-cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .res-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero-content { padding: 90px 20px 0; }
  .page-hero { height: auto; min-height: 440px; padding-bottom: 40px; align-items: flex-start; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-divider { display: none; }
  .res-service-card,
  .res-service-card.reverse { grid-template-columns: 1fr; direction: ltr; }
  .res-service-img { min-height: 220px; }
  .res-service-content { padding: 28px 20px; }
  .res-feature-list { grid-template-columns: 1fr; }
  .ba-showcase-pair { grid-template-columns: 1fr; }
  .ba-showcase-divider { flex-direction: row; padding: 12px 20px; }
  .ba-divider-line { width: 60px; height: 2px; }
  .res-reviews-grid { grid-template-columns: 1fr; }
  .eco-inner { grid-template-columns: 1fr; gap: 20px; }
  .eco-stats { gap: 20px; }
  .eco-section { padding: 40px 20px; }
  .softwash-cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .softwash-cta-img img { height: 260px; }
  .final-cta-section { height: auto; padding: 60px 20px; }
  .final-cta-content h2 { font-size: 2rem; }
  .final-cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .final-cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}
