/* ═══════════════════════════════════════════════════════════════════
   HEALTHY WATER SECTION — Full Dark Theme
   Parent: .book-service-cta (dark navy bg + overlay)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Wrapper ── */
.hw-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0px 28px ;
  font-family: 'Montserrat', sans-serif;
}

/* ══════════════════════════════════════
   HEADING BLOCK
══════════════════════════════════════ */
.hw-heading {
  text-align: center;
  margin-bottom: 24px;
}

.hw-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--mc-heading-font) !important;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(61, 174, 70, 0.15);
  border: 1px solid rgba(61, 174, 70, 0.40);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5ddb6a;
  margin-bottom: 10px;
}



@keyframes hw-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.hw-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 10px;
}

.hw-title span {
  color: #5ddb6a;
}

.hw-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(190, 220, 255, 0.78);
  max-width: 580px;
  margin: 0 auto;
}



/* ══════════════════════════════════════
   BODY GRID — left card + right grid
══════════════════════════════════════ */
.hw-body {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 20px;
  align-items: stretch;
}

/* ══════════════════════════════════════
   LEFT — STATEMENT CARD
══════════════════════════════════════ */
.hw-card {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(1, 136, 207, 0.28);
  border-radius: 18px;
  padding: 24px 24px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}



/* Bottom-right ambient glow */
.hw-card::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(1, 136, 207, 0.18), transparent 65%);
  pointer-events: none;
}



/* Icon */
.hw-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(93, 219, 106, 0.32);
  margin-bottom: 0;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(93, 219, 106, 0.14);
}

.hw-card-icon .iconify {
  font-size: 80px;
  color: #5ddb6a;
}

.hw-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: #e8f4ff;
  margin: 0 !important;
}

/* Icon + Title inline row */
.hw-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}

.hw-card-title strong {
  color: #5ddb6a;
  font-weight: 800;
}

.hw-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
  margin: 10px 0;
}

.hw-card-detail {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(175, 210, 245, 0.70);
  margin: 0;
  flex: 1;
}



/* ══════════════════════════════════════
   RIGHT — BENEFITS 2×3 GRID
══════════════════════════════════════ */
.hw-benefits-wrap {
  display: flex;
  flex-direction: column;
}

.hw-benefits-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(175, 210, 245, 0.50);
  margin: 0 0 10px;
}

.hw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}

/* Each benefit tile */
.hw-tile {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  backdrop-filter: blur(12px);
  height: 80px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  text-align: left;
  overflow: hidden;
  cursor: default;
  transition:
    background 0.30s ease,
    border-color 0.30s ease,
    transform 0.30s ease,
    box-shadow 0.30s ease;
}

/* Sweep-in top accent on hover */


.hw-tile:hover {
  background: rgba(1, 136, 207, 0.13);
  border-color: rgba(1, 136, 207, 0.38);
  transform: translateY(-5px);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(1, 136, 207, 0.12);
}

.hw-tile:hover::before {
  transform: scaleX(1);
}

.hw-tile:hover::after {
  opacity: 1;
}

/* Icon circle */
.hw-tile-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  overflow: hidden;
  flex-shrink: 0;
  transition:
    background 0.30s ease,
    border-color 0.30s ease,
    box-shadow 0.30s ease;
}

.hw-tile:hover .hw-tile-icon {
  border-color: rgba(93, 219, 106, 0.42);
}

.hw-tile-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  transition: transform 0.30s ease, filter 0.30s ease;
  filter: brightness(1.05);
}

.hw-tile:hover .hw-tile-icon img {
  transform: scale(1.15);
  filter: brightness(1.3) drop-shadow(0 0 6px rgba(93, 219, 106, 0.45));
}

/* Label */
.hw-tile-label {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.2px;
  line-height: 1.3;
  text-align: left;
  transition: color 0.30s ease;
}

.hw-tile:hover .hw-tile-label {
  color: #5ddb6a;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hw-body {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hw-card {
    padding: 30px 26px;
  }

  .hw-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤767px)
══════════════════════════════════════ */
@media (max-width: 767px) {
  .hw-section {
    padding: 0px 16px ;
  }

  .hw-heading {
    margin-bottom: 36px;
  }

  .hw-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hw-card {
    padding: 20px;
    border-radius: 18px;
  }

  .hw-card-icon {
    width: 65px;
    height: 65px;
  }

  .hw-card-icon .iconify {
    font-size: 45px;
  }

  .hw-card-title {
    font-size: 15px;
  }

  .hw-card-detail {
    font-size: 13px;
    margin-top: 0 !important;
  }

  .hw-stat-num {
    font-size: 22px;
  }

  .hw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hw-tile {
    padding: 8px;
    height: auto;
    gap: 10px;
    border-radius: 14px;
  }

  .hw-tile-icon {
    width: 52px;
    height: 52px;
  }


  .hw-tile-label {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .hw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hw-tile {
    padding: 14px 10px;
  }

  .hw-tile-label {
    font-size: 11px;
  }
}
