/* =========================================================
   Ravi Mineral Water — Main Stylesheet
   ========================================================= */

:root {
  --primary-purple: #321578;
  --primary-blue: #0878cf;
  --dark-blue: #10235c;
  --light-blue: #eaf7ff;
  --sky: #cfefff;
  --orange: #ed4a08;
  --green: #62b82e;
  --white: #ffffff;
  --text-dark: #17203a;
  --text-muted: #667085;
  --border-light: #dce8f3;
  --shadow-sm: 0 4px 14px rgba(16, 35, 92, 0.08);
  --shadow-md: 0 10px 30px rgba(16, 35, 92, 0.12);
  --shadow-lg: 0 20px 50px rgba(16, 35, 92, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 78px;
  --container: 1200px;
  --transition: 0.28s ease;
  --font-heading: "Poppins", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 56px 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--dark-blue);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .section-lead {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(8, 120, 207, 0.45);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(8, 120, 207, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(8, 120, 207, 0.36);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-purple);
  border-color: var(--primary-purple);
}

.btn-secondary:hover {
  background: var(--primary-purple);
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebe57;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark-blue);
}

.btn-sm {
  min-height: 40px;
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Top bar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--dark-blue), var(--primary-purple));
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: var(--sky);
}

.topbar-social {
  display: flex;
  gap: 10px;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  transition: background var(--transition);
}

.topbar-social a:hover {
  background: var(--orange);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), padding var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
  transition: min-height var(--transition);
}

.site-header.is-scrolled .header-inner {
  min-height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
  transition: height var(--transition);
}

.site-header.is-scrolled .logo img {
  height: 44px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 10px 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-purple);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-panel {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark-blue);
  transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero (cinematic) ---------- */
.hero-cinematic {
  position: relative;
  overflow: hidden;
  min-height: min(92vh, 920px);
  padding: 72px 0 88px;
  background: #0a2740;
  color: #fff;
}

.hero-cinematic::before,
.hero-cinematic::after {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroBgDrift 28s ease-in-out infinite alternate;
}

/* Soft even veil — text readable, product stays clear */
.hero-bg-shade {
  position: absolute;
  inset: 0;
  background: rgba(6, 22, 40, 0.28);
}

.hero-light-wash {
  display: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(210, 235, 255, 0.65);
  box-shadow: 0 0 14px rgba(140, 210, 255, 0.75);
  animation: floatParticle 9s ease-in-out infinite;
}

.hero-particles span:nth-child(1) { left: 12%; top: 28%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 28%; top: 62%; width: 4px; height: 4px; animation-delay: 1.2s; }
.hero-particles span:nth-child(3) { left: 55%; top: 22%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { left: 72%; top: 48%; width: 5px; height: 5px; animation-delay: 0.6s; }
.hero-particles span:nth-child(5) { left: 84%; top: 30%; animation-delay: 1.8s; }
.hero-particles span:nth-child(6) { left: 40%; top: 78%; width: 3px; height: 3px; animation-delay: 2.6s; }

.hero-cinematic-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.25fr 0.75fr;
  gap: 20px;
  align-items: center;
  min-height: min(78vh, 760px);
}

.hero-cinematic .hero-copy {
  max-width: 520px;
}

.hero-cinematic .hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow:
    0 2px 12px rgba(8, 30, 50, 0.45),
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-cinematic .hero-title span {
  color: #b7e4ff;
  text-shadow:
    0 0 24px rgba(120, 200, 255, 0.35),
    0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-cinematic .hero-text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(235, 246, 255, 0.9);
  max-width: 440px;
  margin-bottom: 28px;
  text-shadow: 0 2px 16px rgba(6, 24, 42, 0.55);
}

.hero-cinematic .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-glass {
  min-height: 50px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(200, 230, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fff;
  box-shadow:
    0 10px 30px rgba(6, 28, 48, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(220, 240, 255, 0.65);
  color: #fff;
}

.btn-glass-primary {
  background: linear-gradient(135deg, rgba(40, 140, 210, 0.88), rgba(18, 55, 95, 0.92));
  border-color: rgba(170, 220, 255, 0.5);
  box-shadow:
    0 12px 32px rgba(20, 90, 150, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-glass-primary:hover {
  background: linear-gradient(135deg, rgba(55, 155, 225, 0.95), rgba(18, 55, 95, 0.96));
  color: #fff;
}

.hero-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 640px;
  position: relative;
  z-index: 2;
}

.hero-product {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 520px);
  animation: heroBottleIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-bottle-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  max-height: min(78vh, 680px);
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.hero-rock-img {
  display: none !important;
}

.hero-splash,
.hero-mist,
.hero-ripples,
.hero-bottle {
  display: none !important;
}

.hero-brand { display: none; }
.hero-visual { display: none; }

.hero-features {
  display: grid;
  gap: 12px;
}

.glass-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(200, 230, 255, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 12px 30px rgba(6, 28, 48, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.glass-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(160, 210, 245, 0.18);
  color: #d7f0ff;
  flex-shrink: 0;
}

.glass-card h3 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 10px rgba(6, 24, 42, 0.35);
}

@keyframes heroBgDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.2%, -0.8%, 0); }
}

@keyframes heroBottleIn {
  from { opacity: 0; transform: translateY(36px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(-18px); opacity: 0.9; }
}

@keyframes rippleOut {
  0% { width: 70px; opacity: 0.55; }
  100% { width: 240px; opacity: 0; }
}

/* ---------- Feature strip ---------- */
.feature-strip {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 18px;
}

.feature-card {
  text-align: center;
  padding: 18px 12px;
  border-radius: 14px;
  transition: background var(--transition);
}

.feature-card:hover {
  background: var(--light-blue);
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--light-blue), #d8f0ff);
  color: var(--primary-blue);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-blue);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ---------- About intro ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.stat {
  background: var(--light-blue);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-purple);
  line-height: 1.1;
}

.stat span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-media {
  background: #ffffff;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  display: grid;
  align-items: stretch;
  justify-items: stretch;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
  padding: 14px 16px;
  min-height: 0;
}

.product-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  transition: transform 0.4s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.product-size {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.price-note {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(237, 74, 8, 0.1);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
}

/* ---------- Why choose ---------- */
.why-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(16, 35, 92, 0.94), rgba(50, 21, 120, 0.92)),
    url("../images/heroes/hero-bottle-integrated.png") center/cover;
  color: var(--white);
  overflow: hidden;
}

.why-section .section-title,
.why-section .eyebrow {
  color: var(--white);
}

.why-section .section-lead {
  color: rgba(255, 255, 255, 0.82);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 22px;
  backdrop-filter: blur(6px);
}

.why-item .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.why-item h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Process ---------- */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--green));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 22px 14px;
  box-shadow: var(--shadow-sm);
}

.process-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #ffffff;
}

/* Product pack shots in delivery cards — show full image, no crop */
.service-card img[src*="products/"] {
  object-fit: contain;
  object-position: center;
  padding: 10px 12px;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.service-body h3 {
  font-family: var(--font-heading);
  color: var(--dark-blue);
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex-grow: 1;
}

/* ---------- Banner ---------- */
.image-banner {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  background: center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.image-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 35, 92, 0.78), rgba(50, 21, 120, 0.55));
}

.image-banner .banner-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}

.image-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

/* ---------- Trust ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.trust-item {
  background: var(--light-blue);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.trust-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-blue);
  margin: 10px 0 6px;
}

.trust-item p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* ---------- Product auto carousel ---------- */
.product-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  padding: 8px 0 20px;
}

.product-carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: productMarquee 40s linear infinite;
  will-change: transform;
}

.product-carousel:hover .product-carousel-track,
.product-carousel.is-paused .product-carousel-track {
  animation-play-state: paused;
}

.carousel-card {
  flex: 0 0 auto;
  width: 180px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 14px 12px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.carousel-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #fff;
  margin-bottom: 10px;
}

.carousel-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.carousel-card span {
  color: var(--primary-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

@keyframes productMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .product-carousel-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 16px;
  }
}

/* ---------- Gallery (legacy) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption,
.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(16, 35, 92, 0.75));
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  text-align: left;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}

.filter-btn {
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  padding: 8px 0 12px;
}

.testimonial-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testimonialMarquee 45s linear infinite;
  will-change: transform;
  padding-inline: 16px;
}

.testimonial-carousel:hover .testimonial-carousel-track,
.testimonial-carousel.is-paused .testimonial-carousel-track {
  animation-play-state: paused;
}

.testimonial-carousel .testimonial-card {
  flex: 0 0 auto;
  width: min(340px, 78vw);
  max-width: 360px;
}

@keyframes testimonialMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-carousel-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    justify-content: center;
  }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card .stars {
  color: #f5b301;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card h4 {
  font-family: var(--font-heading);
  color: var(--dark-blue);
  font-size: 0.95rem;
}

.testimonial-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.editable-note {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--orange);
  font-style: normal;
  font-weight: 600;
}

/* ---------- CTA ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple) 55%, var(--dark-blue));
  color: var(--white);
  text-align: center;
  border-radius: 28px;
  padding: 56px 28px;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0b1638;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 64px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}

.site-footer .logo img {
  height: 48px;
  background: var(--white);
  border-radius: 10px;
  padding: 6px 10px;
}

.footer-about p {
  margin: 16px 0;
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--sky);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-bottom a:hover {
  color: var(--sky);
}

/* ---------- Inner pages ---------- */
.page-hero {
  background:
    linear-gradient(135deg, rgba(16, 35, 92, 0.9), rgba(8, 120, 207, 0.78)),
    url("../images/lifestyle/lifestyle-man-drinking.png") center/cover;
  color: var(--white);
  padding: 72px 0 64px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a:hover {
  color: var(--white);
}

.values-grid,
.info-cards,
.faq-list {
  display: grid;
  gap: 16px;
}

.values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.value-card,
.info-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.value-card h3,
.info-card h3 {
  font-family: var(--font-heading);
  color: var(--dark-blue);
  margin-bottom: 8px;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, #e8f4fc, #f7fbff);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

.team-body {
  padding: 22px 22px 26px;
  text-align: center;
}

.team-body h3 {
  font-family: var(--font-heading);
  color: var(--dark-blue);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.team-role {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.team-body p:last-child {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.info-cards {
  grid-template-columns: repeat(4, 1fr);
}

.info-card a {
  color: var(--primary-blue);
  font-weight: 700;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
  min-height: 46px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 10px 14px;
  background: #fbfdff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(8, 120, 207, 0.12);
}

.form-error {
  color: #c62828;
  font-size: 0.8rem;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #c62828;
}

.form-success {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(98, 184, 46, 0.12);
  color: #2e7d32;
  font-weight: 600;
}

.form-success.show {
  display: block;
}

.map-placeholder {
  border-radius: 20px;
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(8, 120, 207, 0.12), rgba(50, 21, 120, 0.1)),
    var(--light-blue);
  border: 1px dashed var(--border-light);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
}

/* ---------- Product detail ---------- */
.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.detail-gallery {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail-main {
  width: 100%;
  max-width: 420px;
  height: min(52vh, 480px);
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border-radius: 16px;
  display: block;
  margin-inline: auto;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.thumbs button {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 2px solid var(--border-light);
  background: #ffffff;
  padding: 6px;
  cursor: pointer;
  overflow: hidden;
}

.thumbs button.active,
.thumbs button:hover {
  border-color: var(--primary-blue);
}

.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

/* Solid white behind any product PNG (no transparent checker look) */
.product-card img,
#qv-img,
.hero-visual img[src*="products"],
.hero-visual img[src*="heroes"] {
  background: #ffffff;
}

#qv-img {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  width: 100%;
  max-width: 280px;
  height: 300px;
  margin: 0 auto 16px;
  object-fit: contain;
  object-position: center;
}

.qty-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
}

.qty-wrap button {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.qty-wrap input {
  width: 72px;
  height: 44px;
  text-align: center;
  border: 1px solid var(--border-light);
  border-radius: 10px;
}

/* ---------- Accordion ---------- */
.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 0;
  padding: 16px 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 52px;
}

.accordion-panel {
  display: none;
  padding: 0 18px 16px;
  color: var(--text-muted);
}

.accordion-item.open .accordion-panel {
  display: block;
}

.accordion-item.open .accordion-trigger span {
  transform: rotate(45deg);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 40, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(920px, 90vw);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-family: var(--font-heading);
}

/* ---------- Floating widgets ---------- */
.whatsapp-float,
.back-to-top {
  position: fixed;
  z-index: 1500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  border: 0;
  cursor: pointer;
  transition: transform var(--transition), opacity var(--transition);
}

.whatsapp-float {
  right: 20px;
  bottom: 24px;
  background: #25d366;
  color: var(--white);
}

.whatsapp-float:hover,
.back-to-top:hover {
  transform: translateY(-3px) scale(1.04);
}

.back-to-top {
  right: 20px;
  bottom: 92px;
  background: var(--dark-blue);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Wave divider ---------- */
.wave-divider {
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.bg-soft {
  background: linear-gradient(180deg, #f8fcff, var(--white));
}

.bg-light {
  background: var(--light-blue);
}

.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 40, 0.65);
  z-index: 1800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-card {
  width: min(520px, 100%);
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--light-blue);
  cursor: pointer;
  font-size: 1.2rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
  font-size: 0.92rem;
}

.compare-table th {
  background: var(--dark-blue);
  color: var(--white);
  font-family: var(--font-heading);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
