/* ============================================================
   TECH VISION SOLUTIONS — style.css
   Premium Water Tank Cleaning | Kanhangad, Kerala
============================================================ */

/* ---- CSS Variables ---- */
:root {
  --teal:        #03B19F;
  --teal-light:  #00CFBC;
  --teal-dark:   #028A7D;
  --teal-glow:   rgba(3, 177, 159, 0.22);
  --teal-glow-lg:rgba(3, 177, 159, 0.35);
  --navy:        rgb(15, 23, 42);
  --navy-2:      rgb(20, 31, 58);
  --navy-card:   rgba(255,255,255,0.04);
  --navy-border: rgba(255,255,255,0.08);
  --white:       #ffffff;
  --off-white:   #F0FAFB;
  --text-dark:   #0F172A;
  --text-body:   #334155;
  --text-muted:  #64748B;
  --light-steel: #94A3B8;
  --glass-bg:    rgba(255,255,255,0.06);
  --glass-border:rgba(255,255,255,0.14);
  --font:        'Plus Jakarta Sans', sans-serif;
  --radius:      14px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover:0 12px 48px rgba(3,177,159,0.18);
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- Section Padding ---- */
.section-pad { padding: 96px 0; }

/* ---- Shared Section Header ---- */
.section-header { margin-bottom: 12px; }
.sec-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(3,177,159,0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.light-eyebrow {
  color: var(--teal-light);
  background: rgba(3,177,159,0.15);
}
.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.light-title { color: var(--white); }
.sec-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.light-subtitle { color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto; text-align: center; }


/* ================================================================
   SCROLL PROGRESS BAR
================================================================ */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  z-index: 9999;
  transition: width 0.1s linear;
}


/* ================================================================
   NAVBAR
================================================================ */
.nav-main {
  padding: 18px 0;
  transition: var(--transition);
  z-index: 1000;
  background: transparent !important;
}
.nav-main.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.88) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.nav-main.scrolled .nav-brand-text { color: var(--text-dark); }
.nav-main.scrolled .nav-brand-text span { color: var(--teal-dark); }
.nav-main.scrolled .nav-link { color: var(--text-dark) !important; }
.nav-main.scrolled .nav-link:hover { color: var(--teal-dark) !important; background: rgba(3,177,159,0.08); }
.nav-main.scrolled .btn-nav-cta { color: var(--white) !important; }
.nav-main.scrolled .nav-toggler { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.1); color: var(--text-dark); }
.nav-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.nav-brand-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-brand-text span { color: var(--teal); }
.nav-main .nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-main .nav-link:hover {
  color: var(--white) !important;
  background: var(--glass-bg);
}
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy) !important;
  background: var(--teal);
  padding: 10px 22px !important;
  border-radius: 100px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-nav-cta:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--teal-glow-lg);
}
.nav-toggler {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}
.navbar-collapse { transition: var(--transition); }

@media (max-width: 991px) {
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: rgba(10,16,35,0.96);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    margin-top: 12px;
    padding: 16px;
    border: 1px solid var(--navy-border);
    overflow: hidden;
  }
  .nav-main.scrolled .navbar-collapse.show,
  .nav-main.scrolled .navbar-collapse.collapsing {
    background: rgba(255,255,255,0.97);
    border-color: rgba(0,0,0,0.08);
  }
}


/* ================================================================
   HERO SECTION
================================================================ */
.hero-sec {
  position: relative;
  background: var(--navy) url('Images/testimage.png') center/cover no-repeat;
  overflow: hidden;
  min-height: 100vh;
}
.hero-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 16, 35, 0.88) 0%,
    rgba(15, 23, 42, 0.80) 50%,
    rgba(10, 20, 40, 0.92) 100%
  );
  z-index: 0;
}
#waterCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 2;
}
.hero-glow.g1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(3,177,159,0.25) 0%, transparent 70%);
  top: -100px; left: -150px;
}
.hero-glow.g2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(3,177,159,0.18) 0%, transparent 70%);
  bottom: 50px; right: -100px;
}
.hero-glow.g3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,207,188,0.12) 0%, transparent 70%);
  top: 50%; right: 30%;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 0;
  padding-bottom: 120px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(3,177,159,0.15);
  border: 1px solid rgba(3,177,159,0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  opacity: 0;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  animation: heroFadeUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.05s both;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 60%, #00E8D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
  font-weight: 400;
  animation: heroFadeUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.22s both;
}
.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
  animation: heroFadeUp 0.55s cubic-bezier(0.22,1,0.36,1) 0.38s both;
}
/* ----- CTA Buttons (reusable) ----- */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  padding: 14px 30px;
  border-radius: 100px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--teal-glow-lg);
  color: var(--navy);
}
.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 30px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-whatsapp-cta:hover {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.35);
}
/* Hero Stats */
.hero-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  opacity: 0;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.hero-stat-item .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-item .stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}
.hero-stat-item .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
  opacity: 0.5;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line-anim {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }


/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar-sec {
  background: var(--teal);
  padding: 28px 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-item i {
  font-size: 1.4rem;
  color: var(--navy);
  opacity: 0.9;
}
.trust-item span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}


/* ================================================================
   WHY CLEAN SECTION
================================================================ */
.sec-why { background: var(--white); }
.feat-card {
  background: var(--white);
  border: 1px solid rgba(3,177,159,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,177,159,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(3,177,159,0.3);
}
.feat-card:hover::before { opacity: 1; }
.feat-card-highlight {
  background: var(--navy);
  border-color: transparent;
}
.feat-card-highlight h3 { color: var(--white); }
.feat-card-highlight p { color: rgba(255,255,255,0.6); }
.feat-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.icon-teal { background: rgba(3,177,159,0.15); color: var(--teal); }
.feat-card-highlight .icon-teal { background: rgba(3,177,159,0.2); color: var(--teal-light); }
.icon-red { background: rgba(239,68,68,0.1); color: #EF4444; }
.icon-orange { background: rgba(249,115,22,0.1); color: #F97316; }
.feat-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feat-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ================================================================
   HOW IT WORKS
================================================================ */
.sec-how { background: var(--white); }
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  height: 100%;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(3,177,159,0.1);
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(3,177,159,0.12);
}
.step-card-featured {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
  border-color: rgba(3,177,159,0.3);
}
.step-card-featured h3 { color: var(--white) !important; }
.step-card-featured p { color: rgba(255,255,255,0.85); }
.step-num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(3,177,159,0.08);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.step-card-featured .step-num { color: rgba(3,177,159,0.15); }
.step-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(3,177,159,0.1);
  color: var(--teal);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.featured-icon {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 24px var(--teal-glow-lg);
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ================================================================
   BEFORE / AFTER SLIDER
================================================================ */
.sec-ba { background: var(--white); }
.ba-wrap { max-width: 780px; margin: 0 auto; }
.ba-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 80px rgba(0,0,0,0.14);
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 16/10;
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-before img, .ba-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.ba-after {
  width: 100%;
  clip-path: inset(0 0 0 50%);
}
.ba-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
}
.ba-tag-after {
  left: auto;
  right: 16px;
  background: rgba(3,177,159,0.85);
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--white);
  z-index: 10;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  color: var(--text-dark);
  font-size: 0.75rem;
  cursor: ew-resize;
}
@keyframes baHandlePulse {
  0%   { transform: translate(-50%, -50%) scale(1); }
  40%  { transform: translate(-50%, -50%) scale(1.22); }
  100% { transform: translate(-50%, -50%) scale(1); }
}
.ba-divider.ba-hint .ba-handle {
  animation: baHandlePulse 0.7s ease-out;
}
.ba-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-weight: 500;
}


/* ================================================================
   PRICING SECTION
================================================================ */
.sec-pricing {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.pricing-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3,177,159,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(60px);
  pointer-events: none;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(3,177,159,0.25);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.pricing-card:hover {
  border-color: rgba(3,177,159,0.5);
  box-shadow: 0 0 60px rgba(3,177,159,0.15);
}
.pricing-badge-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--teal);
  padding: 5px 14px;
  border-radius: 100px;
}
.pricing-card-header { margin-bottom: 24px; }
.pricing-card-icon {
  width: 50px; height: 50px;
  background: var(--teal);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px var(--teal-glow-lg);
}
.pricing-card-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.pricing-card-header p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.pricing-amount-wrap {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-struck {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.price-sym {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal-light);
}
.price-val {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
}
.price-per {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.pricing-divider-line {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}
.pricing-feats {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.pricing-feats li i {
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}
.btn-pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  padding: 15px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  margin-top: 24px;
  transition: var(--transition);
  text-align: center;
}
.btn-pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--teal-glow-lg);
  color: var(--navy);
}
.pricing-fine-print {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
}
.pricing-fine-print i { margin-right: 4px; }
/* Pricing right card */
.pricing-right-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  backdrop-filter: blur(10px);
  height: 100%;
}
.pricing-right-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.pricing-right-card > p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.price-compare { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.compare-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
}
.compare-row.bad {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.15);
}
.compare-row.good {
  background: rgba(3,177,159,0.1);
  border: 1px solid rgba(3,177,159,0.25);
}
.compare-icon { font-size: 1rem; flex-shrink: 0; }
.compare-row.bad .compare-icon { color: #EF4444; }
.compare-row.good .compare-icon { color: var(--teal); }
.compare-text span { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.compare-row strong {
  margin-left: auto;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  color: var(--white);
}
.compare-row.good strong { color: var(--teal-light); }
.saving-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--teal);
  padding: 8px 18px;
  border-radius: 100px;
}
.pricing-coverage { margin-top: 20px; }
.pricing-coverage h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.pricing-coverage p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}


/* ================================================================
   LUCKY DRAW SECTION
================================================================ */
.sec-lucky {
  background: var(--white);
}
.prize-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prize-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(3,177,159,0.12);
  border-radius: 14px;
  padding: 18px 20px;
  transition: var(--transition);
}
.prize-item:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(3,177,159,0.12);
  transform: translateX(4px);
}
.prize-item-grand {
  border-color: rgba(250,189,0,0.35);
  background: linear-gradient(135deg, rgba(250,189,0,0.06), var(--white));
}
.prize-item-grand:hover {
  border-color: #FAB900;
  box-shadow: 0 8px 32px rgba(250,189,0,0.2);
}
.prize-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.fridge-color { background: rgba(59,130,246,0.12); color: #3B82F6; }
.tv-color { background: rgba(139,92,246,0.12); color: #8B5CF6; }
.scooter-color { background: rgba(250,189,0,0.15); color: #FAB900; }
.prize-details { flex: 1; }
.prize-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.prize-details span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.prize-count {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal);
  margin-left: auto;
}
.gold-count { color: #FAB900; }
.draw-date-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(3,177,159,0.1);
  border: 1px solid rgba(3,177,159,0.2);
  padding: 12px 20px;
  border-radius: 12px;
  margin-top: 20px;
}
.draw-date-chip i { color: var(--teal); }
.draw-date-chip strong { color: var(--teal-dark); }
/* Offer Poster */
.offer-poster-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.offer-poster-img {
  width: 100%;
  max-height: 480px;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: contain;
  background: transparent;
  box-shadow: 0 32px 80px rgba(0,0,0,0.15);
}
.offer-poster-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(3,177,159,0.4), rgba(250,189,0,0.3));
  z-index: -1;
  filter: blur(20px);
}
.offer-ribbon {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, #FF6B35, #FF9F1C);
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(255,107,53,0.4);
}


/* ================================================================
   SERVICE AREA
================================================================ */
.sec-area { background: var(--white); }
.area-route-wrap { max-width: 860px; margin: 0 auto; }
.area-route {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 40px 36px;
  background: rgba(3,177,159,0.04);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(3,177,159,0.12);
  position: relative;
  overflow: hidden;
}
.area-endpoint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  z-index: 2;
}
.area-dot {
  width: 18px; height: 18px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(3,177,159,0.2);
}
.area-endpoint span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-dark);
  white-space: nowrap;
}
.area-line-wrap {
  flex: 1;
  margin: 0 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.area-line-fill {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 3px;
  position: relative;
}
.area-line-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, white 90%);
  animation: areaFlow 2s ease-in-out infinite;
}
@keyframes areaFlow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.area-stops {
  display: flex;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
  gap: 8px;
}
.area-stops span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.area-note {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.area-link {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.area-link:hover { color: var(--teal-dark); }


/* ================================================================
   TESTIMONIALS
================================================================ */
.sec-testimonials { background: var(--white); }
.testi-card {
  background: var(--white);
  border: 1px solid rgba(3,177,159,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(3,177,159,0.1);
  border-color: rgba(3,177,159,0.25);
}
.testi-card-featured {
  background: var(--navy);
  border-color: rgba(3,177,159,0.3);
}
.testi-card-featured p { color: rgba(255,255,255,0.7); }
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #FFC107;
  font-size: 0.85rem;
}
.testi-card p {
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.testi-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}
.testi-card-featured .testi-info strong { color: var(--white); }
.testi-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ================================================================
   BOOKING / CONTACT SECTION
================================================================ */
.sec-booking {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.booking-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3,177,159,0.12) 0%, transparent 70%);
  top: 50%; right: -200px;
  transform: translateY(-50%);
  filter: blur(60px);
  pointer-events: none;
}
/* Contact rows */
.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
  color: var(--white);
}
.contact-row:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(3,177,159,0.4);
  transform: translateX(4px);
}
.contact-row-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.phone-icon { background: rgba(3,177,159,0.2); color: var(--teal-light); }
.wa-icon { background: rgba(37,211,102,0.2); color: #25D366; }
.mail-icon { background: rgba(59,130,246,0.2); color: #60A5FA; }
.loc-icon { background: rgba(249,115,22,0.2); color: #FB923C; }
.contact-row-text span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.contact-row-text strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
/* Booking Form */
.booking-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
}
.booking-form-header { margin-bottom: 8px; }
.booking-form-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.booking-form-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.form-field-wrap { display: flex; flex-direction: column; gap: 6px; }
.form-field-wrap label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.req { color: var(--teal); }
.field-input {
  width: 100%;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.field-input::placeholder { color: rgba(255,255,255,0.3); }
.field-input:focus {
  border-color: rgba(3,177,159,0.5);
  background: rgba(3,177,159,0.06);
  box-shadow: 0 0 0 3px rgba(3,177,159,0.1);
}
.field-input option { background: var(--navy-2); color: var(--white); }
.btn-book-submit {
  width: 100%;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border: none;
  border-radius: 100px;
  padding: 15px 24px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-book-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--teal-glow-lg);
}
.form-security-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}
.form-security-note i { margin-right: 4px; }
/* Success message */
.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 12px;
}
.success-check {
  font-size: 3rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.booking-success h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.booking-success p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  max-width: 340px;
  line-height: 1.7;
}


/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: var(--navy);
  border-radius: 40px 40px 0 0;
  margin-top: 80px;
  position: relative;
}
/* Footer top — tagline + cta */
.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-tagline {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}
.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-footer-cta:hover {
  background: var(--teal-light);
  color: var(--navy);
  transform: translateX(4px);
}
/* Footer body — links */
.footer-body {
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}
/* Footer connect column */
.footer-connect-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-connect-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: inherit;
  transition: var(--transition);
}
.footer-connect-item:last-child { border-bottom: none; }
.footer-connect-item:hover .footer-connect-icon { background: var(--teal); color: var(--white); }
.footer-connect-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.footer-connect-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.footer-connect-item strong {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1.45;
}
/* Footer bottom bar */
.footer-bottom {
  padding: 22px 0;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-dev-link {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  transition: var(--transition);
}
.footer-dev-link:hover { color: var(--teal-light); }


/* ================================================================
   FLOATING WHATSAPP BUTTON
================================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
  color: var(--white);
}
.wa-float-tooltip {
  position: absolute;
  right: 70px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: var(--text-dark);
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.wa-float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--text-dark);
  border-right: none;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}


/* ================================================================
   UTILITY / AOS OVERRIDES
================================================================ */
[data-aos] { will-change: auto; }
.lucky-cta-wrap { display: flex; align-items: center; }


/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1199px) {
  .section-pad { padding: 80px 0; }
}

@media (max-width: 991px) {
  .section-pad { padding: 72px 0; }
  .hero-stats-row { gap: 0; }
  .hero-stat-item { padding: 0 20px; }
  .price-val { font-size: 3rem; }
  .pricing-right-card { padding: 28px 24px; }
  .booking-form-card { padding: 32px 28px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 64px 0; }
  .sec-eyebrow { font-size: 0.72rem; }
  .sec-title { font-size: clamp(1.7rem, 5vw, 2.2rem); }
  .sec-subtitle { font-size: 0.95rem; }
  /* Left-align all section headers on mobile */
  .section-header { text-align: left !important; }
  .section-header .sec-subtitle { margin: 0; text-align: left; }
  .section-header .sec-eyebrow { display: inline-flex; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.2rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-stat-item .stat-number { font-size: 1.8rem; }
  .hero-stat-item { padding: 0 16px; }
  .hero-stat-divider { height: 30px; }
  .feat-card { padding: 28px 22px; }
  .step-card { padding: 32px 24px; }
  .pricing-card { padding: 32px 24px; }
  .booking-form-card { padding: 28px 22px; }
  .footer-top { padding: 48px 0 36px; }
  .footer-body { padding: 40px 0 36px; }
  .site-footer { margin-top: 60px; border-radius: 28px 28px 0 0; }
  .footer-tagline { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .ba-container { aspect-ratio: 4/3; }
  .area-route {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }
  .area-line-wrap {
    width: 100%;
    margin: 0;
  }
  .area-stops { justify-content: center; }
  .prize-item { padding: 14px 16px; }
  .hero-cta-wrap { flex-direction: column; align-items: center; }
  .btn-primary-cta, .btn-whatsapp-cta { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .section-pad { padding: 56px 0; }
  .hero-stats-row { flex-direction: column; gap: 20px; }
  .hero-stat-divider { display: none; }
  .trust-bar-sec { padding: 22px 0; }
  .trust-item span { font-size: 0.75rem; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
  .price-val { font-size: 2.8rem; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* ================================================================
   MOBILE PERFORMANCE — remove GPU-heavy effects on small screens
================================================================ */
@media (max-width: 767px) {
  /* Kill backdrop-filter on mobile — it's the #1 scroll lag cause on Android */
  .nav-main.scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255,255,255,0.97) !important;
  }
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  /* Reduce glow blur radius — 100px blur is very heavy */
  .hero-glow { filter: blur(40px) !important; }
  /* Hide canvas on small screens — replaced by CSS gradient bg */
  #waterCanvas { display: none; }
  /* Remove will-change on AOS — too many GPU layers */
  [data-aos] { will-change: auto; }
}
