/* ============================================================
   AQUA CARE RO — HOME PAGE (index.css)
   assets/css/index.css
   ============================================================ */

/* ── HERO — white background, enhanced ── */
#home {
  min-height: 100vh;
  background: #ffffff;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 100px 5% 80px;
}

/* Rich layered background: diagonal gradient wash + blobs */
#home::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(135deg, rgba(0,184,217,0.06) 0%, transparent 50%),
    linear-gradient(225deg, rgba(21,101,192,0.05) 0%, transparent 50%);
}
/* Large cyan orb top-right */
#home::after {
  content: '';
  position: absolute; top: -180px; right: -180px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,217,0.12) 0%, rgba(0,184,217,0.04) 45%, transparent 70%);
  pointer-events: none;
}

.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-circles span { position: absolute; border-radius: 50%; }
/* bottom-left blue blob */
.hero-bg-circles span:nth-child(1) {
  width: 500px; height: 500px; bottom: -160px; left: -100px;
  background: radial-gradient(circle, rgba(21,101,192,0.08) 0%, transparent 65%);
}
/* mid-page cyan accent */
.hero-bg-circles span:nth-child(2) {
  width: 260px; height: 260px; top: 55%; left: 45%;
  background: radial-gradient(circle, rgba(0,184,217,0.07) 0%, transparent 70%);
}
/* dotted grid texture overlay */
.hero-bg-circles span:nth-child(3) {
  inset: 0; width: 100%; height: 100%; border-radius: 0;
  background-image: radial-gradient(circle, rgba(0,100,200,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

/* animated pill badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(0,184,217,0.12), rgba(21,101,192,0.08));
  border: 1.5px solid rgba(0,184,217,0.35);
  color: var(--blue); font-size: 13px; font-weight: 700;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 28px;
  letter-spacing: .6px; box-shadow: 0 2px 12px rgba(0,184,217,0.15);
  animation: badgePop .6s ease both;
}
.hero-badge::before { content: '💧'; font-size: 14px; }
@keyframes badgePop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* headline with gradient accent word */
.hero h1 {
  font-size: clamp(38px, 5.2vw, 62px); font-weight: 800;
  color: var(--navy); line-height: 1.08; margin-bottom: 22px;
  animation: fadeUp .7s .1s ease both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #00b8d9, #1565c0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px; color: var(--muted); line-height: 1.75;
  margin-bottom: 36px; max-width: 460px;
  animation: fadeUp .7s .2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* buttons */
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .7s .3s ease both; }
.hero .btn-ghost-dark {
  border: 1.5px solid rgba(10,31,68,0.2); color: var(--navy);
  padding: 13px 28px; border-radius: 10px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .2s, background .2s, box-shadow .2s;
  background: white; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.hero .btn-ghost-dark:hover {
  border-color: var(--blue); background: rgba(21,101,192,0.05);
  box-shadow: 0 4px 16px rgba(21,101,192,0.12);
}

/* stats row */
.hero-stats {
  display: flex; gap: 0; margin-top: 48px; flex-wrap: wrap;
  animation: fadeUp .7s .4s ease both;
}
.hero-stat {
  padding-right: 28px; margin-right: 28px;
  border-right: 1.5px solid var(--border);
}
.hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-stat strong {
  display: block; font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 800;
  background: linear-gradient(135deg, #00b8d9, #1565c0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat span { font-size: 13px; color: var(--muted); margin-top: 3px; display: block; }

/* ── HERO IMAGE SLOT ── */
.hero-image-slot {
  position: relative; display: flex; align-items: center; justify-content: center;
  animation: imgReveal .9s .2s ease both;
}
@keyframes imgReveal {
  from { opacity: 0; transform: translateX(24px) scale(.97); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* outer glow ring */
.hero-image-slot::before {
  content: '';
  position: absolute; inset: -20px; border-radius: 32px;
  background: radial-gradient(ellipse at center, rgba(0,184,217,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-img-frame {
  width: 100%; max-width: 500px; aspect-ratio: 4/3;
  border-radius: 28px; overflow: visible;
  background: linear-gradient(145deg, #ddf0fa 0%, #c8e6f5 60%, #dbeeff 100%);
  border: 1.5px solid rgba(0,184,217,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow:
    0 24px 80px rgba(0,100,200,0.13),
    0 4px 20px rgba(0,184,217,0.1),
    inset 0 1px 0 rgba(255,255,255,0.8);
}
.hero-img-frame img {
  width: 92%; height: 92%; object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,80,180,0.18));
  transition: transform .4s ease;
}
.hero-img-frame:hover img { transform: scale(1.03) translateY(-4px); }

.hero-img-placeholder {
  text-align: center; color: var(--muted);
  font-size: 13px; line-height: 1.6; padding: 20px;
}
.hero-img-placeholder {
  text-align: center; color: var(--muted);
  font-size: 13px; line-height: 1.6; padding: 20px;
}
.hero-img-placeholder span { font-size: 48px; display: block; margin-bottom: 10px; opacity: .4; }
/* floating badge on hero image */
.hero-img-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: white;
  padding: 10px 24px; border-radius: 100px;
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700;
  white-space: nowrap; box-shadow: 0 8px 24px rgba(10,31,68,0.25);
  border: 2px solid rgba(0,184,217,0.3);
}

/* hero service card (right side) */
.hero-card {
  background: var(--navy);
  border: 1px solid rgba(0,184,217,0.2);
  border-radius: 20px; padding: 32px;
}
.hero-card-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: white; margin-bottom: 20px; }
.service-quick-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.service-quick-list li {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05); border-radius: 10px;
  padding: 12px 16px; border: 1px solid rgba(255,255,255,0.06);
  transition: background .2s;
}
.service-quick-list li:hover { background: rgba(0,184,217,0.1); }
.sq-icon {
  width: 38px; height: 38px; min-width: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.sq-icon.blue   { background: rgba(0,184,217,0.2); }
.sq-icon.indigo { background: rgba(21,101,192,0.25); }
.sq-icon.green  { background: rgba(0,200,83,0.2); }
.sq-icon.gold   { background: rgba(245,166,35,0.2); }
.sq-info { flex: 1; }
.sq-info strong { display: block; font-size: 14px; font-weight: 600; color: white; }
.sq-info span   { font-size: 12px; color: rgba(255,255,255,0.5); }
.sq-price { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--cyan); white-space: nowrap; }

.hero-cta-bottom {
  margin-top: 20px; padding: 14px 20px;
  background: linear-gradient(135deg, rgba(0,184,217,0.15), rgba(21,101,192,0.15));
  border: 1px solid rgba(0,184,217,0.25); border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.hero-cta-bottom span  { font-size: 13px; color: rgba(255,255,255,0.7); }
.hero-cta-bottom strong { font-size: 16px; font-weight: 700; color: white; display: block; }
.call-btn {
  background: var(--green); color: white; border: none;
  padding: 10px 18px; border-radius: 8px; font-weight: 700; font-size: 14px;
  font-family: 'Sora', sans-serif; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  transition: opacity .2s;
}
.call-btn:hover { opacity: .88; }

/* ── SERVICES SECTION ── */
#services { padding: 90px 5%; background: var(--off); }
.services-grid {
  max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.service-card {
  background: white; border-radius: 18px; padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,100,200,0.1); }
.service-card:hover::after { transform: scaleX(1); }
.sc-icon  { font-size: 40px; margin-bottom: 18px; display: block; }
.sc-title { font-family: 'Sora', sans-serif; font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.sc-desc  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.sc-price { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: var(--blue); }
.sc-price small { font-size: 13px; font-weight: 400; color: var(--muted); }
.sc-badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; margin-top: 12px; }
.badge-cyan  { background: rgba(0,184,217,0.1);  color: #0077a3; }
.badge-green { background: rgba(0,200,83,0.1);   color: #007c38; }
.badge-gold  { background: rgba(245,166,35,0.12); color: #8a5a00; }

/* IMAGE STRIP (2 images between sections) */
.img-strip {
  padding: 60px 5%; background: white;
  display: flex; gap: 24px; justify-content: center; align-items: stretch;
  max-width: 1200px; margin: 0 auto;
}
.img-strip-slot {
  flex: 1; max-width: 560px; border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, #e8f4fd, #d0eaf7);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,100,200,0.07);
}
.img-strip-slot img { width: 100%; height: 100%; object-fit: contain; }
.img-strip-placeholder {
  text-align: center; color: var(--muted); font-size: 13px; line-height: 1.6; padding: 20px;
}
.img-strip-placeholder span { font-size: 40px; display: block; margin-bottom: 8px; opacity: .4; }

/* ── STATS ── */
.stats-section {
  background: var(--navy); padding: 80px 5%;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,184,217,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(21,101,192,0.1) 0%, transparent 60%);
}
.stats-inner { max-width: 1100px; margin: auto; position: relative; z-index: 2; text-align: center; }
.stats-inner h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: white; margin-bottom: 12px; }
.stats-inner > p { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 56px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px; background: rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden;
}
.stat-item { padding: 40px 24px; background: rgba(10,31,68,0.6); text-align: center; }
.stat-num  { font-family: 'Sora', sans-serif; font-size: 46px; font-weight: 800; color: var(--cyan); display: block; line-height: 1; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 8px; display: block; }

/* ── PRICING ── */
#pricing { padding: 90px 5%; background: white; }
.pricing-wrap { max-width: 1100px; margin: auto; }
.pricing-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.ptab {
  padding: 10px 24px; border-radius: 100px;
  border: 1.5px solid var(--border); background: white;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.ptab.active { background: var(--navy); color: white; border-color: var(--navy); }
.pricing-table-wrap { overflow-x: auto; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  background: var(--navy); color: white; padding: 16px 20px;
  text-align: left; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600;
}
.pricing-table th:first-child { border-radius: 12px 0 0 0; }
.pricing-table th:last-child  { border-radius: 0 12px 0 0; text-align: right; }
.pricing-table td { padding: 16px 20px; border-bottom: 1px solid var(--border); font-size: 15px; }
.pricing-table td:last-child  { text-align: right; font-family: 'Sora', sans-serif; font-weight: 700; color: var(--blue); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--off); }
.pricing-note { text-align: center; margin-top: 20px; font-size: 13px; color: var(--muted); }
.pricing-section { display: none; }
.pricing-section.active { display: block; }

/* ── WHY US ── */
#why { padding: 90px 5%; background: var(--off); }
.why-wrap { max-width: 1200px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-big-card {
  background: var(--navy); border-radius: 20px; padding: 40px;
  color: white; position: relative; overflow: hidden;
}
.why-big-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,217,0.2) 0%, transparent 70%);
}
.why-big-icon { font-size: 48px; margin-bottom: 16px; display: block; position: relative; z-index: 1; }
.why-big-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; position: relative; z-index: 1; }
.why-big-card p  { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; position: relative; z-index: 1; }
.why-small-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.why-small {
  background: white; border: 1px solid var(--border); border-radius: 14px; padding: 20px;
  transition: transform .2s;
}
.why-small:hover { transform: translateY(-3px); }
.why-small-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.why-small strong { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 4px; }
.why-small span   { font-size: 12px; color: var(--muted); }
.why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.why-point  { display: flex; gap: 16px; align-items: flex-start; }
.wp-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  background: linear-gradient(135deg, rgba(0,184,217,0.12), rgba(21,101,192,0.12));
  border: 1px solid rgba(0,184,217,0.2);
}
.wp-text h4 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.wp-text p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── REVIEWS (home) ── */
#reviews { padding: 90px 5%; background: white; }
.reviews-wrap { max-width: 1200px; margin: auto; }
.review-summary {
  text-align: center; margin-bottom: 40px;
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.rs-item strong { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 800; color: var(--navy); display: block; }
.rs-item span   { font-size: 14px; color: var(--muted); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 20px; }
.review-card {
  background: var(--off); border: 1px solid var(--border); border-radius: 18px; padding: 28px;
  position: relative; transition: transform .2s, box-shadow .2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,100,200,0.08); }
.review-card.featured { background: var(--navy); border-color: transparent; }
.review-card.featured .rv-text   { color: rgba(255,255,255,0.85); }
.review-card.featured .rv-name   { color: white; }
.review-card.featured .rv-source { color: rgba(255,255,255,0.5); }
.rv-stars  { display: flex; gap: 3px; margin-bottom: 16px; }
.rv-stars span { color: var(--gold); font-size: 16px; }
.rv-text   { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.rv-footer { display: flex; align-items: center; gap: 12px; }
.rv-avatar {
  width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; color: white;
}
.rv-name   { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); }
.rv-source { font-size: 12px; color: var(--muted); }
.rv-badge  {
  position: absolute; top: 20px; right: 20px;
  background: var(--green); color: white; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; letter-spacing: .5px;
}

/* ── CONTACT (home) ── */
#contact { padding: 90px 5%; background: var(--off); }
.contact-wrap { max-width: 1100px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.contact-info > p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: white; border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px;
}
.ci-icon {
  width: 46px; height: 46px; min-width: 46px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,184,217,0.12), rgba(21,101,192,0.12));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.ci-text strong  { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); display: block; }
.ci-text a, .ci-text span { font-size: 14px; color: var(--muted); text-decoration: none; }
.ci-text a:hover { color: var(--blue); }
.contact-form-box {
  background: white; border: 1px solid var(--border); border-radius: 20px; padding: 36px;
  box-shadow: 0 8px 40px rgba(0,100,200,0.07);
}
.contact-form-box h3 { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.contact-form-box > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--text); background: var(--off); outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--cyan); background: white; }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit {
  width: 100%; padding: 14px; border-radius: 10px;
  background: linear-gradient(135deg, #00b8d9, #1565c0);
  color: white; border: none; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px;
  cursor: pointer; transition: opacity .2s, transform .2s;
}
.form-submit:hover { opacity: .9; transform: translateY(-1px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner   { grid-template-columns: 1fr; }
  .hero-card    { display: none; }
  .why-wrap     { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .img-strip    { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero-stats { gap: 20px; flex-wrap: wrap; }
}
