/* ===================================================
   JAYANT GROUNDNUT OIL — SHARED DESIGN SYSTEM
   Multi-Page Website v2.0
   =================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --maroon: #5C1A1A;
  --maroon-dark: #3D0E0E;
  --maroon-mid: #7B2D2D;
  --gold: #D4A017;
  --gold-light: #F0C040;
  --gold-pale: #F5DEB3;
  --cream: #FDF6E3;
  --cream-dark: #F5ECD7;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --gray-dark: #2C2C2C;
  --gray-mid: #6B6B6B;
  --gray-light: #E8E0D0;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --shadow-sm: 0 2px 12px rgba(92, 26, 26, 0.08);
  --shadow-md: 0 8px 32px rgba(92, 26, 26, 0.14);
  --shadow-lg: 0 20px 60px rgba(92, 26, 26, 0.2);
  --border-radius: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 80px;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--gray-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ---------- SELECTION ---------- */
::selection {
  background: var(--gold-light);
  color: var(--maroon-dark);
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transition: opacity 0.3s;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.15s, height 0.15s;
}

body:hover .cursor-dot,
body:hover .cursor-ring {
  opacity: 1;
}

@media (hover:none) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ---------- LOADER ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--maroon-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 120px;
  margin: 0 auto 24px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-logo img {
  width: 100%;
  border-radius: 12px;
}

.loader-bar {
  width: 240px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto 16px;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0;
  animation: loaderFill 1.8s ease forwards;
  border-radius: 3px;
}

.loader-text {
  color: var(--gold-pale);
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

@keyframes loaderFill {
  0% {
    width: 0
  }

  100% {
    width: 100%
  }
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(253, 246, 227, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(253, 246, 227, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: transform var(--transition);
}

.nav-logo:hover img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--maroon-mid);
  transition: all var(--transition);
  letter-spacing: 0.02em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--maroon-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 16px;
  right: 16px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--maroon);
  color: var(--gold-pale);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--maroon-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(92, 26, 26, 0.3);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--maroon);
  color: var(--gold-pale);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92, 26, 26, 0.35);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--maroon);
  color: var(--gold-pale);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--gold);
  color: var(--maroon-dark);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.4);
}

/* ---------- SECTION HEADERS ---------- */
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--maroon-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---------- INNER PAGE HERO BANNER ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, #8B2E2E 100%);
  padding: calc(var(--nav-height) + 80px) 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

/* Background image overlay for hero pages */
.page-hero.hero-about {
  background: linear-gradient(135deg, rgba(61, 14, 14, 0.88) 0%, rgba(92, 26, 26, 0.82) 60%, rgba(139, 46, 46, 0.78) 100%),
    url('hero_village_farmer.png') center center / cover no-repeat;
}

.page-hero.hero-products {
  background: linear-gradient(135deg, rgba(61, 14, 14, 0.85) 0%, rgba(92, 26, 26, 0.80) 60%, rgba(139, 46, 46, 0.75) 100%),
    url('hero_farm_bg.png') center center / cover no-repeat;
}

.page-hero.hero-quality {
  background: linear-gradient(135deg, rgba(61, 14, 14, 0.88) 0%, rgba(92, 26, 26, 0.82) 60%, rgba(139, 46, 46, 0.78) 100%),
    url('hero_farm_bg.png') center 60% / cover no-repeat;
}

.page-hero.hero-contact {
  background: linear-gradient(135deg, rgba(61, 14, 14, 0.85) 0%, rgba(92, 26, 26, 0.80) 60%, rgba(139, 46, 46, 0.75) 100%),
    url('hero_contact_bg.png') center center / cover no-repeat;
}

/* Subtle shimmer overlay pattern */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Gold bottom accent line */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

/* Icon style using flaticon/boxicons */
.page-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(212, 160, 23, 0.18);
  border: 2px solid rgba(212, 160, 23, 0.35);
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 2rem;
}

/* Feature pills in hero */
.page-hero-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.page-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.page-hero-pill i,
.page-hero-pill .pill-icon {
  color: var(--gold-light);
  font-size: 1rem;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.page-hero-breadcrumb a {
  color: var(--gold-light);
  transition: color var(--transition);
}

.page-hero-breadcrumb a:hover {
  color: var(--white);
}

/* ---------- MARQUEE STRIP ---------- */
.marquee-strip {
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon));
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-pale);
  flex-shrink: 0;
  text-transform: uppercase;
}

.marquee-track span.divider {
  color: var(--gold);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ---------- HERO (HOME) ---------- */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  background: linear-gradient(145deg, var(--cream) 0%, #F9EDCC 50%, var(--cream-dark) 100%);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--maroon);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.5)
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--maroon-dark);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-mid);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--maroon-dark);
  line-height: 1;
}

.stat-item span {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-item p {
  font-size: 0.78rem;
  color: var(--gray-mid);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  background: var(--gold);
  opacity: 0.3;
  margin: 0 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-img {
  width: min(420px, 100%);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 48px rgba(92, 26, 26, 0.25));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-18px)
  }
}

.hero-img-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.25) 0%, transparent 70%);
  z-index: 1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6
  }

  50% {
    transform: scale(1.1);
    opacity: 1
  }
}

.hero-float-badges {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
  background: rgba(253, 246, 227, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--maroon-dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.float-badge svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.fb1 {
  top: 12%;
  left: -10%;
  animation: fbFloat 3.5s ease-in-out infinite;
}

.fb2 {
  bottom: 20%;
  left: -14%;
  animation: fbFloat 4s ease-in-out infinite 0.5s;
}

.fb3 {
  top: 8%;
  right: -8%;
  animation: fbFloat 3.8s ease-in-out infinite 1s;
}

@keyframes fbFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--gold);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1
  }

  100% {
    transform: translateY(10px);
    opacity: 0
  }
}

/* ---------- ABOUT SECTION ---------- */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(61, 14, 14, 0.9) 0%, transparent 100%);
}

.about-year-badge {
  display: inline-block;
  text-align: center;
  background: var(--gold);
  padding: 12px 20px;
  border-radius: 12px;
}

.about-year-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--maroon-dark);
  font-weight: 900;
}

.about-year-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--maroon-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-floating-card {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}

.afc-icon {
  font-size: 2rem;
}

.afc-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--maroon-dark);
}

.afc-text span {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

.about-content {}

.about-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  margin-bottom: 24px;
}

.about-text {
  font-size: 1.02rem;
  color: var(--gray-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  color: var(--maroon-dark);
}

.pillar div strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--maroon-dark);
  margin-bottom: 2px;
}

.pillar div p {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

/* ---------- PRODUCTS SECTION ---------- */
.products {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  border: 1px solid rgba(212, 160, 23, 0.1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 160, 23, 0.3);
}

.product-card.featured {
  border: 2px solid var(--gold);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.product-card.featured .product-badge {
  background: var(--maroon);
  color: var(--gold-pale);
}

.product-img-wrap {
  height: 280px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.product-img-wrap img {
  height: 230px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
  filter: drop-shadow(0 8px 24px rgba(92, 26, 26, 0.2));
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06) translateY(-4px);
}

.product-body {
  padding: 24px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon-dark);
  margin-bottom: 4px;
}

.product-size {
  display: inline-block;
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-features li {
  font-size: 0.78rem;
  color: var(--maroon-mid);
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(92, 26, 26, 0.06);
  border-radius: 100px;
}

.product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--maroon);
  color: var(--gold-pale);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  text-align: center;
}

.product-btn:hover {
  background: var(--maroon-dark);
  transform: none;
}

.product-card.featured .product-btn {
  background: var(--gold);
  color: var(--maroon-dark);
}

.product-card.featured .product-btn:hover {
  background: var(--gold-light);
}

/* ---------- PRODUCTS PAGE SPECIFIC ---------- */
.products-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.filter-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--maroon-mid);
  border: 2px solid var(--gray-light);
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer;
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--maroon);
  color: var(--gold-pale);
  border-color: var(--maroon);
}

.product-card-page {
  transition: all var(--transition);
}

.product-card-page.hidden {
  display: none;
}

/* ---------- BENEFITS ---------- */
.benefits {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon-dark);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* ---------- PROCESS SECTION ---------- */
.process {
  padding: 100px 0;
  background: var(--maroon-dark);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4A017' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
}

.process .section-title {
  color: var(--gold-pale);
}

.process .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.process-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 160, 23, 0.4);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212, 160, 23, 0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content {}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.process-image-wrap {
  position: relative;
  text-align: center;
  z-index: 1;
}

.process-img {
  max-width: 800px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
}

.process-img-caption {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 16px;
  letter-spacing: 0.08em;
}

/* ---------- WHY STRIP ---------- */
.why-strip {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-item {
  text-align: center;
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.why-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon-dark);
  margin-bottom: 6px;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--maroon-mid);
  line-height: 1.5;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}

.test-quote {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}

.test-text {
  font-size: 1.1rem;
  color: var(--gray-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-mid));
  color: var(--gold-pale);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.test-author div strong {
  display: block;
  font-size: 1rem;
  color: var(--maroon-dark);
  font-weight: 700;
}

.test-author div span {
  font-size: 0.82rem;
  color: var(--gray-mid);
}

.test-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-left: auto;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--maroon);
}

.slider-btn:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--gold-pale);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  transition: all var(--transition);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ---------- CONTACT SECTION ---------- */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4A017' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--maroon-dark);
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item div strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--maroon-dark);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-item div p,
.contact-item div a {
  font-size: 0.95rem;
  color: var(--gray-mid);
  transition: color var(--transition);
}

.contact-item div a:hover {
  color: var(--maroon);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--maroon);
}

.social-link:hover {
  background: var(--maroon);
  color: var(--gold-pale);
  border-color: var(--maroon);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.contact-form-wrap {
  background: var(--cream);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--gray-light);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--maroon-dark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--maroon-dark);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-dark);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit-btn,
.dist-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  border-radius: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(46, 125, 50, 0.1);
  border-radius: 12px;
  color: #2E7D32;
  font-weight: 600;
  margin-top: 16px;
  border: 1px solid rgba(46, 125, 50, 0.2);
}

.form-success.show {
  display: block;
}

/* ---------- STATS SECTION ---------- */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-box {}

.stat-box .count {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.stat-box .stat-suffix {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-box .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- TIMELINE ---------- */
.timeline {
  padding: 80px 0;
  background: var(--cream);
}

.timeline-track {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .tl-content {
  text-align: right;
}

.tl-content {
  flex: 1;
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
}

.tl-year {
  display: inline-block;
  background: var(--gold);
  color: var(--maroon-dark);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.tl-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--maroon-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.tl-content p {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

.tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  z-index: 1;
}

/* ---------- QUALITY SECTION ---------- */
.quality-standards {
  padding: 80px 0;
  background: var(--white);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.quality-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
  text-align: center;
}

.quality-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 160, 23, 0.3);
}

.quality-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.quality-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--maroon-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.quality-card p {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  text-align: center;
}

.cta-strip h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--maroon-dark);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-strip p {
  font-size: 1.05rem;
  color: var(--maroon-mid);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-strip .btn-primary {
  background: var(--maroon);
  color: var(--gold-pale);
}

.cta-strip .btn-outline {
  border-color: var(--maroon);
  color: var(--maroon);
}

.cta-strip .btn-outline:hover {
  background: var(--maroon);
  color: var(--gold-pale);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--maroon-dark);
  color: var(--gold-pale);
}

.footer-top {
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(245, 222, 179, 0.65);
  line-height: 1.7;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-pale);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--maroon-dark);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links-col ul {}

.footer-links-col ul li {
  margin-bottom: 10px;
}

.footer-links-col ul li a {
  font-size: 0.88rem;
  color: rgba(245, 222, 179, 0.65);
  transition: color var(--transition);
}

.footer-links-col ul li a:hover {
  color: var(--gold-light);
}

.footer-links-col ul li:not(:has(a)) {
  font-size: 0.88rem;
  color: rgba(245, 222, 179, 0.65);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(212, 160, 23, 0.15);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245, 222, 179, 0.4);
}

.footer-bottom a {
  color: var(--gold-light);
}

/* ---------- FLOATING BUTTONS ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

.dist-float-btn {
  position: fixed;
  bottom: 88px;
  right: 28px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.4);
  transition: all var(--transition);
  border: none;
}

.dist-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.5);
}

.dist-float-btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- DISTRIBUTOR MODAL ---------- */
.dist-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(61, 14, 14, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.dist-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.dist-modal {
  background: var(--white);
  border-radius: 24px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition);
}

.dist-modal-overlay.open .dist-modal {
  transform: scale(1) translateY(0);
}

.dist-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--maroon);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid var(--gray-light);
}

.dist-modal-close:hover {
  background: var(--maroon);
  color: var(--gold-pale);
}

.dist-modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.dist-modal-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 16px;
}

.dist-modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--maroon-dark);
  margin-bottom: 8px;
}

.dist-modal-header h2 em {
  font-style: normal;
  color: var(--gold);
}

.dist-modal-header p {
  font-size: 0.9rem;
  color: var(--gray-mid);
}

.dist-modal-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.dist-perk {
  text-align: center;
  background: var(--cream);
  border-radius: 12px;
  padding: 16px 12px;
}

.dist-perk span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
}

.dist-perk p {
  font-size: 0.78rem;
  color: var(--maroon-mid);
  font-weight: 600;
  line-height: 1.3;
}

/* ---------- AOS ANIMATIONS ---------- */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none !important;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-down"] {
  transform: translateY(-40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="zoom-in"] {
  transform: scale(0.85);
}

/* ---------- MAP ---------- */
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 48px;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1024px) {
  .hero-main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-float-badges {
    display: none;
  }

  .hero-visual {
    order: -1;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-floating-card {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .why-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .dist-modal-perks {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:768px) {
  :root {
    --nav-height: 68px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--gray-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    max-height: 400px;
  }

  .nav-link {
    display: block;
    padding: 14px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--gray-light);
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-main {
    padding: 40px 24px 20px;
  }

  .hero-product-img {
    width: min(300px, 85vw);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-page-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .timeline-track::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    padding-left: 52px;
  }

  .timeline-item:nth-child(even) {
    flex-direction: column;
  }

  .timeline-item:nth-child(even) .tl-content {
    text-align: left;
  }

  .tl-dot {
    left: 20px;
  }

  .quality-grid {
    grid-template-columns: 1fr;
  }

  .dist-modal-perks {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .testimonial-card {
    padding: 28px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width:480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dist-float-btn span {
    display: none;
  }

  .dist-modal-perks {
    grid-template-columns: 1fr 1fr;
  }
}