/* =====================================================
   AQUASOFT — House Water Treatment Page
   Note: .hh-hero background-image uses {% static %},
   so it stays as an inline <style> in the template.
   ===================================================== */

.house-page { font-family: Inter, "Helvetica Neue", Arial, sans-serif; color: #111827; }

/* ── HERO ── */
.hh-hero {
  position: relative; min-height: 480px;
  display: flex; align-items: center; overflow: hidden;
}
.hh-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg,rgba(13,59,56,.93) 0%,rgba(13,59,56,.6) 55%,rgba(8,164,147,.15) 100%);
}
.hh-hero::after {
  content: ''; position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(8,164,147,.1); pointer-events: none;
}
.hh-hero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 60px 24px; width: 100%; }
.hh-hero-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px; padding: 5px 14px; font-size: .75rem; font-weight: 600;
  color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 18px; backdrop-filter: blur(6px);
}
.hh-hero-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
.hh-hero h1 { color: #fff; font-size: clamp(1.7rem,4vw,2.6rem); font-weight: 900; margin: 0 0 14px; max-width: 580px; line-height: 1.2; letter-spacing: -.02em; }
.hh-hero p { color: rgba(255,255,255,.78); font-size: 1rem; margin: 0 0 30px; max-width: 480px; line-height: 1.6; }
.hh-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,#FF7A45,#FF6B35); color: #fff;
  padding: 14px 28px; border-radius: 11px; font-weight: 800; font-size: .95rem;
  text-decoration: none; border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 6px 22px rgba(255,107,53,.45); transition: transform .15s, opacity .15s;
}
.btn-primary:hover { transform: translateY(-2px); opacity: .92; color: #fff; text-decoration: none; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: #fff;
  padding: 14px 24px; border-radius: 11px; font-weight: 700; font-size: .9rem;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px); transition: background .15s;
}
.btn-outline:hover { background: rgba(255,255,255,.18); color: #fff; text-decoration: none; }
@media (max-width: 600px) { .hh-hero { min-height: 360px; } .hh-hero h1 { font-size: 1.5rem; } .btn-primary, .btn-outline { padding: 12px 20px; font-size: .88rem; } }

/* ── TRUST BAR ── */
.hh-trust { background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.hh-trust-inner {
  max-width: 1100px; margin: 0 auto; padding: 14px 24px;
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.hh-trust-item { display: flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 600; color: #374151; }
.hh-trust-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
@media (max-width: 600px) { .hh-trust-inner { gap: 16px; } .hh-trust-item { font-size: .74rem; } }

/* ── WRAP ── */
.hh-wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.hh-section { padding: 52px 0; }
.hh-section + .hh-section { padding-top: 0; }
.hh-h2 { font-size: clamp(1.25rem,3vw,1.65rem); font-weight: 900; color: var(--deep); margin: 0 0 8px; letter-spacing: -.02em; }
.hh-sub { font-size: .9rem; color: var(--muted); margin: 0 0 28px; line-height: 1.5; }

/* ── PROBLEMS ── */
.hh-problems { background: var(--light); }
.hh-problems-inner { max-width: 1100px; margin: 0 auto; padding: 48px 20px; }
.prob-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 720px) { .prob-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .prob-grid { grid-template-columns: 1fr; } }
.prob-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 20px 18px; display: flex; align-items: flex-start; gap: 12px;
  box-shadow: 0 2px 12px rgba(8,164,147,.06);
}
.prob-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.prob-icon.red    { background: #fef2f2; color: #ef4444; }
.prob-icon.yellow { background: #fffbeb; color: #f59e0b; }
.prob-icon.blue   { background: #eff6ff; color: #3b82f6; }
.prob-card h4 { font-size: .88rem; font-weight: 700; color: var(--deep); margin: 0 0 4px; }
.prob-card p  { font-size: .78rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ── BENEFITS ── */
.ben-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 720px) { .ben-grid { grid-template-columns: 1fr; } }
.ben-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 22px; box-shadow: 0 3px 16px rgba(8,164,147,.07);
  transition: box-shadow .2s, transform .2s;
}
.ben-card:hover { box-shadow: 0 10px 32px rgba(8,164,147,.14); transform: translateY(-3px); }
.ben-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.ben-icon.teal  { background: linear-gradient(135deg,#e8f7f5,#c5edea); color: var(--teal); }
.ben-icon.green { background: linear-gradient(135deg,#f0fdf4,#bbf7d0); color: #16a34a; }
.ben-icon.blue  { background: linear-gradient(135deg,#eff6ff,#bfdbfe); color: #2563eb; }
.ben-card h3 { font-size: 1rem; font-weight: 800; color: var(--deep); margin: 0 0 10px; }
.ben-card p  { font-size: .85rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── STEPS ── */
.hh-steps-bg { background: linear-gradient(135deg,var(--deep) 0%,#0a5e57 100%); padding: 52px 0; }
.hh-steps-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.hh-steps-inner .hh-h2 { color: #fff; }
.hh-steps-inner .hh-sub { color: rgba(255,255,255,.7); }
.steps-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 700px) { .steps-row { grid-template-columns: 1fr; } }
.step-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 28px 22px; backdrop-filter: blur(4px);
  display: flex; flex-direction: column;
}
.step-num { font-size: 2.8rem; font-weight: 900; color: rgba(255,255,255,.15); line-height: 1; margin-bottom: 14px; }
.step-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 10px; }
.step-card p  { font-size: .85rem; color: rgba(255,255,255,.7); margin: 0; line-height: 1.6; flex: 1; }
.step-check {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  background: rgba(74,222,128,.15); border: 1px solid rgba(74,222,128,.3);
  color: #4ade80; font-size: .8rem; font-weight: 700;
  padding: 7px 14px; border-radius: 50px; margin-top: 16px;
  text-align: center;
}

/* ── SCHEMA ── */
.schema-section { padding: 52px 0 0; }
.schema-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 800px) { .schema-grid { grid-template-columns: 1fr; } }
.schema-img-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(8,164,147,.12); }
.schema-img-wrap img { width: 100%; height: auto; display: block; }
.schema-text .hh-sub { margin-bottom: 20px; }
.schema-text .btn-primary { width: 100%; justify-content: center; }
.schema-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.schema-feat {
  display: flex; align-items: center; gap: 10px;
  background: var(--light); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 14px; font-size: .85rem; color: #374151; font-weight: 500;
}
.schema-feat::before { content: '✓'; color: var(--teal); font-weight: 900; font-size: .8rem; flex-shrink: 0; }

/* ── STATS ── */
.hh-stats-bg { background: var(--light); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 440px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
.stat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 20px; text-align: center;
  box-shadow: 0 3px 14px rgba(8,164,147,.07);
}
.stat-num   { font-size: 2.4rem; font-weight: 900; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: .78rem; color: var(--muted); line-height: 1.4; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
.gallery-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 12px; display: block;
  box-shadow: 0 4px 16px rgba(8,164,147,.1);
  transition: transform .2s, box-shadow .2s;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 8px 28px rgba(8,164,147,.18); }

/* ── REVIEWS ── */
.reviews-section { padding: 52px 0 0; }
.reviews-section h2 { font-size: 1.4rem; font-weight: 900; color: var(--deep); margin: 0 0 24px; letter-spacing: -.02em; }
.review-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 18px; box-shadow: 0 2px 12px rgba(8,164,147,.06);
  display: flex; gap: 14px; align-items: flex-start;
}
.r-left { display: flex; flex-direction: column; align-items: center; gap: 5px; flex-shrink: 0; width: 64px; }
.r-avatar-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 10px; }
.r-author { font-size: .72rem; font-weight: 700; color: #374151; text-align: center; line-height: 1.3; }
.r-date   { font-size: .68rem; color: var(--muted); text-align: center; }
.r-right  { flex: 1; min-width: 0; }
.r-stars  { color: #f59e0b; font-size: .95rem; margin-bottom: 6px; }
.r-text   { font-size: .85rem; color: #374151; line-height: 1.6; }

/* ── CTA ── */
.hh-cta-wrap { padding: 52px 0 60px; }
.hh-cta {
  background: linear-gradient(135deg,var(--deep) 0%,#0a5e57 100%);
  border-radius: 20px; padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  box-shadow: 0 12px 40px rgba(8,164,147,.25); position: relative; overflow: hidden;
}
.hh-cta::before { content: ''; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.04); }
.hh-cta::after  { content: ''; position: absolute; right: 80px; bottom: -80px; width: 180px; height: 180px; border-radius: 50%; background: rgba(8,164,147,.15); }
.hh-cta-text { position: relative; z-index: 1; }
.hh-cta h2 { color: #fff; font-size: 1.35rem; font-weight: 900; margin: 0 0 8px; }
.hh-cta p  { color: rgba(255,255,255,.72); margin: 0 0 16px; font-size: .9rem; }
.hh-cta-checks { display: flex; gap: 16px; flex-wrap: wrap; }
.hh-cta-checks span { display: flex; align-items: center; gap: 5px; font-size: .76rem; color: rgba(255,255,255,.8); font-weight: 500; }
.hh-cta-checks span::before { content: '✓'; color: #4ade80; font-weight: 900; }
.hh-cta-btn {
  display: inline-flex; align-items: center; gap: 8px; z-index: 1; position: relative;
  background: linear-gradient(135deg,#FF7A45,#FF6B35); color: #fff;
  padding: 15px 30px; border-radius: 12px; font-weight: 800; font-size: .95rem;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 6px 22px rgba(255,107,53,.45); transition: transform .15s, opacity .15s;
}
.hh-cta-btn:hover { transform: translateY(-2px); opacity: .92; color: #fff; text-decoration: none; }
@media (max-width: 600px) { .hh-cta { padding: 28px 24px; } .hh-cta-btn { width: 100%; justify-content: center; } }
