/* ============================================================
   MIAN ORGANIC FARM — Premium D2C/SaaS Redesign
   Design: Apple-meets-Organic-Agriculture
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --midnight: #0A0C10;
  --midnight-light: #12151C;
  --cream: #FDFBF7;
  --cream-dark: #F5F2EC;
  --gold: #C59D5F;
  --gold-light: #D4B778;
  --gold-glow: rgba(197, 157, 95, 0.25);
  --surface: #FFFFFF;
  --border: #E8E5E0;
  --border-light: #F0EDE8;
  --text-primary: #1A1C20;
  --text-secondary: #6B6E76;
  --text-muted: #9CA0A8;
  --whatsapp: #25D366;

  --shadow-xs: 0 1px 3px rgba(0,0,0,.04);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.16);
  --shadow-gold: 0 4px 24px rgba(197,157,95,.3);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --transition: .35s var(--ease);
  --transition-slow: .6s var(--ease);

  --container: 1200px;
  --section-pad: 120px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; font-weight: 700; }

/* ── Utilities ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 400;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: .92rem;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  letter-spacing: .01em;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active, .add-cart-btn:active, .filter-btn:active, .form-submit:active, .qty-btn:active {
  transform: scale(0.98) !important;
  transition: transform .08s cubic-bezier(.4,0,.2,1) !important;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(197,157,95,.4);
}
.btn-secondary {
  background: var(--midnight);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--midnight-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 16px 0;
}
.btn-ghost:hover { color: var(--gold-light); }
.btn-ghost svg { transition: transform .2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 12, 16, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.nav-logo-text span:last-child {
  font-size: .62rem;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  font-weight: 500;
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cart-btn {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: .88rem;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-cart-btn:hover { background: rgba(255,255,255,.14); }
.cart-count {
  background: var(--gold);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  min-width: 20px;
  text-align: center;
  transition: transform .35s var(--ease-bounce);
}
.cart-count.bounce {
  animation: cartBounce .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes cartBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.45); }
  50% { transform: scale(.85); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-new.png');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.02);
  animation: heroKen 25s ease infinite alternate;
  filter: blur(0px);
  transition: filter .8s ease;
}
.hero-bg.loading {
  filter: blur(20px);
  transform: scale(1.1);
}
@keyframes heroKen {
  from { transform: scale(1.0); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 12, 16, .88) 0%,
    rgba(10, 12, 16, .65) 45%,
    rgba(10, 12, 16, .35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .7s .4s forwards;
}
.hero-badge::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .8s .6s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.7);
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .8s .8s forwards;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .8s 1s forwards;
}
.hero-glass-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .8s 1.2s forwards;
}
.hero-glass-bar svg { flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: .8; transform: scaleY(.7); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
#trust-bar {
  padding: 48px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(197, 157, 95, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; color: var(--gold); }
.trust-text { display: flex; flex-direction: column; }
.trust-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.trust-text span {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ============================================================
   SHOP — BENTO GRID
   ============================================================ */
#shop { background: var(--cream); }

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 48px 0 40px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: .85rem;
  font-weight: 500;
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--midnight);
  color: #fff;
  border-color: var(--midnight);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bento-grid .product-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-grid .product-card:first-child .product-img-wrap {
  height: 100%;
  min-height: 380px;
}

/* Product Card */
.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.06);
  border-color: var(--border);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--midnight);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 600;
}
.product-unit {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  margin-top: auto;
}
.product-actions { display: flex; gap: 10px; align-items: center; }
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--cream); color: var(--text-primary); }
.qty-val {
  width: 36px;
  text-align: center;
  font-weight: 600;
  font-size: .9rem;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
}
.add-cart-btn {
  flex: 1;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--midnight);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: .82rem;
  transition: var(--transition);
}
.add-cart-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* ============================================================
   BOOKING — SaaS CARD + STEPPER
   ============================================================ */
.booking-section {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,157,95,.06) 0%, transparent 70%);
  pointer-events: none;
}
.booking-section .section-label { color: var(--gold-light); }
.booking-section .section-label::before { background: var(--gold-light); }
.booking-section .section-title { color: #fff; }
.booking-section .section-desc { color: rgba(255,255,255,.6); }

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.booking-info { padding-top: 20px; }
.booking-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.booking-feat {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.booking-feat-icon {
  width: 52px;
  height: 52px;
  background: rgba(197,157,95,.1);
  border: 1px solid rgba(197,157,95,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.booking-feat-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.booking-feat-text span {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* Booking Card */
.booking-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-xl);
}
.booking-card h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 32px;
}

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
}
.stepper::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 36px;
  right: 36px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.stepper-progress {
  position: absolute;
  top: 18px;
  left: 36px;
  height: 2px;
  background: var(--gold);
  z-index: 1;
  transition: width .5s var(--ease);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}
.step.active .step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.step.completed .step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.step-label {
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .3s;
  white-space: nowrap;
}
.step.active .step-label,
.step.completed .step-label { color: var(--text-primary); }

/* Stepper Steps Content */
.step-content { display: none; }
.step-content.active { display: block; }
.step-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.step-actions .btn { flex: 1; }

/* ============================================================
   VACCINATION
   ============================================================ */
#vaccination { background: var(--cream-dark); }
.vacc-search-wrap { max-width: 560px; margin: 48px auto 0; }
.vacc-search { display: flex; gap: 12px; }
.vacc-search input {
  flex: 1;
  padding: 16px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--surface);
}
.vacc-search input:focus { outline: none; border-color: var(--gold); }
.vacc-results { margin-top: 40px; }
.vacc-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.vacc-card h3 { color: var(--text-primary); margin-bottom: 8px; font-size: 1.2rem; }
.vacc-card .vacc-meta { color: var(--text-muted); font-size: .85rem; margin-bottom: 24px; }
.vacc-timeline { position: relative; padding-left: 28px; border-left: 2px solid var(--gold); }
.vacc-timeline-item { position: relative; padding: 12px 0 12px 20px; }
.vacc-timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 18px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--gold);
}
.vacc-timeline-item strong { display: block; color: var(--text-primary); font-size: .92rem; font-family: 'Inter', sans-serif; }
.vacc-timeline-item span { font-size: .8rem; color: var(--text-muted); }
.vacc-not-found { text-align: center; padding: 48px 20px; color: var(--text-muted); }

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: var(--midnight);
  color: #fff;
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-img-badge span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-img-badge span:last-child {
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.about-feature {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.about-feature:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.about-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(197,157,95,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-feature-text strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
  font-family: 'Inter', sans-serif;
}
.about-feature-text span { font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-items { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; align-items: center; gap: 16px; }
.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(197,157,95,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: .88rem; font-weight: 600; color: var(--text-primary); }
.contact-info-text span { font-size: .82rem; color: var(--text-muted); }
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 16px 32px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .92rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.25);
  transition: var(--transition);
}
.whatsapp-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.35); }

.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.contact-form-card h3 { font-size: 1.3rem; color: var(--text-primary); margin-bottom: 28px; }

/* ── Forms ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--cream);
  color: var(--text-primary);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-full);
  background: var(--midnight);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
}
.form-submit:hover { background: var(--gold); transform: translateY(-2px); }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(197,157,95,.08);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 16px;
  border: 1px solid rgba(197,157,95,.2);
}
.form-success.show { display: block; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,12,16,.5);
  backdrop-filter: blur(4px);
  z-index: 8999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: -500px;
  width: 460px;
  max-width: 100vw;
  height: 100vh;
  background: var(--surface);
  z-index: 9000;
  transition: right .4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 48px rgba(0,0,0,.12);
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-light);
}
.cart-drawer-header h3 { font-size: 1.2rem; color: var(--text-primary); }
.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-secondary);
}
.cart-close:hover { background: var(--cream-dark); transform: rotate(90deg); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.cart-empty span { font-size: 2.5rem; display: block; margin-bottom: 12px; opacity: .5; }
.cart-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}
.cart-item-img { width: 60px; height: 60px; border-radius: 14px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: .88rem; color: var(--text-primary); }
.cart-item-price { font-size: .82rem; color: var(--gold); font-weight: 600; margin-top: 2px; }
.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.cart-item-qty button {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition);
}
.cart-item-qty button:hover { background: var(--cream); }
.cart-item-qty span { width: 28px; text-align: center; font-size: .82rem; font-weight: 600; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 4px;
  transition: var(--transition);
}
.cart-item-remove:hover { color: #dc3545; transform: scale(1.15); }
.cart-drawer-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.cart-total span:last-child { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.3rem; }
.cart-payment-toggle { display: flex; gap: 10px; margin-bottom: 14px; }
.toggle-label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.toggle-label:has(input:checked) { border-color: var(--midnight); background: rgba(10,12,16,.03); }
.toggle-label input { accent-color: var(--midnight); }
.instalment-info {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 14px;
  border: 1px solid var(--border-light);
}
.instalment-info select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
  font-size: .88rem;
}
.instalment-breakdown { font-size: .82rem; color: var(--text-secondary); line-height: 1.9; }
.instalment-breakdown strong { color: var(--text-primary); }
.cart-checkout-btn { width: 100%; justify-content: center; padding: 16px; font-size: .95rem; }

/* ============================================================
   CHECKOUT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,12,16,.55);
  backdrop-filter: blur(6px);
  z-index: 9500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 44px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalIn .35s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: scale(.96) translateY(16px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
}
.modal-close:hover { background: var(--cream-dark); }
.modal-card h3 { font-size: 1.3rem; color: var(--text-primary); margin-bottom: 28px; }
.checkout-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  font-size: .88rem;
  line-height: 1.9;
  border: 1px solid var(--border-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--midnight);
  color: rgba(255,255,255,.7);
  padding: 80px 0 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.footer-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.footer-links {
  display: flex;
  gap: 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  font-weight: 500;
  transition: color .25s;
}
.footer-links a:hover { color: var(--gold); }
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-bottom {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  z-index: 7000;
  transition: var(--transition);
  animation: waPulse 2.5s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(37,211,102,.45); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.35); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.55); }
}

/* ============================================================
   RESPONSIVE — MOBILE FIRST OVERRIDES
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .about-grid, .booking-layout, .contact-grid { grid-template-columns: 1fr; }
  .booking-layout { gap: 48px; }
  .about-img-badge { right: 16px; }
  .trust-bar-inner { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 20px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--midnight);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 24px;
    transition: right .4s ease;
    z-index: 999;
    border-left: 1px solid rgba(255,255,255,.06);
  }
  .nav-links.open { right: 0; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }

  .hero-content { padding-top: 60px; }
  .hero-glass-bar { font-size: .82rem; padding: 12px 20px; }
  .trust-bar-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .trust-item { gap: 14px; }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-grid .product-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  .bento-grid .product-card:first-child .product-img-wrap {
    min-height: 220px;
  }

  .booking-card { padding: 32px 24px; }
  .stepper { gap: 0; }
  .step-label { font-size: .65rem; }

  .about-img-main { height: 320px; }
  .about-features { grid-template-columns: 1fr; }
  .about-grid { gap: 40px; }

  .contact-grid { gap: 48px; }
  .contact-form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .cart-drawer { width: 100vw; }

  .footer-links { gap: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-grid .product-card:first-child {
    grid-column: span 1;
  }
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 8px 16px; font-size: .8rem; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }
}

/* ============================================================
   SKELETON LOADERS
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, var(--cream-dark) 25%, var(--cream) 50%, var(--cream-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease infinite;
  border-radius: var(--radius);
}
.skeleton-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.skeleton-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #e8e5e0 25%, #f0ede8 50%, #e8e5e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease infinite;
}
.skeleton-text {
  height: 14px;
  margin: 16px 24px 8px;
  border-radius: 6px;
  width: 60%;
}
.skeleton-text-sm {
  height: 10px;
  margin: 0 24px 16px;
  border-radius: 6px;
  width: 40%;
}
.skeleton-price {
  height: 20px;
  margin: 12px 24px 24px;
  border-radius: 6px;
  width: 35%;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   BOOKING SUCCESS MODAL OVERLAY
   ============================================================ */
.booking-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,12,16,.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.booking-success-overlay.open { display: flex; }
.booking-success-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: modalIn .4s var(--ease);
}
.success-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: checkPop .5s .15s var(--ease-bounce) both;
}
.success-check svg {
  width: 36px;
  height: 36px;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: checkDraw .5s .4s ease forwards;
}
@keyframes checkPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}
.booking-success-card h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.booking-success-card p {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.success-summary {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
  font-size: .85rem;
  line-height: 1.9;
  margin-bottom: 24px;
  color: var(--text-secondary);
}
.success-summary strong { color: var(--text-primary); }
.success-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--whatsapp);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,.25);
  width: 100%;
  justify-content: center;
}
.success-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.35); }
.success-wa-btn:active { transform: scale(0.98); }
.success-wa-btn svg { width: 20px; height: 20px; fill: currentColor; }
.success-dismiss {
  margin-top: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: .82rem;
  cursor: pointer;
  padding: 8px;
  transition: color .2s;
}
.success-dismiss:hover { color: var(--text-primary); }

/* ============================================================
   VACCINATION — VERIFIED STYLING
   ============================================================ */
.vacc-card.verified {
  border: 1.5px solid rgba(46,204,113,.3);
  background: linear-gradient(135deg, rgba(46,204,113,.03), var(--surface));
}
.vacc-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,204,113,.1);
  color: #27ae60;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .03em;
}
.vacc-verified-badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}
.vacc-timestamp {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.vacc-timestamp strong { color: #27ae60; }

/* ============================================================
   URDU SUB-LABELS
   ============================================================ */
.urdu-sub {
  display: block;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: .7rem;
  color: var(--text-muted);
  opacity: .7;
  margin-top: 2px;
  direction: rtl;
  line-height: 1.4;
}

/* ============================================================
   STICKY MOBILE CART BAR
   ============================================================ */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--midnight);
  padding: 14px 20px;
  z-index: 8000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.15);
  transform: translateY(100%);
  transition: transform .35s var(--ease);
  border-top: 1px solid rgba(255,255,255,.06);
}
.sticky-cart-bar.visible {
  transform: translateY(0);
}
.sticky-cart-bar .sticky-info {
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 500;
}
.sticky-cart-bar .sticky-info strong {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}
.sticky-cart-bar .sticky-add-btn {
  padding: 12px 28px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .85rem;
  white-space: nowrap;
  transition: var(--transition);
}
.sticky-cart-bar .sticky-add-btn:active { transform: scale(0.98); }

@media (min-width: 769px) {
  .sticky-cart-bar { display: none !important; }
}
@media (max-width: 768px) {
  .sticky-cart-bar { display: flex; }
}
