/* ===================================
   ElysianWaves — COMPLETE STYLESHEET
   =================================== */

/* ---- CSS Variables ---- */
:root {
  --navy:       #003580;
  --Elysian:       #0072BC;
  --Elysian-light: #e6f3fb;
  --Elysian-mid:   #1a6bb5;
  --teal:       #00b4d8;
  --ocean:      #0096c7;
  --green:      #25D366;
  --green-dark: #128C7E;
  --white:      #ffffff;
  --light-bg:   #f0f7ff;
  --text-dark:  #1a1a2e;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --border:     #d1e8f5;
  --shadow-sm:  0 2px 12px rgba(0,53,128,0.08);
  --shadow-md:  0 8px 32px rgba(0,53,128,0.12);
  --shadow-lg:  0 20px 60px rgba(0,53,128,0.16);
  --radius:     14px;
  --radius-sm:  9px;
  --transition: all 0.3s ease;
}

/* ---- Base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; }

/* ---- Utilities ---- */
.text-accent {
  background: linear-gradient(135deg, var(--Elysian) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-light-Elysian { background: var(--light-bg); }
.section-padding { padding: 80px 0; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--Elysian);
  background: linear-gradient(135deg, #dff0ff, #bde6fa);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(0,114,188,0.2);
  box-shadow: 0 2px 10px rgba(0,114,188,0.12);
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-title-sm {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
/* When desc is inside a non-centred column, reset the auto margin */
.why-section .section-desc,
.info-section .section-desc {
  margin: 0;
}

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-left a,
.top-bar-left span {
  color: rgba(255,255,255,0.88);
  font-size: 12.5px;
}
.top-bar-left a:hover { color: #fff; }
.top-bar-left i,
.top-bar-left .fa { margin-right: 5px; color: var(--Elysian); }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a {
  color: rgba(255,255,255,0.75);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.top-bar-right a:hover {
  background: var(--Elysian);
  border-color: var(--Elysian);
  color: #fff;
  transform: translateY(-1px);
}

/* ===================================
   NAVBAR
   =================================== */
.main-navbar {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0,53,128,0.08);
  transition: var(--transition);
  z-index: 1000;
}
.main-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,53,128,0.12);
}
.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-icon {
  font-size: 28px;
  color: var(--Elysian);
  filter: drop-shadow(0 2px 4px rgba(0,114,188,0.3));
}
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
}
.brand-sub {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  color: var(--Elysian);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 6px 14px !important;
  border-radius: 6px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--Elysian);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { left: 14px; right: 14px; }
.nav-link:hover { color: var(--Elysian) !important; }
.nav-link.active { color: var(--Elysian) !important; }

.btn-order-now {
  background: var(--Elysian);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,114,188,0.3);
}
.btn-order-now:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,53,128,0.3);
  color: #fff !important;
}
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ===================================
   HERO
   =================================== */
.hero-section { position: relative; overflow: hidden; }
.hero-slide {
  min-height: 640px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-slide-1::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.72) 40%, rgba(255,255,255,0.22) 100%);
}
.hero-slide-2::before,
.hero-slide-3::before {
  background:
    radial-gradient(ellipse at 78% 38%, rgba(100,210,255,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 12% 85%, rgba(0,80,200,0.18) 0%, transparent 50%);
}
.hero-slide-1 {
  background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.12)), url('../assets/images/graphic1.jpeg') right center / cover no-repeat;
}
.hero-slide-2 {
  background: linear-gradient(150deg, #012c5b 0%, #023e7d 50%, #055fab 100%);
}
.hero-slide-3 {
  background: linear-gradient(150deg, #010d1f 0%, #01213d 50%, #023460 100%);
}
.hero-slide-4 {
  background: linear-gradient(135deg, rgba(0,20,70,0.78), rgba(0,20,70,0.42)), url('../assets/images/graphic3.jpeg') right center / cover no-repeat;
}
.hero-slide-4::before {
  background: linear-gradient(130deg, rgba(0,20,70,0.72) 0%, rgba(0,40,120,0.60) 50%, rgba(0,20,70,0.52) 100%);
}
/* Slide 4 — keep text white, accent light */
.hero-slide-4 .hero-title  { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-slide-4 .hero-subtitle { color: rgba(255,255,255,0.9); }
.hero-slide-4 .hero-title-accent { color: #7dd3fc; -webkit-text-fill-color: #7dd3fc; text-shadow: 0 0 30px rgba(125,211,252,0.5); }

/* Decorative glow blobs */
.hero-slide-1::after,
.hero-slide-2::after,
.hero-slide-3::after {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
  right: -80px;
  top: -80px;
  pointer-events: none;
  animation: blobPulse 9s ease-in-out infinite;
}

.hero-slide .container { position: relative; z-index: 1; height: 100%; }
.hero-content { padding: 60px 0 100px; }

/* ===================================
   HERO TAG
   =================================== */
.hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(0,114,188,0.3);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.03em;
}
.hero-slide-2 .hero-tag,
.hero-slide-3 .hero-tag {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92);
}

/* ===================================
   HERO MINI BADGES
   =================================== */
.hero-mini-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 1.2rem 0 1.6rem;
}
.hero-mini-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(0,114,188,0.22);
  border-radius: 12px;
  padding: 8px 14px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.hero-mini-badge:hover {
  background: rgba(255,255,255,0.92);
  border-color: var(--Elysian);
  transform: translateY(-2px);
}
.hero-mini-badge i {
  font-size: 20px;
  color: var(--Elysian);
  flex-shrink: 0;
}
.hero-mini-badge strong {
  display: block;
  font-size: 12px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}
.hero-mini-badge span {
  font-size: 11px;
  color: var(--text-mid);
  display: block;
}
.hero-slide-2 .hero-mini-badge,
.hero-slide-3 .hero-mini-badge {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.hero-slide-2 .hero-mini-badge i,
.hero-slide-3 .hero-mini-badge i  { color: #7dd3fc; }
.hero-slide-2 .hero-mini-badge strong,
.hero-slide-3 .hero-mini-badge strong { color: #fff; }
.hero-slide-2 .hero-mini-badge span,
.hero-slide-3 .hero-mini-badge span   { color: rgba(255,255,255,0.65); }

/* ===================================
   SECP RING & HERO RIGHT PANEL
   =================================== */
.hero-right-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.secp-ring-wrap { text-align: center; }
.secp-ring {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  border: 3.5px solid rgba(0,114,188,0.7);
  outline: 6px solid rgba(0,114,188,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 42px rgba(0,114,188,0.24), 0 0 0 10px rgba(255,255,255,0.18);
  animation: blobPulse 7s ease-in-out infinite;
}
.secp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.secp-stars { font-size: 11px; color: var(--Elysian); letter-spacing: 3px; line-height: 1.8; }
.secp-inner strong {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.05em;
}
.secp-inner span {
  font-size: 9px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}
.secp-caption {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
}

/* Bottles row on hero right (light slide 1) */
.hero-bottles-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.hero-slide-1 .bottle-demo {
  background: rgba(255,255,255,0.68);
  border: 1.5px solid rgba(0,114,188,0.4);
}
.hero-slide-1 .bottle-demo i   { color: var(--Elysian); }
.hero-slide-1 .bottle-demo span { color: var(--navy); font-size: 11px; font-weight: 700; }

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 28px rgba(0,0,0,0.3);
}
/* Slide 1 is light — use dark text */
.hero-slide-1 .hero-title {
  color: var(--navy);
  text-shadow: 0 1px 10px rgba(255,255,255,0.5);
}
.hero-slide-1 .hero-subtitle { color: var(--text-mid); }
.hero-title-accent {
  color: #7dd3fc;
  display: inline-block;
  text-shadow: 0 0 40px rgba(125,211,252,0.5);
}
.hero-slide-1 .hero-title-accent {
  background: linear-gradient(135deg, var(--Elysian) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero-primary {
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
}
.btn-hero-primary:hover {
  background: #fff;
  color: var(--Elysian);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.32);
}

/* On dark slides make the primary button dark navy instead */
.hero-slide-2 .btn-hero-primary,
.hero-slide-3 .btn-hero-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,53,128,0.35);
}
.hero-slide-2 .btn-hero-primary:hover,
.hero-slide-3 .btn-hero-primary:hover {
  background: var(--Elysian);
  color: #fff;
}
.btn-hero-whatsapp {
  background: var(--green);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.btn-hero-whatsapp:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

/* Bottles placeholder */
.bottles-wrapper { position: relative; }
.bottles-img { max-height: 360px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,53,128,0.2)); }
.bottles-placeholder {
  display: none;
  gap: 12px;
  align-items: flex-end;
  padding: 40px 0;
}
.bottle-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.13);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  padding: 12px 10px;
  backdrop-filter: blur(14px);
  transition: var(--transition);
}
.bottle-demo:hover { background: rgba(255,255,255,0.22); transform: translateY(-5px); }
.bottle-demo i { color: #7dd3fc; }
.bottle-demo span { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.92); }
.bottle-sm  { width: 56px; height: 80px;  font-size: 14px; }
.bottle-md  { width: 64px; height: 100px; font-size: 16px; }
.bottle-lg  { width: 76px; height: 130px; font-size: 22px; }
.bottle-xl  { width: 90px; height: 160px; font-size: 30px; }

/* Carousel controls */
.carousel-control-icon {
  background: rgba(255,255,255,0.9);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.carousel-control-icon:hover {
  background: var(--Elysian);
  color: #fff;
  transform: scale(1.08);
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev,
.carousel-control-next { width: auto; opacity: 1; }

.hero-indicators {
  bottom: 20px;
}
.hero-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.5) !important;
  border: none !important;
  transition: var(--transition);
}
.hero-indicators button.active {
  background: var(--Elysian) !important;
  transform: scale(1.3);
}

/* ===================================
   FEATURES BAR
   =================================== */
.features-bar {
  background: var(--navy);
  padding: 0;
}
.features-bar .row { margin: 0; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,0.05); }

.feature-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  transition: var(--transition);
  background: rgba(255,255,255,0.06);
}
.feature-item:hover .feature-icon-circle {
  background: linear-gradient(135deg, var(--Elysian), var(--teal));
  border-color: var(--teal);
  transform: scale(1.1);
  box-shadow: 0 4px 18px rgba(0,180,216,0.35);
}
.feature-text h5 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
}
.feature-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.4;
}

/* ===================================
   WHY CHOOSE
   =================================== */
.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 1.5rem;
}
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  width: calc(20% - 14px);
  min-width: 100px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.why-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--Elysian), var(--teal));
  opacity: 0;
  transition: var(--transition);
}
.why-item:hover::after { opacity: 1; }
.why-item:hover {
  border-color: var(--Elysian);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--Elysian-light), #bde6fa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--Elysian);
  transition: var(--transition);
}
.why-item:hover .why-icon {
  background: linear-gradient(135deg, var(--Elysian), var(--teal));
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,114,188,0.3);
}
.why-item span { font-size: 12px; font-weight: 700; color: var(--navy); line-height: 1.3; }

/* Bottle Range */
.bottle-range-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.bottle-range-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.bottle-range-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: flex-end;
}
.bottle-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.bottle-visual {
  background: var(--Elysian-light);
  border: 2px solid var(--Elysian);
  border-radius: 10px 10px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Elysian);
  transition: var(--transition);
  width: 100%;
}
.bottle-item:hover .bottle-visual { background: var(--Elysian); color: #fff; transform: translateY(-4px); }
.bottle-v1 { height: 60px;  font-size: 18px; }
.bottle-v2 { height: 80px;  font-size: 22px; }
.bottle-v3 { height: 100px; font-size: 28px; }
.bottle-v4 { height: 130px; font-size: 36px; }
.bottle-label { font-size: 11.5px; font-weight: 700; color: var(--navy); text-align: center; }

/* ===================================
   TEAM SHOWCASE SECTION
   =================================== */
.team-showcase-section { overflow: hidden; }
.team-showcase-bg {
  background: linear-gradient(135deg, rgba(0,20,70,0.90), rgba(0,43,100,0.80)), url('../assets/images/graphic3.jpeg') center/cover no-repeat;
  background-blend-mode: overlay;
  position: relative;
  padding: 80px 0;
}
.team-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,25,80,0.78) 0%, rgba(0,53,128,0.70) 50%, rgba(0,20,70,0.82) 100%);
  z-index: 1;
}

/* Stats row */
.team-stats-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.team-stat {
  text-align: center;
  padding: 14px 20px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  min-width: 90px;
}
.team-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #7dd3fc;
  line-height: 1;
}
.team-stat span {
  font-size: 11.5px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* Bottom badges row */
.team-bottom-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.team-bottom-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 14px 16px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.team-bottom-badge:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(125,211,252,0.5);
  transform: translateY(-3px);
}
.tbb-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--Elysian), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,180,216,0.3);
}
.team-bottom-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.team-bottom-badge span {
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  display: block;
}

/* SECP banner badge inside team section */
.secp-banner-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  padding: 18px 22px;
  backdrop-filter: blur(12px);
}
.secp-banner-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.6);
  outline: 5px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.12);
}
.secp-banner-ring strong {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.secp-banner-ring span {
  font-size: 7px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
}
.secp-banner-badge p {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .team-bottom-badges { grid-template-columns: 1fr 1fr; }
  .team-stats-row { gap: 12px; }
  .team-stat { padding: 10px 14px; }
  .team-stat strong { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .team-bottom-badges { grid-template-columns: 1fr; }
}

/* ===================================
   SERVICES
   =================================== */
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--Elysian), var(--teal));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,53,128,0.16);
  border-color: var(--Elysian);
}
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--Elysian-light), #bde6fa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--Elysian);
  margin: 0 auto 1.25rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,114,188,0.12);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--Elysian), var(--teal));
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,114,188,0.3);
}
.service-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* ===================================
   HOW IT WORKS
   =================================== */
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--Elysian);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-connector {
  position: absolute;
  left: 16px;
  top: 32px;
  width: 2px;
  height: calc(100% + 4px);
  background: linear-gradient(to bottom, var(--Elysian), var(--border));
}
.step-connector.last { display: none; }
.step-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 24px;
}
.step-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--Elysian-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--Elysian);
  flex-shrink: 0;
}
.step-content span { font-size: 14px; font-weight: 600; color: var(--text-dark); }

/* Delivery Map */
.delivery-map-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-placeholder {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--Elysian-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 40px;
}
.map-placeholder span { font-size: 14px; font-weight: 600; opacity: 0.9; }
.delivery-zones { list-style: none; padding: 16px; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.delivery-zones li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid); }
.delivery-zones li i { color: var(--Elysian); font-size: 13px; }

/* Testimonials */
.testimonial-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.quote-icon { font-size: 28px; color: var(--Elysian); opacity: 0.3; margin-bottom: 10px; }
.testimonial-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.stars { color: #f6a623; font-size: 14px; margin-bottom: 14px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--Elysian);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 13.5px; color: var(--navy); }
.reviewer span { font-size: 11.5px; color: var(--text-light); }
.testimonial-pagination { margin-top: 14px !important; position: static !important; }
.testimonial-pagination .swiper-pagination-bullet { background: var(--Elysian) !important; }

/* ===================================
   SUBSCRIPTION PLANS
   =================================== */
.plan-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--Elysian), var(--teal));
  opacity: 0.5;
  transition: var(--transition);
}
.plan-card:hover::before { opacity: 1; }
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--Elysian);
}
.plan-card-featured {
  border: 2px solid var(--Elysian);
  box-shadow: var(--shadow-md);
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--Elysian);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-header h4 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.plan-freq { font-size: 12px; color: var(--Elysian); font-weight: 600; background: var(--Elysian-light); display: inline-block; padding: 3px 12px; border-radius: 20px; margin-bottom: 20px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.plan-features li { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 14px; color: var(--text-mid); border-bottom: 1px dashed var(--border); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: var(--green); }
.btn-plan {
  background: transparent;
  border: 2px solid var(--Elysian);
  color: var(--Elysian);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13.5px;
  width: 100%;
  transition: var(--transition);
}
.btn-plan:hover { background: var(--Elysian); color: #fff; }
.btn-plan-featured {
  background: var(--Elysian);
  border: 2px solid var(--Elysian);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13.5px;
  width: 100%;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,114,188,0.3);
}
.btn-plan-featured:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,20,70,0.88), rgba(0,40,100,0.74)), url('../assets/images/graphic2.jpeg') center center / cover no-repeat;
  background-blend-mode: overlay;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,15,60,0.72) 0%, rgba(0,35,105,0.72) 100%);
  z-index: 0;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-truck {
  flex-shrink: 0;
  text-align: center;
  position: relative;
}
.cta-truck i { font-size: 72px; color: rgba(255,255,255,0.15); display: block; }
.cta-brand-tag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}
.cta-content { flex: 1; min-width: 260px; }
.cta-content h2 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 1.5rem; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cta-whatsapp {
  background: var(--green);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-cta-whatsapp:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); }
.btn-cta-call {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}
.btn-cta-call:hover { background: rgba(255,255,255,0.12); color: #fff; transform: translateY(-2px); }

.cta-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  flex-shrink: 0;
}
.cta-badge { display: flex; align-items: center; gap: 10px; }
.cta-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.cta-badge span { font-size: 12.5px; color: rgba(255,255,255,0.8); font-weight: 600; line-height: 1.3; }

/* ===================================
   BRAND VALUES STRIP
   =================================== */
.brand-values-strip {
  background: linear-gradient(135deg, #e6f4ff 0%, #d0eaf9 100%);
  padding: 0;
  border-top: 1px solid rgba(0,114,188,0.1);
  border-bottom: 2px solid rgba(0,114,188,0.12);
}
.brand-value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 18px;
  border-right: 1px solid rgba(0,114,188,0.1);
  transition: var(--transition);
}
.brand-value-item:last-child { border-right: none; }
.brand-value-item:hover { background: rgba(0,114,188,0.05); }
.bv-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--Elysian), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,114,188,0.28);
  transition: var(--transition);
}
.brand-value-item:hover .bv-icon { transform: scale(1.1); box-shadow: 0 6px 22px rgba(0,114,188,0.4); }
.brand-value-item strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.brand-value-item span {
  font-size: 11.5px;
  color: var(--text-mid);
  display: block;
}

/* ===================================
   CONTACT
   =================================== */
.contact-info-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--Elysian);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item h5 { font-size: 13px; font-weight: 700; color: var(--navy); margin: 0 0 2px; }
.contact-info-item a,
.contact-info-item span { font-size: 14px; color: var(--text-mid); }
.contact-info-item a:hover { color: var(--Elysian); }

.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  transition: var(--transition);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--Elysian);
  box-shadow: 0 0 0 3px rgba(0,114,188,0.12);
}
.btn-submit {
  background: var(--Elysian);
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: var(--transition);
}
.btn-submit:hover { background: var(--navy); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===================================
   FOOTER
   =================================== */
.main-footer {
  background: #0a1929;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand i { font-size: 32px; color: var(--Elysian); }
.footer-brand-name { display: block; font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; color: #fff; line-height: 1.1; }
.footer-brand-sub { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; color: var(--Elysian); }
.footer-desc { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--Elysian); border-color: var(--Elysian); color: #fff; }

.footer-heading { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { font-size: 13.5px; color: rgba(255,255,255,0.6); }
.footer-links li a:hover { color: var(--Elysian); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 10px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.6); }
.footer-contact li i { color: var(--Elysian); margin-top: 2px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.6); }
.footer-contact li a:hover { color: var(--Elysian); }
.footer-zones { font-size: 12px; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); padding: 8px 12px; border-radius: var(--radius-sm); }

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===================================
   WHATSAPP FLOAT
   =================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  background: var(--green-dark);
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(-8px); }
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #333;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(0);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #333;
}

/* ===================================
   BACK TO TOP
   =================================== */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--Elysian);
  color: #fff;
  border: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--navy); transform: translateY(-2px); }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 991px) {
  .why-item { width: calc(33.3% - 12px); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-badges { grid-template-columns: repeat(4, 1fr); }
  .cta-buttons { justify-content: center; }
  .hero-content { padding: 40px 0 90px; }
  .hero-right-panel { display: none; }
}

@media (max-width: 767px) {
  .section-padding { padding: 52px 0; }
  .top-bar-left { gap: 10px; }
  .top-bar-left span { display: none; }
  .feature-item { padding: 18px 12px; flex-direction: column; text-align: center; gap: 8px; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .why-item { width: calc(50% - 10px); }
  .cta-badges { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 1.8rem; }
  .hero-mini-badges { gap: 8px; }
  .hero-mini-badge { padding: 7px 11px; }
  .brand-value-item { border-right: none; border-bottom: 1px solid rgba(0,114,188,0.1); padding: 16px 14px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
  .bottle-range-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item { width: calc(50% - 10px); }
  .cta-badges { grid-template-columns: 1fr 1fr; }
}
.brand-img {
  height: 48px;
  width: auto;
  display: inline-block;
  margin-right: 8px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,53,128,0.12);
}

/* Subtle scrolling wave texture inside hero */
.hero-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 75px;
  height: 110px;
  background: url('../assets/images/wave.svg') repeat-x center / 1200px 110px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
  animation: waveMove 14s linear infinite;
}

@keyframes waveMove {
  from { background-position-x: 0; }
  to   { background-position-x: 1200px; }
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1);    opacity: 0.8; }
  50%       { transform: scale(1.18); opacity: 1;   }
}

@keyframes bubbleRise {
  0%   { transform: translateY(0)      scale(1);   opacity: 0;   }
  10%  { opacity: 0.85; }
  90%  { opacity: 0.4;  }
  100% { transform: translateY(-660px) scale(1.1); opacity: 0;   }
}

/* Hero wave divider (bottom of section) */
.hero-wave-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  pointer-events: none;
  line-height: 0;
  overflow: hidden;
}
.hero-wave-wrap svg { display: block; width: 100%; }

/* Floating bubbles injected via JS */
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-bubbles .bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  animation: bubbleRise linear infinite;
  bottom: -60px;
}
.hero-bubbles .bubble:nth-child(1)  { width:14px; height:14px; left:5%;  animation-duration:8s;  animation-delay:0s;   }
.hero-bubbles .bubble:nth-child(2)  { width:22px; height:22px; left:15%; animation-duration:11s; animation-delay:1.5s; }
.hero-bubbles .bubble:nth-child(3)  { width:10px; height:10px; left:27%; animation-duration:7s;  animation-delay:3s;   }
.hero-bubbles .bubble:nth-child(4)  { width:28px; height:28px; left:38%; animation-duration:13s; animation-delay:0.8s; }
.hero-bubbles .bubble:nth-child(5)  { width:16px; height:16px; left:50%; animation-duration:9s;  animation-delay:2.2s; }
.hero-bubbles .bubble:nth-child(6)  { width:12px; height:12px; left:62%; animation-duration:6s;  animation-delay:4s;   }
.hero-bubbles .bubble:nth-child(7)  { width:20px; height:20px; left:73%; animation-duration:10s; animation-delay:1s;   }
.hero-bubbles .bubble:nth-child(8)  { width:8px;  height:8px;  left:82%; animation-duration:8s;  animation-delay:3.5s; }
.hero-bubbles .bubble:nth-child(9)  { width:18px; height:18px; left:91%; animation-duration:12s; animation-delay:0.5s; }
.hero-bubbles .bubble:nth-child(10) { width:24px; height:24px; left:44%; animation-duration:10s; animation-delay:5s;   }

/* Water shimmer overlay */
.hero-slide .gloss-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  pointer-events: none;
  z-index: 0;
}