:root {
  --saffron: #E07B2A;
  --saffron-deep: #C4611A;
  --gold: #F5C542;
  --cream: #FFF8EE;
  --dark: #1A0F00;
  --brown: #3D1F00;
  --green: #2D6A4F;
  --green-light: #52B788;
  --red: #D90429;
  --red-light: #EF233C;
  --white: #FFFFFF;
  --shadow: 0 8px 32px rgba(224,123,42,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans Devanagari', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.announce-bar span { color: var(--gold); }

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--saffron);
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.logo-area { display: flex; align-items: center; gap: 16px; }
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--saffron-deep);
  letter-spacing: 1px;
  line-height: 1;
}
.logo-text span { color: var(--green); }
.logo-badge {
  background: #f0f5ff;
  border: 1px solid #cdd9f5;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: #1a3c8f;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.header-btn {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(224,123,42,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.header-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,123,42,0.5); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1A0F00 0%, #3D1F00 50%, #5C2E00 100%);
  padding: 60px 5% 50px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(224,123,42,0.15) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-block;
  background: rgba(245,197,66,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 10px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
}
.pill.green { background: rgba(45,106,79,0.4); border-color: var(--green-light); color: var(--green-light); }

.hero-cta-wrap { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--dark);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(224,123,42,0.5);
  transition: transform 0.2s;
  border: none; cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { transform: translateY(-3px); }
.hero-price { color: rgba(255,255,255,0.6); font-size: 14px; }
.hero-price strong { color: var(--gold); font-size: 22px; }
.hero-price s { color: rgba(255,255,255,0.4); }

.hero-img-wrap {
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.hero-img-wrap img {
  width: 100%; max-width: 360px; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hero-stat-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; width: 100%;
}
.hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
}
.hero-stat-num { font-size: 20px; font-weight: 800; color: var(--gold); }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ── SECTION BASE ── */
section { padding: 60px 5%; }
.container { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  color: var(--saffron);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.section-title span { color: var(--saffron); }
.section-sub { color: #6b4c2a; font-size: 15px; line-height: 1.7; max-width: 620px; }

/* ── DIVIDER ── */
.divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  border: none; margin: 0;
}

/* ── BENEFITS ── */
.benefits-flex-container {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}
.benefits-gif-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.benefits-grid-column {
  flex: 1.4;
}
.benefits-grid-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gif-mockup-wrapper {
  width: 100%;
  max-width: 360px;
  height: 100%;
  min-height: 400px;
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(224,123,42,0.15);
  box-shadow: 0 10px 30px rgba(224,123,42,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 24px;
}
.benefits-showcase-gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Animated CSS Placeholder */
.animated-bottle-showcase {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.showcase-bottle-img {
  max-height: 280px;
  width: auto;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.12));
  animation: floatBottleAnim 4s ease-in-out infinite;
}
.glow-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(224,123,42,0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulseGlowAnim 3s ease-in-out infinite;
}

.benefit-bubble {
  position: absolute;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(224,123,42,0.2);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  color: var(--saffron-deep);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  z-index: 3;
  animation: floatBubbleAnim 5s ease-in-out infinite;
  white-space: nowrap;
}
.bubble-1 { top: 12%; left: 8%; animation-delay: 0s; }
.bubble-2 { top: 22%; right: 8%; animation-delay: 1.5s; }
.bubble-3 { bottom: 22%; left: 5%; animation-delay: 3s; }
.bubble-4 { bottom: 12%; right: 5%; animation-delay: 0.5s; }

@keyframes floatBottleAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulseGlowAnim {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.25); opacity: 1; }
}
@keyframes floatBubbleAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 992px) {
  .benefits-flex-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .gif-mockup-wrapper {
    min-height: 340px;
  }
  .benefits-gif-column, .benefits-grid-column {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .benefits-grid-mini {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 9px 5px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(224,123,42,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.benefit-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(224,123,42,0.15); }
.benefit-img-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 2px solid var(--gold);
  transition: transform 0.3s ease;
  display: none;
}
.benefit-card:hover .benefit-img-wrap {
  transform: scale(1.08);
}
.benefit-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.benefit-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--brown); }
.benefit-card p { font-size: 14px; color: #7a5c3a; line-height: 1.65; }

/* ── INGREDIENTS ── */
.ingredients-section { background: var(--dark); }
.ingredients-section .section-title { color: white; }
.ingredients-section .section-tag { color: var(--gold); }
.ingredients-section .section-sub { color: rgba(255,255,255,0.6); }
.herbs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-top: 40px;
}
.herb-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,197,66,0.2);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: background 0.3s, transform 0.25s, border-color 0.3s;
  cursor: pointer;
  position: relative;
}
.herb-card:hover {
  background: rgba(245,197,66,0.08);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.herb-img-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(245,197,66,0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.herb-card:hover .herb-img-wrap,
.herb-card.active .herb-img-wrap {
  transform: scale(1.08);
  border-color: var(--gold);
}
.herb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.herb-card h3 { font-size: 16px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.herb-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* Interactive herb details styling */
.herb-detail-badge {
  display: inline-block;
  background: rgba(245,197,66,0.15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.herb-card:hover .herb-detail-badge,
.herb-card.active .herb-detail-badge {
  opacity: 1;
  transform: translateY(0);
}

/* ── TIMELINE ── */
.timeline-section { background: linear-gradient(135deg, #fff8ee 0%, #ffe8c8 100%); }
.timeline-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0; margin-top: 48px;
  position: relative;
}
.timeline-grid::before {
  content: '';
  position: absolute; top: 48px; left: 10%; right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  z-index: 0;
}
.timeline-step {
  text-align: center; padding: 0 20px;
  position: relative; z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%; border: 4px solid var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: white;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(224,123,42,0.4);
}
.step-days {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--saffron-deep); margin-bottom: 10px;
}
.timeline-step p { font-size: 13px; color: #7a5c3a; line-height: 1.65; }
.step-img-wrap {
  width: 100%;
  height: 130px;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 3px solid var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: #fdfbf7;
}
.timeline-step:hover .step-img-wrap {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(224,123,42,0.15);
  border-color: var(--saffron);
}
.step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── FEATURES ROW ── */
.features-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 40px;
}
.feature-box {
  display: flex; align-items: flex-start; gap: 16px;
  background: white; border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(224,123,42,0.1);
  transition: transform 0.2s;
}
.feature-box:hover { transform: translateY(-4px); }
.feature-icon {
  font-size: 32px; flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.feature-box h3 { font-size: 15px; font-weight: 700; color: var(--brown); margin-bottom: 6px; }
.feature-box p { font-size: 13px; color: #9a7050; line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: #1a0f00; }
.testimonials-section .section-title { color: white; }
.testimonials-section .section-tag { color: var(--gold); }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 40px;
}
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,197,66,0.15);
  border-radius: 20px;
  padding: 28px 24px;
  transition: background 0.3s;
}
.testi-card:hover { background: rgba(245,197,66,0.07); }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-author {
  display: flex; align-items: center; gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: white; font-weight: 800; flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  overflow: hidden;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testi-avatar.avatar-a { background: linear-gradient(135deg, #e67e22, #f1c40f); }
.testi-avatar.avatar-p { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.testi-avatar.avatar-k { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.testi-avatar.avatar-l { background: linear-gradient(135deg, #e74c3c, #c0392b); }

.testi-name { font-weight: 700; color: var(--gold); font-size: 15px; }
.testi-city { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── PRICING ── */
.pricing-section {
  background: linear-gradient(135deg, #1A0F00 0%, #3D1F00 100%);
  text-align: center;
}
.pricing-section .section-title { color: white; }
.pricing-section .section-tag { color: var(--gold); }

.price-card {
  background: rgba(255,255,255,0.07);
  border: 2px solid var(--gold);
  border-radius: 24px;
  max-width: 480px; margin: 40px auto 0;
  padding: 40px 36px;
  position: relative; overflow: hidden;
}
.price-badge {
  position: absolute; top: -1px; right: 28px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--dark);
  font-weight: 800; font-size: 14px;
  padding: 6px 18px;
  border-radius: 0 0 12px 12px;
}
.price-original { color: rgba(255,255,255,0.4); font-size: 18px; text-decoration: line-through; margin-bottom: 6px; }
.price-current {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; color: var(--gold);
  line-height: 1;
}
.price-current span { font-size: 36px; }
.price-save {
  display: inline-block;
  background: rgba(45,106,79,0.4); border: 1px solid var(--green-light);
  color: var(--green-light);
  padding: 4px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  margin: 12px 0 24px;
}
.price-features { text-align: left; margin-bottom: 28px; }
.price-features li {
  list-style: none; padding: 8px 0;
  color: rgba(255,255,255,0.75); font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 10px;
}
.price-features li::before { content: '✓'; color: var(--green-light); font-weight: 800; font-size: 16px; }

.btn-order {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--dark);
  font-weight: 800; font-size: 18px;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(224,123,42,0.5);
  transition: transform 0.2s;
  border: none; cursor: pointer;
  font-family: inherit; width: 100%;
  justify-content: center;
}
.btn-order:hover { transform: translateY(-3px); }

/* ── ORDER FORM ── */
#order-form { background: var(--cream); }
.form-wrap {
  background: white;
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 560px; margin: 40px auto 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(224,123,42,0.15);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px; color: var(--dark);
  margin-bottom: 6px; text-align: center;
}
.form-subtitle { text-align: center; color: #9a7050; font-size: 14px; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--brown); margin-bottom: 6px;
}
.form-group input {
  width: 100%; padding: 13px 16px;
  border: 2px solid #e8d5be; border-radius: 12px;
  font-size: 15px; font-family: inherit;
  color: var(--dark); background: #fdf6ee;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus { border-color: var(--saffron); background: white; }
.form-group input::placeholder { color: #c4a57e; }
.form-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--dark); border: none;
  border-radius: 12px; font-size: 17px;
  font-weight: 800; cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(224,123,42,0.4);
  transition: transform 0.2s;
  margin-top: 8px;
}
.form-submit:hover { transform: translateY(-2px); }
.form-assure {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 16px; flex-wrap: wrap;
}
.assure-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--green); font-weight: 600; }

/* ── CERTIFICATIONS ── */
.certs-section { background: white; }
.certs-grid {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin-top: 32px;
}
.cert-badge {
  background: #f0f8f4; border: 2px solid #c0e8d5;
  border-radius: 12px; padding: 14px 20px;
  text-align: center; min-width: 120px;
}
.cert-badge .cert-icon { font-size: 28px; margin-bottom: 6px; }
.cert-badge p { font-size: 12px; font-weight: 700; color: var(--green); }

/* ── STICKY BOTTOM BAR ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark);
  border-top: 2px solid var(--saffron);
  padding: 12px 5%;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 999; gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.countdown-wrap { display: flex; align-items: center; gap: 12px; }
.countdown-label { color: rgba(255,255,255,0.6); font-size: 12px; white-space: nowrap; }
.countdown-timer { display: flex; gap: 8px; }
.countdown-block { text-align: center; }
.countdown-num {
  display: block;
  background: var(--saffron);
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  width: 44px; border-radius: 6px;
  line-height: 1.2; padding: 2px 0;
}
.countdown-unit { font-size: 10px; color: rgba(255,255,255,0.5); }
.sticky-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--dark); font-weight: 800;
  font-size: 15px; padding: 12px 28px;
  border-radius: 50px; text-decoration: none;
  box-shadow: 0 4px 16px rgba(224,123,42,0.5);
  white-space: nowrap; border: none; cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s;
}
.sticky-btn:hover { transform: scale(1.04); }

/* ── FOOTER ── */
footer {
  background: #0d0700;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 24px 5% 80px;
  font-size: 12px;
  line-height: 1.8;
}

/* ── SUCCESS MESSAGE ── */
.success-msg {
  display: none;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white;
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  font-size: 16px; font-weight: 700;
  margin-top: 16px;
}

/* ── ERROR MESSAGE ── */
.error-msg {
  display: none;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: white;
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  font-size: 16px; font-weight: 700;
  margin-top: 16px;
}

/* ── INVALID INPUT STATE ── */
.form-group input.invalid {
  border-color: var(--red) !important;
  background-color: #FFF5F5 !important;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── ALTERNATING IMAGE SECTIONS ── */
.alt-section {
  padding: 0;
  overflow: hidden;
}
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  align-items: stretch;
}
.alt-row.reverse { direction: rtl; }
.alt-row.reverse > * { direction: ltr; }

.alt-img-block {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.alt-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.alt-img-block:hover img { transform: scale(1.04); }

/* Pill/badge overlay on image */
.alt-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(224,123,42,0.92);
  color: white;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.alt-content-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px;
  background: var(--cream);
}
.alt-content-block.dark-bg {
  background: var(--dark);
}
.alt-content-block.dark-bg .alt-title { color: white; }
.alt-content-block.dark-bg .alt-title span { color: var(--gold); }
.alt-content-block.dark-bg .alt-desc { color: rgba(255,255,255,0.68); }
.alt-content-block.green-bg {
  background: linear-gradient(135deg, #1a3a2a 0%, #2D6A4F 100%);
}
.alt-content-block.green-bg .alt-title { color: white; }
.alt-content-block.green-bg .alt-title span { color: var(--gold); }
.alt-content-block.green-bg .alt-desc { color: rgba(255,255,255,0.68); }
.alt-content-block.warm-bg {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.alt-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
  display: block;
}
.alt-content-block.dark-bg .alt-tag,
.alt-content-block.green-bg .alt-tag { color: var(--gold); }

.alt-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 16px;
}
.alt-title span { color: var(--saffron); }
.alt-desc {
  font-size: 15px;
  color: #6b4c2a;
  line-height: 1.78;
  margin-bottom: 28px;
}
.alt-points {
  list-style: none;
  margin-bottom: 30px;
}
.alt-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #5a3e1b;
  padding: 7px 0;
  border-bottom: 1px solid rgba(224,123,42,0.1);
  font-weight: 600;
}
.alt-content-block.dark-bg .alt-points li,
.alt-content-block.green-bg .alt-points li { color: rgba(255,255,255,0.78); border-bottom-color: rgba(255,255,255,0.1); }
.alt-points li::before {
  content: '✦';
  color: var(--saffron);
  font-size: 12px;
  flex-shrink: 0;
}
.alt-content-block.dark-bg .alt-points li::before,
.alt-content-block.green-bg .alt-points li::before { color: var(--gold); }

.alt-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--dark);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(224,123,42,0.4);
  transition: transform 0.2s;
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.alt-cta:hover { transform: translateY(-3px); }

/* Small 200px image strip inside content side */
.alt-mini-img {
  width: 200px;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.alt-content-inner-flex {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.alt-content-text { flex: 1; min-width: 180px; }

/* ── FAQ ACCORDION ── */
.faq-section {
  background: var(--cream);
  padding: 60px 5%;
}
.faq-grid {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(224,123,42,0.15);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 6px 16px rgba(224,123,42,0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--brown);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  outline: none;
}
.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--saffron);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 14px;
  color: #7a5c3a;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ── ADMIN DASHBOARD OVERLAY ── */
.admin-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admin-modal {
  background: white;
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--saffron);
}
.admin-header {
  background: var(--dark);
  color: white;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--saffron);
}
.admin-header h2 {
  font-size: 20px;
  color: var(--gold);
}
.admin-close {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}
.admin-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}
.admin-table-wrap {
  overflow-x: auto;
  margin-top: 16px;
  border-radius: 8px;
  border: 1px solid #e8d5be;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}
.admin-table th, .admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8d5be;
}
.admin-table th {
  background: #fdf6ee;
  color: var(--brown);
  font-weight: 700;
}
.admin-table tr:hover {
  background: #fffdfb;
}
.admin-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.admin-btn {
  background: var(--green);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.2s;
}
.admin-btn:hover {
  background: var(--green-light);
}
.admin-btn.danger {
  background: #c93b2b;
}
.admin-btn.danger:hover {
  background: #e05243;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .alt-row, .alt-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .alt-img-block { min-height: 260px; }
  .alt-content-block { padding: 36px 24px; }
  .alt-mini-img { width: 140px; height: 140px; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-img-wrap { order: -1; }
  .hero-img-wrap img { max-width: 280px; }
  .timeline-grid::before { display: none; }
  .timeline-grid { gap: 24px; }
  .form-wrap { padding: 32px 24px; }
  .sticky-bar { flex-wrap: wrap; }
  header { flex-direction: column; text-align: center; }
  .price-current { font-size: 56px; }
}
@media (max-width: 480px) {
  section { padding: 48px 4%; }
  .hero { padding: 40px 4%; }
}

/* ── CONFIRMATION POPUP ── */
body.modal-open {
  overflow: hidden;
}
.confirm-popup {
  position: fixed;
  inset: 0;
  background: rgba(13, 7, 0, 0.95);
  backdrop-filter: blur(12px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  visibility: visible;
}
.confirm-popup.hidden {
  opacity: 0;
  visibility: hidden;
}
.confirm-card {
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.confirm-logo {
  font-size: 48px;
  margin-bottom: 20px;
  animation: pulseLogo 2s infinite ease-in-out;
}
@keyframes pulseLogo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.confirm-card h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.confirm-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.confirm-buttons {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.confirm-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.confirm-btn.yes {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(224, 123, 42, 0.4);
}
.confirm-btn.yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 123, 42, 0.5);
}
.confirm-btn.no {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.confirm-btn.no:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}
.confirm-warning {
  margin-top: 24px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}
