/* ── HOME PAGE STYLES ── */

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdfb 0%, #e6f9f8 40%, #f8fffd 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--teal);
  opacity: .06;
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.shape-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; opacity: .05; }
.shape-3 { width: 120px; height: 120px; top: 30%; left: 15%; opacity: .08; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--teal);
  color: var(--white);
  padding: .45rem 1.1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: .03em;
}

.hero-content h1 {
  margin-bottom: 1.2rem;
  color: var(--dark);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-icon { font-size: 1rem; }

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-bg {
  position: absolute;
  width: 82%;
  height: 82%;
  background: radial-gradient(circle, rgba(27,188,176,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-img {
  width: 100%;
  max-width: 480px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  animation: heroFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(27,188,176,.22));
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-badge-float {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: .8rem 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  animation: badgeFloat 4s ease-in-out infinite;
}
.hero-badge-float strong { font-size: 1.1rem; font-weight: 700; color: var(--teal); }
.hero-badge-float span { font-size: .72rem; color: var(--text-muted); font-weight: 500; }

.badge-quiet { bottom: 15%; left: -10%; animation-delay: 0s; }
.badge-filter { top: 18%; right: -8%; animation-delay: 2s; }

@keyframes badgeFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

/* CATEGORIES */
.categories-section { background: var(--gray-light); }
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.cat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card-inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 220px;
  display: flex;
  align-items: flex-end;
}
.cat-fountain .cat-card-inner { background: #0e9a90; }
.cat-feeder  .cat-card-inner { background: #374151; }
.cat-card-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  color: transparent;
  font-size: 0;
}
.cat-card:hover .cat-card-inner img { transform: scale(1.06); }
/* Dark gradient overlay so text stays readable */
.cat-fountain .cat-card-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,154,144,.85) 0%, rgba(27,188,176,.3) 55%, transparent 100%);
  z-index: 1;
}
.cat-feeder .cat-card-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.88) 0%, rgba(30,41,59,.4) 55%, transparent 100%);
  z-index: 1;
}
.cat-card-text {
  position: relative;
  z-index: 2;
  padding: 22px 28px;
  color: var(--white);
}
.cat-card-text strong { display: block; font-size: 1.35rem; font-family: var(--font-head); font-weight: 700; text-shadow: 0 2px 6px rgba(0,0,0,.3); }
.cat-card-text span { font-size: .88rem; opacity: .9; text-shadow: 0 1px 4px rgba(0,0,0,.25); }

/* PRODUCTS GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* FEATURES */
.features-section { background: var(--white); }
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.features-right { display: flex; flex-direction: column; gap: 28px; }
.feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.feature-item:hover { background: var(--teal-light); }
.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item h3 { font-size: 1rem; margin-bottom: .4rem; color: var(--dark); }
.feature-item p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* STATS */
.stats-section { background: var(--dark); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item { padding: 20px; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--teal);
  margin-bottom: .4rem;
}
.stat-label { color: rgba(255,255,255,.6); font-size: .9rem; font-weight: 500; }

/* TRUST BADGES */
.trust-section { background: var(--gray-light); }
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-badge {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(27,188,176,.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.trust-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-badge-icon { font-size: 2rem; margin-bottom: .8rem; }
.trust-badge strong { display: block; color: var(--dark); font-size: .95rem; margin-bottom: .3rem; }
.trust-badge span { color: var(--text-muted); font-size: .83rem; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-banner-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape-1 {
  position: absolute;
  width: 400px; height: 400px;
  background: var(--teal);
  opacity: .06;
  border-radius: 50%;
  top: -150px; right: -100px;
}
.cta-shape-2 {
  position: absolute;
  width: 200px; height: 200px;
  background: var(--orange);
  opacity: .06;
  border-radius: 50%;
  bottom: -80px; left: -60px;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-banner-inner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .6rem; }
.cta-banner-inner p { color: rgba(255,255,255,.65); font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .features-layout { gap: 50px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content h1, .hero-desc { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image-wrap { order: -1; max-width: 360px; margin: 0 auto; }
  .badge-quiet { left: 0; bottom: 5%; }
  .badge-filter { right: 0; top: 5%; }
  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-layout { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-badges-grid { grid-template-columns: 1fr 1fr; }
}
