/* =============================================
   HOME PAGE — REDESIGNED STYLES
   Bluebeam | Shriya Beverages
   ============================================= */

/* ---- Shared helpers ---- */
.text-center { text-align: center; }
.section-pad { padding: 90px 0; }

.sec-badge {
  display: inline-block;
  background: rgba(13,110,253,0.1);
  color: #0d6efd;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(13,110,253,0.18);
}
.sec-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 14px;
}
.sec-title span { color: #0d6efd; }
.sec-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto 10px;
  line-height: 1.8;
}
.title-line {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, #0d6efd, #38bdf8);
  border-radius: 4px;
  margin: 18px auto 40px;
}
.title-line-left { margin-left: 0; }
.sec-header { margin-bottom: 20px; }

/* ---- Reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.active { opacity: 1; transform: none; }

/* ---- Fade-up (hero elements) ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.75s ease forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* =============================================
   BUTTONS
   ============================================= */
.hbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.hbtn svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.hbtn:hover svg { transform: translateX(4px); }

.hbtn-primary {
  background: linear-gradient(135deg, #0d6efd 0%, #0a4fc4 100%);
  color: white;
  box-shadow: 0 6px 24px rgba(13,110,253,0.38);
}
.hbtn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,110,253,0.5);
  color: white;
}

.hbtn-glass {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}
.hbtn-glass:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
  color: white;
}

.hbtn-white {
  background: white;
  color: #0d6efd;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  font-weight: 800;
}
.hbtn-white:hover {
  background: #e8f2ff;
  transform: translateY(-3px);
  color: #063699;
}

.hbtn-glass-white {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}
.hbtn-glass-white:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-3px);
  color: white;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 50%, #dbeafe 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 90px; /* navbar height + small gap */
}

/* Splash base background */
.hero-splash-bg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40vh;
  background: url('../images/new_water_surface.png') no-repeat bottom center;
  background-size: cover;
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
}

/* Canvas water ripple */
#water-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* Floating bubbles */
.bubbles-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.bubble {
  position: absolute;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.55), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.25);
  animation: bubbleRise linear infinite;
}
/* Generate varied bubbles via nth-child */
.bubble:nth-child(1)  { width:18px;height:18px;left:8%;animation-duration:9s;animation-delay:0s; }
.bubble:nth-child(2)  { width:10px;height:10px;left:14%;animation-duration:12s;animation-delay:1s; }
.bubble:nth-child(3)  { width:24px;height:24px;left:22%;animation-duration:8s;animation-delay:2s; }
.bubble:nth-child(4)  { width:8px;height:8px;left:30%;animation-duration:14s;animation-delay:0.5s; }
.bubble:nth-child(5)  { width:16px;height:16px;left:38%;animation-duration:10s;animation-delay:3s; }
.bubble:nth-child(6)  { width:30px;height:30px;left:46%;animation-duration:11s;animation-delay:1.5s; }
.bubble:nth-child(7)  { width:12px;height:12px;left:54%;animation-duration:7s;animation-delay:2.5s; }
.bubble:nth-child(8)  { width:20px;height:20px;left:62%;animation-duration:13s;animation-delay:0.8s; }
.bubble:nth-child(9)  { width:9px;height:9px;left:70%;animation-duration:9s;animation-delay:3.5s; }
.bubble:nth-child(10) { width:22px;height:22px;left:76%;animation-duration:11s;animation-delay:1.2s; }
.bubble:nth-child(11) { width:14px;height:14px;left:82%;animation-duration:8s;animation-delay:4s; }
.bubble:nth-child(12) { width:28px;height:28px;left:88%;animation-duration:15s;animation-delay:0.3s; }
.bubble:nth-child(13) { width:10px;height:10px;left:5%;animation-duration:10s;animation-delay:2s; }
.bubble:nth-child(14) { width:18px;height:18px;left:18%;animation-duration:12s;animation-delay:4.5s; }
.bubble:nth-child(15) { width:6px;height:6px;left:50%;animation-duration:7s;animation-delay:1.8s; }
.bubble:nth-child(16) { width:22px;height:22px;left:65%;animation-duration:9s;animation-delay:3.2s; }
.bubble:nth-child(17) { width:15px;height:15px;left:90%;animation-duration:11s;animation-delay:0.9s; }
.bubble:nth-child(18) { width:32px;height:32px;left:35%;animation-duration:16s;animation-delay:2.2s; }

@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 0.8; }
  100% { transform: translateY(-110vh) translateX(30px) scale(0.6); opacity: 0; }
}

/* SVG Waves */
.wave-container {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}
.wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 200%;
  height: 100%;
}
.wave1 { animation: waveScroll 8s linear infinite; }
.wave2 { animation: waveScroll 12s linear infinite reverse; }
.wave3 { animation: waveScroll 10s linear infinite 1s; }
@keyframes waveScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero container grid */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  flex: 1;
  padding-top: 20px;
  padding-bottom: 60px;
  position: relative;
  z-index: 3;
}

.hbtn-white-bordered {
  background: white;
  color: #0f172a;
  border: 2px solid #e2e8f0;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.hbtn-white-bordered:hover {
  border-color: #0d6efd;
  color: #0d6efd;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13,110,253,0.15);
}

/* ---- Hero Left ---- */
.hero-left { 
  padding: 0 0 40px 0; 
  z-index: 3; 
  align-self: flex-start; 
  margin-top: 20px;
}
.pill-dot {
  width: 8px; height: 8px;
  background: #38bdf8;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%,100% { transform:scale(1); box-shadow: 0 0 0 0 rgba(56,189,248,0.5); }
  50%      { transform:scale(1.2); box-shadow: 0 0 0 6px rgba(56,189,248,0); }
}
/* ---- Hero H1 ---- */
.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.wt-word {
  display: inline-block;
  color: #062c6d;
}
.hero-gradient-text {
  color: #0066cc;
  position: relative;
}
.hero-gradient-text::after { display: none; }

/* ---- Line 1: "Pure Drinking Water," shimmer sweep ---- */
.hero-line1 {
  display: inline-block;
  position: relative;
  color: white;
}
/* Per-word staggered ripple-in */
.wt-word {
  display: inline-block;
  position: relative;
  animation: wordWaterIn 0.8s cubic-bezier(0.22,1,0.36,1) both;
}
.wt-word:nth-child(1) { animation-delay: 0.1s; }
.wt-word:nth-child(2) { animation-delay: 0.22s; }
.wt-word:nth-child(3) { animation-delay: 0.34s; }
@keyframes wordWaterIn {
  0%   { opacity: 0; transform: translateY(16px) scale(0.96); filter: blur(6px); }
  60%  { filter: blur(0px); }
  100% { opacity: 1; transform: translateY(0)   scale(1); }
}
/* Sweeping water-light shimmer that replays every 6s */
.hero-line1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent         0%,
    rgba(147,210,255,0.18) 45%,
    rgba(255,255,255,0.26) 50%,
    rgba(147,210,255,0.18) 55%,
    transparent         100%
  );
  background-size: 300% 100%;
  background-position: -200% 0;
  -webkit-background-clip: text;
  background-clip: text;
  animation: line1Shimmer 6s ease-in-out infinite 1.2s;
  pointer-events: none;
}
@keyframes line1Shimmer {
  0%,30%  { background-position: -200% 0; opacity: 0; }
  32%     { opacity: 1; }
  70%     { background-position: 200% 0; opacity: 1; }
  72%,100%{ opacity: 0; }
}

/* ---- Line 2: "Every Drop Matters" — flowing liquid gradient ---- */
.hero-gradient-text {
  /* Liquid multi-stop gradient that flows left→right continuously */
  background: linear-gradient(
    90deg,
    #bfdbfe  0%,
    #38bdf8 15%,
    #67e8f9 28%,
    #ffffff 40%,
    #a5f3fc 50%,
    #67e8f9 62%,
    #38bdf8 75%,
    #93c5fd 88%,
    #bfdbfe 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: liquidFlow 5s linear infinite;
  /* Glow that breathes */
  filter: drop-shadow(0 0 18px rgba(56,189,248,0.55));
  display: inline-block;
  position: relative;
}
@keyframes liquidFlow {
  0%   { background-position: 200% 0%; }
  100% { background-position: -100% 0%; }
}
/* Animated water-wave underline */
.hero-gradient-text::after {
  content: '';
  display: block;
  margin-top: 6px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    transparent, #38bdf8, #a5f3fc, #67e8f9, #38bdf8, transparent
  );
  background-size: 300% 100%;
  animation: liquidFlow 3.5s linear infinite;
  opacity: 0.85;
}


/* ---- Hero paragraph ---- */
.hero-para {
  font-size: 1.05rem;
  color: #334155;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 480px;
  position: relative;
  z-index: 2;
}
.hero-para-shimmer::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(147,210,255,0.15) 40%,
    rgba(200,240,255,0.28) 50%,
    rgba(147,210,255,0.15) 60%,
    transparent 100%
  );
  animation: paraSweep 7s ease-in-out infinite 2.5s;
  pointer-events: none;
  border-radius: 4px;
  z-index: 1;
}
@keyframes paraSweep {
  0%     { left: -80%; opacity: 0; }
  5%     { opacity: 1; }
  90%    { left: 130%; opacity: 1; }
  100%   { left: 130%; opacity: 0; }
}
/* Highlighted brand names glow like water drops */
.para-highlight {
  color: #93c5fd;
  font-weight: 700;
  position: relative;
  display: inline-block;
  animation: highlightPulse 4s ease-in-out infinite;
}
@keyframes highlightPulse {
  0%,100% { color: #93c5fd; text-shadow: 0 0 0 transparent; }
  50%     { color: #67e8f9; text-shadow: 0 0 12px rgba(103,232,249,0.6); }
}
/* Key quality words gently pulse opacity instead of floating vertically */
.para-word {
  display: inline-block;
  animation: paraWordPulse 4s ease-in-out infinite;
}
.para-word:nth-child(3) { animation-delay: 0s; }
.para-word:nth-child(4) { animation-delay: 0.7s; }
.para-word:nth-child(5) { animation-delay: 1.4s; }
.para-word:nth-child(7) { animation-delay: 2.1s; }
@keyframes paraWordPulse {
  0%,100% { opacity: 0.82; }
  50%     { opacity: 1; text-shadow: 0 0 8px rgba(255,255,255,0.2); }
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-badges {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 14px 22px;
  backdrop-filter: blur(12px);
  max-width: 480px;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  justify-content: center;
}
.hb-icon { font-size: 1.4rem; }
.hero-badge-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  line-height: 1.35;
}
.hero-badge-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  margin: 0 4px;
  flex-shrink: 0;
}



/* ---- Para word underline sweep (driven by JS --wd var) ---- */
.para-word {
  position: relative;
}
.para-word::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -1px;
  height: 1.5px;
  background: linear-gradient(90deg, #67e8f9, #38bdf8);
  border-radius: 2px;
  animation: wordUnderline 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
  animation-delay: var(--wd, 1s);
  opacity: 0.75;
}
@keyframes wordUnderline {
  0%   { right: 100%; opacity: 0; }
  20%  { opacity: 0.75; }
  100% { right: 0%;   opacity: 0.75; }
}

/* ---- Hero Right ---- */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 560px;
}
.hero-bottle-scene {
  position: relative;
  width: 380px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Soft radial glow behind the bottles to blend perfectly */
.hero-bottle-scene::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -40%);
  width: 140%; height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
}





/* Local splash behind bottle */
.hero-local-splash {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  max-width: 600px;
  z-index: 2;
  pointer-events: none;
}

/* Bottle image */
.hero-bottle-img {
  max-height: 480px;
  object-fit: contain;
  position: relative;
  z-index: 3;
  margin-top: 10px;
}

/* Floating info cards */
.float-card {
  position: absolute;
  z-index: 4;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,30,120,0.25);
  border: 1px solid rgba(255,255,255,0.6);
  animation: floatCard 3.5s ease-in-out infinite;
  min-width: 150px;
}
.float-card.fc1 { top: 8%;  left: -18%; animation-delay: 0s; }
.float-card.fc2 { bottom: 18%; right: -16%; animation-delay: 1.2s; }
.float-card.fc3 { top: 48%; left: -22%; animation-delay: 0.7s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.fc-icon { font-size: 1.6rem; flex-shrink: 0; }
.fc-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
.fc-text span { font-size: 0.7rem; color: #64748b; }

/* Water drops */
.drop-wrap { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.water-drop {
  position: absolute;
  width: 8px; height: 12px;
  background: linear-gradient(180deg, rgba(147,197,253,0.8), rgba(56,189,248,0.4));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: dropFall 4s ease-in infinite;
}
.wd0 { left:15%;top:-10%;animation-delay:0s;   width:6px;height:10px; }
.wd1 { left:35%;top:-5%; animation-delay:0.8s; width:10px;height:14px; }
.wd2 { left:55%;top:-8%; animation-delay:1.6s; width:7px;height:11px; }
.wd3 { left:75%;top:-12%;animation-delay:2.4s; width:9px;height:13px; }
.wd4 { left:20%;top:-6%; animation-delay:3.2s; width:5px;height:9px; }
.wd5 { left:60%;top:-3%; animation-delay:1.1s; width:11px;height:16px; }
.wd6 { left:80%;top:-9%; animation-delay:2s;   width:6px;height:10px; }
.wd7 { left:42%;top:-14%;animation-delay:3.6s; width:8px;height:12px; }
@keyframes dropFall {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 0.8; }
  100% { transform: translateY(520px); opacity: 0; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(15, 23, 42, 0.6);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.4); opacity: 0.3; }
}

/* =============================================
   FEATURES STRIP
   ============================================= */
.feat-strip {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 30px 0;
  position: relative;
  z-index: 5;
}
.feat-strip-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: start;
}
.feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding: 20px 16px;
  transition: all 0.3s ease;
  cursor: default;
}
.feat-item:hover { transform: translateY(-3px); }
.feat-icon { font-size: 1.8rem; flex-shrink: 0; color: #062c6d; }
.feat-text { text-align: center; }
.feat-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}
.feat-text span {
  font-size: 0.7rem;
  color: #475569;
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products-sec {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
/* Animated diagonal stripe watermark */
.products-sec::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(13,110,253,0.03) 0px,
    rgba(13,110,253,0.03) 1px,
    transparent 1px,
    transparent 48px
  );
  animation: stripeShift 20s linear infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes stripeShift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(96px); }
}
.products-sec .container,
.products-sec .section-wave-top,
.products-sec .section-wave-bot {
  position: relative;
  z-index: 1;
}
.section-wave-top,
.section-wave-bot {
  position: absolute;
  left: 0; right: 0;
  line-height: 0;
}
.section-wave-top { top: 0; }
.section-wave-bot { bottom: 0; }
.section-wave-top svg,
.section-wave-bot svg { width: 100%; display: block; }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.prod-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,110,253,0.08);
  border: 1px solid rgba(13,110,253,0.07);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.prod-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(13,110,253,0.18);
  border-color: rgba(13,110,253,0.18);
}
.prod-img-bg {
  background: transparent;
  padding: 36px 28px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  position: relative;
  overflow: hidden;
}
/* Dot-grid pattern layer */
.prod-img-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,110,253,0.12) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  z-index: 0;
}
/* Soft corner glows */
.prod-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 15%, rgba(147,197,253,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(56,189,248,0.2)  0%, transparent 55%);
  z-index: 0;
}
/* Animated ripple behind product image */
.prod-ripple {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(13,110,253,0.18);
  box-shadow: 0 0 0 0 rgba(13,110,253,0.1);
  animation: prodRipple 3s ease-in-out infinite;
  z-index: 1;
}
@keyframes prodRipple {
  0%,100% { transform: scale(1);    opacity: 0.9; box-shadow: 0 0 0 0   rgba(13,110,253,0.12); }
  50%      { transform: scale(1.25); opacity: 0.4; box-shadow: 0 0 0 20px rgba(13,110,253,0); }
}
.prod-img-bg img {
  max-height: 150px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 24px rgba(13,110,253,0.2));
  transition: all 0.4s ease;
}
.prod-card:hover .prod-img-bg img { transform: scale(1.06) translateY(-6px); }
.prod-size-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: white;
  color: #0d6efd;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(13,110,253,0.15);
}
.prod-body { padding: 26px 26px 30px; }
.prod-sub-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0d6efd;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.prod-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}
.prod-desc {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 16px;
}
.prod-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.prod-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: #475569;
}
.prod-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: #0d6efd;
  border-radius: 50%;
  flex-shrink: 0;
}
.prod-pack {
  font-size: 0.76rem;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 18px;
  padding: 6px 12px;
  background: #f0f6ff;
  border-radius: 8px;
  display: inline-block;
}
.prod-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0d6efd, #0a4fc4);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
}
.prod-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,110,253,0.35);
  color: white;
}
.prod-btn span { transition: transform 0.3s ease; }
.prod-btn:hover span { transform: translateX(4px); }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-sec {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
/* Animated aurora mesh behind about section */
.about-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 5%  20%, rgba(219,234,254,0.6) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 95% 80%, rgba(186,230,255,0.4) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 50%  0%, rgba(239,246,255,0.5) 0%, transparent 60%);
  animation: auroraShift 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes auroraShift {
  0%   { opacity: 0.6; transform: scale(1); }
  50%  { opacity: 1;   transform: scale(1.04) translateY(-10px); }
  100% { opacity: 0.7; transform: scale(1) translateY(6px); }
}
.about-sec .container { position: relative; z-index: 1; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Visual collage */
.about-visuals { position: relative; padding-bottom: 30px; }
.av-main {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(13,110,253,0.15);
}
.av-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.av-main:hover img { transform: scale(1.04); }
.av-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,30,100,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.av-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.av-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.av-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  font-weight: 600;
}
.av-secondary {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 16px;
  box-shadow: 0 10px 40px rgba(13,110,253,0.12);
  position: relative;
}
.av-secondary img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.av-cert-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, #0d6efd, #0a4fc4);
  display: flex;
  gap: 20px;
  padding: 10px 18px;
  justify-content: center;
}
.av-cert-strip span {
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Floating drop decorations */
.av-deco { position: absolute; inset: 0; pointer-events: none; }
.deco-drop {
  position: absolute;
  font-size: 1.6rem;
  animation: decoFloat 4s ease-in-out infinite;
  opacity: 0.6;
}
.d1 { top: 10%; right: -8%; animation-delay: 0s; }
.d2 { bottom: 30%; right: -12%; animation-delay: 1.5s; font-size:2rem; }
.d3 { top: 45%; left: -6%; animation-delay: 0.8s; font-size:1.2rem; }
@keyframes decoFloat {
  0%,100% { transform: translateY(0) rotate(-10deg); }
  50%      { transform: translateY(-12px) rotate(10deg); }
}

/* About content */
.about-content { }
.about-para {
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.85;
  margin-bottom: 16px;
}
.mvv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.mvv-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: #f8faff;
  border: 1px solid rgba(13,110,253,0.08);
  border-radius: 14px;
  transition: all 0.3s ease;
}
.mvv-item:hover {
  background: #dbeafe;
  border-color: rgba(13,110,253,0.2);
  transform: translateY(-3px);
}
.mvv-ic { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.mvv-item strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 4px;
}
.mvv-item p { font-size: 0.78rem; color: #64748b; line-height: 1.5; }

/* =============================================
   STATS SECTION
   ============================================= */
.stats-sec {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.stats-wave-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stats-wave-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(1.5) hue-rotate(180deg);
}
.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,20,80,0.92) 0%, rgba(0,62,159,0.88) 100%);
  z-index: 1;
}
.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-box {
  padding: 30px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}
.stat-box:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(56,189,248,0.4);
}
.stat-icon-wrap { font-size: 2rem; margin-bottom: 14px; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}
.stat-sub { font-size: 0.76rem; color: rgba(255,255,255,0.5); }

/* =============================================
   QUALITY SECTION
   ============================================= */
.quality-sec {
  background: #f8faff;
  position: relative;
  overflow: hidden;
}
/* Hexagon grid watermark */
.quality-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpolygon points='28,2 54,16 54,44 28,58 2,44 2,16' fill='none' stroke='rgba(13,110,253,0.055)' stroke-width='1'/%3E%3Cpolygon points='28,52 54,66 54,94 28,108 2,94 2,66' fill='none' stroke='rgba(13,110,253,0.055)' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
  animation: hexShift 30s linear infinite;
}
@keyframes hexShift {
  0%   { background-position: 0 0; }
  100% { background-position: 56px 100px; }
}
/* Soft left-side glow */
.quality-sec::after {
  content: '';
  position: absolute;
  left: -200px; top: 10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147,197,253,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: qualGlow 8s ease-in-out infinite alternate;
}
@keyframes qualGlow {
  0%   { transform: translateY(0) scale(1); opacity: 0.5; }
  100% { transform: translateY(40px) scale(1.1); opacity: 1; }
}
.quality-sec .container { position: relative; z-index: 1; }
.quality-inner-noimg {
  max-width: 1000px;
  margin: 0 auto;
}
.quality-inner-noimg .title-line {
  margin-left: auto;
  margin-right: auto;
}
.quality-inner-noimg .sec-sub {
  color: #64748b;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: white;
  border-radius: 20px;
  padding: 26px 20px;
  border: 1px solid rgba(13,110,253,0.06);
  box-shadow: 0 4px 20px rgba(13,110,253,0.04);
  transition: all 0.4s ease;
  transition-delay: calc(var(--i) * 60ms);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #0d6efd, #38bdf8);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(13,110,253,0.1);
  border-color: rgba(13,110,253,0.15);
}
.step-card:hover::before {
  opacity: 1;
}

.step-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-num-badge {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #0d6efd, #38bdf8);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 6px 16px rgba(13,110,253,0.25);
}
.step-icon-box { font-size: 1.6rem; flex-shrink: 0; }

.step-info strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  font-family: 'Outfit', sans-serif;
}
.step-info p { 
  font-size: 0.85rem; 
  color: #64748b; 
  line-height: 1.6; 
  margin: 0;
}

/* =============================================
   DISTRIBUTOR CTA SECTION
   ============================================= */
.dist-cta-sec {
  background: linear-gradient(135deg, #00113d 0%, #003d9e 50%, #0062d6 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Animated water waves */
.dist-water-anim {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100%;
  pointer-events: none;
}
.dw-wave {
  position: absolute;
  bottom: 0; left: -50%; right: -50%;
  height: 300px;
  border-radius: 50%;
  opacity: 0.07;
}
.dw1 {
  background: radial-gradient(ellipse, white 0%, transparent 70%);
  animation: distWave 8s ease-in-out infinite;
}
.dw2 {
  background: radial-gradient(ellipse, #38bdf8 0%, transparent 70%);
  animation: distWave 12s ease-in-out infinite reverse;
  bottom: -100px;
}
.dw3 {
  background: radial-gradient(ellipse, white 0%, transparent 70%);
  animation: distWave 10s ease-in-out infinite 2s;
  bottom: -50px;
}
@keyframes distWave {
  0%,100% { transform: translateX(0) scaleX(1); }
  50%      { transform: translateX(5%) scaleX(1.08); }
}

.dist-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.dist-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin: 12px 0 16px;
}
.dist-cta-title em { font-style: normal; color: #93c5fd; }
.dist-cta-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}
.dist-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.dist-cta-right { position: relative; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.dist-bottle-img {
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,50,200,0.4));
  animation: bottleFloat 4s ease-in-out infinite;
}
.dist-supply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.dsup-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.dsup-item:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-sec {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
/* Fine dot-matrix texture */
.gallery-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,110,253,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
/* Top-right accent orb */
.gallery-sec::after {
  content: '';
  position: absolute;
  right: -100px; top: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219,234,254,0.55) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: orbDrift 12s ease-in-out infinite alternate;
}
@keyframes orbDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-30px, 30px); }
}
.gallery-sec .container { position: relative; z-index: 1; }
.gal-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 14px;
  margin-top: 20px;
}
.gal-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #dbeafe;
}
.gal-item.large  { grid-column: span 2; }
.gal-item.tall   { grid-row: span 2; }
.gal-item.wide   { grid-column: span 2; }

.gal-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gal-item.large img, .gal-item.wide img { height: 260px; }
.gal-item.tall img  { height: 454px; }
.gal-item:hover img { transform: scale(1.06); }

.gal-cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,30,100,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gal-item:hover .gal-cap { opacity: 1; }
.gal-cap span {
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
}
.gal-zoom {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}
.gal-item:hover .gal-zoom { background: #0d6efd; border-color: #0d6efd; }

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: linear-gradient(90deg,
    rgba(219,234,254,0.8) 0%,
    rgba(239,246,255,0.9) 40%,
    rgba(186,230,255,0.7) 70%,
    rgba(219,234,254,0.8) 100%);
  background-size: 200% 100%;
  animation: trustShimmer 6s ease-in-out infinite alternate;
  border-top: 1px solid rgba(13,110,253,0.1);
  border-bottom: 1px solid rgba(13,110,253,0.1);
  padding: 20px 0;
}
@keyframes trustShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-logos { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.trust-logo {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0d6efd;
  padding: 6px 16px;
  background: white;
  border-radius: 50px;
  border: 1.5px solid rgba(13,110,253,0.15);
  white-space: nowrap;
  transition: all 0.3s ease;
}
.trust-logo:hover { background: #0d6efd; color: white; }
.trust-sep { color: rgba(13,110,253,0.2); font-size: 1.2rem; }

/* =============================================
   CONTACT TEASER
   ============================================= */
.contact-teaser {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
/* Diagonal gradient aurora */
.contact-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 0%   100%, rgba(219,234,254,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 100%   0%, rgba(186,230,255,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 55%  55%, rgba(239,246,255,0.35) 0%, transparent 60%);
  animation: contactAurora 16s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes contactAurora {
  0%   { opacity: 0.7; transform: scale(1); }
  50%  { opacity: 1;   transform: scale(1.06) rotate(1deg); }
  100% { opacity: 0.8; transform: scale(0.98) rotate(-1deg); }
}
/* Bottom-left wavy accent */
.contact-teaser::after {
  content: '';
  position: absolute;
  left: -60px; bottom: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147,197,253,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: orbDrift 10s ease-in-out infinite alternate-reverse;
}
.contact-teaser .container { position: relative; z-index: 1; }
.contact-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.ct-details { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.ct-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(13,110,253,0.08);
  box-shadow: 0 2px 10px rgba(13,110,253,0.05);
  transition: all 0.3s ease;
}
.ct-detail-item:hover { border-color: rgba(13,110,253,0.25); transform: translateX(4px); }
.ct-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ct-detail-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 4px;
}
.ct-detail-item p { font-size: 0.84rem; color: #475569; line-height: 1.55; }

/* Contact form card */
.ct-form-card {
  background: white;
  border: 1px solid rgba(13,110,253,0.1);
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 8px 40px rgba(13,110,253,0.08);
}
.ct-form-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
}
.form-success {
  background: #ecfdf5; color: #065f46;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-error {
  background: #fef2f2; color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.ct-field { margin-bottom: 14px; }
.ct-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}
.ct-field input,
.ct-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(13,110,253,0.15);
  border-radius: 10px;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: #f8faff;
  outline: none;
  transition: all 0.3s ease;
}
.ct-field input:focus,
.ct-field textarea:focus {
  border-color: #0d6efd;
  background: white;
  box-shadow: 0 0 0 3px rgba(13,110,253,0.1);
}
.ct-field textarea { resize: vertical; min-height: 100px; }
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #94a3b8; }

/* =============================================
   WATER CANVAS ANIMATION (JS driven)
   ============================================= */
/* Styles are in JS via canvas */

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .feat-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .feat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-left { padding: 50px 0 0; }
  .hero-para { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-badges { margin: 0 auto; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-inner { grid-template-columns: 1fr; }
  .dist-cta-inner { grid-template-columns: 1fr; }
  .dist-cta-right { display: none; }
  .contact-teaser-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-section { min-height: auto; padding-bottom: 60px; }
  .hero-container { padding-bottom: 60px; }
  .prod-grid { grid-template-columns: 1fr; }
  .gal-masonry { grid-template-columns: 1fr 1fr; }
  .gal-item.large, .gal-item.wide { grid-column: span 2; }
  .gal-item.tall { grid-row: span 1; }
  .gal-item.tall img { height: 220px; }
  .feat-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv-row { grid-template-columns: 1fr; }
  .ct-form-row { grid-template-columns: 1fr; }
  .hero-badges { flex-wrap: wrap; }
  .hero-badge-sep { display: none; }
}
@media (max-width: 480px) {
  .gal-masonry { grid-template-columns: 1fr; }
  .gal-item.large, .gal-item.wide { grid-column: span 1; }
  .feat-strip-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .dist-cta-btns { flex-direction: column; }
}
