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

:root {
  /* Main palette */
  --primary-green: #1b5e20;
  --light-green: #2e7d32;
  --accent-orange: #ff6f00;
  --light-orange: #ff8f00;
  --bg-cream: #faf7f2;
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
  --light:
    radial-gradient(
      circle at 20% 50%,
      rgba(80, 184, 87, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 111, 0, 0.05) 0%,
      transparent 40%
    );

  /* Pricing section palette */
  --green-dark: #1b5e20;
  --green-mid: #2e7d32;
  --green-light: #43a047;
  --orange: #ff6f00;
  --orange-light: #ff8f00;
  --gold: #e8a020;

  /* FAQ / Questions section palette */
  --forest: #1a4025;
  --forest-mid: #22542f;
  --forest-light: #2d6b3e;
  --gold-light: #f5b940;
  --cream: #fdf8f0;
  --text-muted: #5a7a5e;
}

body {
  font-family: "Cairo", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ─────────────────────────────────────────
   Navigation / Logo
───────────────────────────────────────── */
.logo {
  width: 50px;
  height: 50px;
}

/* ─────────────────────────────────────────
   Hero Section
───────────────────────────────────────── */
.hero {
  width: 100%;
  padding: 4rem 5%;
  padding-top: 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -10%;
  left: -30%;
  width: 120%;
  height: 120%;
  z-index: -1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: slideInRight 1s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.badge {
  display: inline-block;
  background: rgba(255, 111, 0, 0.1);
  color: var(--accent-orange);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(255, 111, 0, 0.2);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
}

.hero h1 span {
  color: var(--accent-orange);
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: 0;
  width: 100%;
  height: 7px;
  margin: auto;
  background: rgba(255, 111, 0, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-features {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  font-size: 1.1rem;
}

.feature-icon {
  width: 30px;
  height: 30px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   CTA Buttons (shared)
───────────────────────────────────────── */
.cta-btn {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.2s ease;
}

.cta-btn.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-btn.visible:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--light-orange)
  );
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(255, 111, 0, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 111, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid var(--primary-green);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: white;
}

/* ─────────────────────────────────────────
   Hero Image / Product Showcase
───────────────────────────────────────── */
.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.product-showcase {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 50, 0.1),
    rgba(255, 111, 0, 0.05)
  );
  border-radius: 50%;
  z-index: -1;
  margin-left: 100px;
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
  transform: rotate(-5deg);
  transition: transform 0.3s;
}

.product-img:hover {
  transform: rotate(0deg) scale(1.05);
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--primary-green);
  animation: float 4s ease-in-out infinite;
}

.floating-badge:nth-child(3) {
  top: 20%;
  left: 0;
  animation-delay: 0s;
}
.floating-badge:nth-child(4) {
  bottom: 30%;
  right: 0;
  animation-delay: 2s;
  background: var(--accent-orange);
  color: white;
}

/* ─────────────────────────────────────────
   Stats Section
───────────────────────────────────────── */
.stats {
  padding: 4rem 5%;
  background: white;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  border-radius: 20px;
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: var(--bg-cream);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-gray);
  font-weight: 600;
}

/* ─────────────────────────────────────────
   Benefits Section
───────────────────────────────────────── */
.benefits {
  padding: 6rem 5%;
  position: relative;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(46, 125, 50, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 111, 0, 0.05) 0%,
      transparent 50%
    );
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-tag {
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1.1rem;
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 30px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--accent-orange)
  );
  transform: scaleX(0);
  transition: transform 0.3s;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 125, 50, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.benefit-desc {
  color: var(--text-gray);
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   How It Works
───────────────────────────────────────── */
.how-it-works {
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--primary-green), #0d3320);
  color: white;
  position: relative;
  overflow: hidden;
}

.how-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.howImg1 {
  width: 600px;
  height: 400px;
  display: flex;
  flex-direction: row;
  justify-self: end;
  margin-left: auto;
  background-color: #0a0a0a;
}

.howImg1 img {
  width: 100%;
  height: 100%;
}

.howImg2 {
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.how-it-works .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.step {
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 30%;
  left: -20%;
  font-size: 2rem;
  color: var(--accent-orange);
  opacity: 0.5;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(255, 111, 0, 0.3);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.step-desc {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   Results Section
───────────────────────────────────────── */
.results {
  padding: 6rem 5%;
  background: var(--bg-cream);
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.results-visual {
  position: relative;
}

.weight-scale {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.scale-display {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-orange);
  margin: 1rem 0;
  font-family: "Courier New", monospace;
}

.scale-label {
  color: var(--text-gray);
  font-weight: 600;
}

.progress-bars {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.progress-item {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.progress-bar {
  height: 10px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--accent-orange)
  );
  border-radius: 10px;
  transition: width 2s ease;
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ─────────────────────────────────────────
   Testimonials
───────────────────────────────────────── */
.testimonials {
  padding: 6rem 5%;
  background: white;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-cream);
  padding: 2.5rem;
  border-radius: 25px;
  position: relative;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.quote-icon {
  font-size: 4rem;
  color: var(--accent-orange);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.author-info h4 {
  color: var(--primary-green);
  font-weight: 700;
}
.author-info span {
  color: var(--text-gray);
  font-size: 0.9rem;
}
.stars {
  color: #ffc107;
  margin-top: 0.5rem;
}

/* ─────────────────────────────────────────
   Ingredients Section
───────────────────────────────────────── */
.ingredients {
  padding: 2rem 5%;
  background: linear-gradient(to bottom, var(--bg-cream), white);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.ingredient-item {
  text-align: start;
  padding: 1rem;
  background: white;
  border-radius: 20px;
  transition: all 0.3s;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.ingredient-item:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.ingredient-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.ingredient-name {
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}
.ingredient-benefit {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Ingredients — extended layout */
.ing-header {
  text-align: center;
  padding: 20px;
}

.ing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border: 2px solid #4caf50;
  border-radius: 50px;
  padding: 6px 22px;
  font-size: 15px;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 16px;
}

.ing-heading {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #1b5e20;
  margin-bottom: 14px;
}

.ing-subheading {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 600;
  color: #555;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 28px;
}

.ing-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f5a623, #e8880a);
  border-radius: 4px;
  margin: 0 auto;
}

.ingre-content {
  display: flex;
  flex-direction: row;
}
.section-ingredients {
  display: flex;
  min-height: auto;
  flex-direction: column;
  overflow: hidden;
}

.ing-image {
  flex: 0 0 40%;
  position: sticky;
  top: 0;
  
  /* height: 80vh; */
  overflow: hidden;
}

.ing-image img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: auto;
}

.cta-ing {
  margin: auto;
}
.ing-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(10, 46, 20, 0.55) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 48px 40px;
}

.ing-content {
  flex: 1;
  background: #fff;
  padding: 48px 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Accordion */
.accordion {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  width: 70%;
  /* margin: auto; */
  margin: 10px auto;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #1b5e20;
  color: #fff;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 900;
  cursor: pointer;
  user-select: none;
  transition: background 0.25s;
  border: none;
  width: 100%;
  text-align: right;
  direction: rtl;
}

.accordion-header:hover {
  background: #2e7d32;
}
.accordion-header.active {
  background: #e07b10;
}

.accordion-icon {
  font-size: 22px;
  font-weight: 900;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 8px;
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  background: #fff;
  padding: 0;
}

.accordion-body.open {
  max-height: 350px;
  padding: 20px 24px 24px;
}

.accordion-body .ingredient-item {
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.accordion-body.open .ingredient-item {
  opacity: 1;
  transform: translateY(0);
}
.accordion-body.open .ingredient-item:nth-child(1) {
  transition-delay: 0.05s;
}
.accordion-body.open .ingredient-item:nth-child(2) {
  transition-delay: 0.1s;
}
.accordion-body.open .ingredient-item:nth-child(3) {
  transition-delay: 0.15s;
}
.accordion-body.open .ingredient-item:nth-child(4) {
  transition-delay: 0.2s;
}
.accordion-body.open .ingredient-item:nth-child(5) {
  transition-delay: 0.25s;
}
.accordion-body .ingredient-item:last-child {
  margin-bottom: 0;
}

.ingredient-name {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 900;
  color: #1b5e20;
  margin-bottom: 4px;
}

.ingredient-desc {
  font-size: clamp(13px, 1.3vw, 14px);
  font-weight: 600;
  color: #555;
  line-height: 1.7;
}

.ing-cta {
  padding: 1.5rem 4rem;
  margin-top: 30px;
}
.cta-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   Questions / FAQ Section
───────────────────────────────────────── */
.questions-section {
  background: var(--cream);
  position: relative;
  padding: 60px 24px;
}

.questions-section::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 20% 10%,
      rgba(26, 64, 37, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 80% at 80% 90%,
      rgba(232, 160, 32, 0.05) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

.faq-section {
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(80, 184, 87, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 111, 0, 0.05) 0%,
      transparent 40%
    );
  margin: 0;
  padding: 0;
}

.wrapper {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 30px 0;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header .eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.page-header h1 {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 900;
  color: var(--forest-light);
  line-height: 1.3;
}

.page-header h2 {
  color: var(--accent-orange);
  font-weight: 900;
}

.page-header p {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(15, 37, 21, 0.486);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}

.featured-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26, 64, 37, 0.15);
  animation: slideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.featured-card::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.featured-card::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -20px;
  width: 220px;
  height: 220px;
  background: rgba(232, 160, 32, 0.07);
  border-radius: 50%;
}

.featured-card .fc-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.featured-card .fc-label .icon {
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.featured-card .fc-label h2 {
  color: var(--forest);
  font-size: 17px;
  font-weight: 700;
}
.featured-card p {
  color: var(--forest-mid);
  font-size: 16px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
  animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.faq-item:nth-child(1) {
  animation-delay: 0.05s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.15s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.25s;
}
.faq-item:nth-child(6) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(7) {
  animation-delay: 0.35s;
}
.faq-item:nth-child(8) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(9) {
  animation-delay: 0.45s;
}
.faq-item:nth-child(10) {
  animation-delay: 0.5s;
}

.faq-item:hover {
  box-shadow: 0 6px 28px rgba(26, 64, 37, 0.14);
  border-color: rgba(26, 64, 37, 0.2);
}

.faq-item.open {
  border-color: var(--forest-light);
  box-shadow: 0 6px 32px rgba(26, 64, 37, 0.18);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  gap: 16px;
  transition: background 0.2s;
}

.faq-trigger:hover {
  background: rgba(26, 64, 37, 0.03);
}

.faq-item.open .faq-trigger {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
}

.faq-trigger .q-text {
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.2s;
  flex: 1;
  line-height: 1.4;
}

.faq-item.open .faq-trigger .q-text {
  color: var(--white);
}

.faq-trigger .toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(26, 64, 37, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.25s,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-trigger .toggle-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--forest);
  stroke-width: 2.5;
  transition: stroke 0.2s;
}

.faq-item.open .faq-trigger .toggle-icon {
  background: var(--gold);
  transform: rotate(45deg);
}
.faq-item.open .faq-trigger .toggle-icon svg {
  stroke: var(--forest);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-body {
  max-height: 400px;
}

.faq-body-inner {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(26, 64, 37, 0.08);
}
.faq-body-inner p {
  font-size: 15px;
  color: #4a6b4f;
  line-height: 1.8;
  font-weight: 500;
}

.cta-wrap {
  text-align: center;
  margin-top: 52px;
}

.cta-wrap .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--forest);
  font-family: "Cairo", sans-serif;
  font-size: 18px;
  font-weight: 900;
  padding: 18px 52px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(232, 160, 32, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  opacity: 1;
  transform: none;
}

.cta-wrap .cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(232, 160, 32, 0.5);
}
.cta-wrap .cta-btn:active {
  transform: translateY(0) scale(0.99);
}
.cta-wrap .cta-btn .cart-icon {
  font-size: 22px;
}

/* ─────────────────────────────────────────
   WhatsApp Bubble
───────────────────────────────────────── */
.whatsapp-btn,
.wa-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.55);
  cursor: pointer;
  z-index: 100;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.whatsapp-btn:hover,
.wa-bubble:hover {
  transform: scale(1.1);
}

.whatsapp-btn svg,
.wa-bubble svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.wa-bubble {
  right: auto;
  left: 28px;
  width: 56px;
  height: 56px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

/* ─────────────────────────────────────────
   Social Proof Toast
───────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 100px;
  left: 28px;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  animation: toastIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.5s both;
  z-index: 99;
}

.toast .brand-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.toast .toast-text {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.5;
  font-weight: 600;
}
.toast .toast-time {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}
.toast .check {
  color: #25d366;
  font-size: 16px;
  margin-left: 4px;
}

/* ─────────────────────────────────────────
   CTA Section
───────────────────────────────────────── */
.cta-section {
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--primary-green), #0d3320);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  color: white;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.cta-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
}

.price-tag {
  display: inline-block;
  background: white;
  color: var(--primary-green);
  padding: 1.5rem 3rem;
  border-radius: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
}

.price-tag .currency {
  font-size: 1.5rem;
  vertical-align: top;
}
.price-tag .period {
  font-size: 1rem;
  color: var(--text-gray);
  display: block;
  font-weight: 600;
}

.guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 50px;
  color: white;
  margin-top: 2rem;
  font-weight: 600;
}

/* ─────────────────────────────────────────
   Footer
───────────────────────────────────────── */
footer {
  background: #0a0a0a;
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  color: white;
  -webkit-text-fill-color: white;
}
.footer-brand p {
  color: #999;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--accent-orange);
  transform: translateY(-3px);
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

.certificates {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #999;
  font-size: 0.9rem;
}

/* ─────────────────────────────────────────
   Shared Animations
───────────────────────────────────────── */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-green);
}

/* ─────────────────────────────────────────
   Reviews Section
───────────────────────────────────────── */
.reviews-section {
  background: linear-gradient(135deg, var(--primary-green), #0d3320);
  padding: 20px 0 80px;
  overflow: hidden;
  position: relative;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 90%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.reviews-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 48px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.reviews-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #e8a020;
  border-radius: 4px;
  margin: 12px auto 0;
}

/* ── Slider ── */
.slider-viewport {
  overflow: hidden;
  position: relative;
  padding: 8px 0 16px;
  cursor: grab;
}

.slider-viewport:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: 20px;
  padding: 0 40px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.photo-card {
  flex: 0 0 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.35s;
  background: var(--forest);
  aspect-ratio: auto;
}

.photo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  pointer-events: none;
  transition: transform 0.5s ease;
  -webkit-user-drag: none;
}

.photo-card:hover img {
  transform: scale(1.04);
}
.photo-card.active-card {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, var(--primary-green), #0d3320);
  color: white;
  font-size: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  backdrop-filter: blur(4px);
  line-height: 1;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}
.nav-btn:disabled {
  opacity: 0.25;
  cursor: default;
  transform: none;
}

.nav-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s,
    border-radius 0.3s;
  border: none;
}

.dot.active {
  background: #e8a020;
  width: 26px;
  border-radius: 4px;
}

.progress-wrap {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  overflow: hidden;
  margin: 16px auto 0;
}

.progress-fill {
  height: 100%;
  background: #e8a020;
  border-radius: 4px;
  width: 0%;
}

/* ─────────────────────────────────────────
   Pricing / Packages Section
───────────────────────────────────────── */
.pricing-section {
  padding: 60px 20px;
  background: var(--bg-cream);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border: 2px solid #4caf50;
  border-radius: 50px;
  padding: 6px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

.section-head h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.25;
}

.section-head h2 span {
  color: var(--orange);
}

.section-head p {
  margin-top: 12px;
  font-size: 15px;
  color: #666;
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.7;
}

.divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 4px;
  margin: 16px auto 0;
}

/* ── 4-column grid — each card = 25% ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ── Card ── */
.pkg-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.09);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.35s;
  position: relative;
  border: 2px solid transparent;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  border-color: var(--green-mid);
}

.pkg-card.popular {
  border-color: var(--orange);
}

.popular-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(255, 111, 0, 0.4);
  z-index: 2;
}

/* Card header */
.pkg-header {
  padding: 18px 18px 14px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  text-align: right;
  position: relative;
  overflow: hidden;
}

.pkg-card.popular .pkg-header {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.pkg-header::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -20px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.pkg-header h3 {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 3px;
}

.pkg-header .pkg-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Product image */
.pkg-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 12px 6px;
  min-height: 90px;
}

.pkg-img-wrap img {
  height: 75px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
  transition: transform 0.4s ease;
}

.pkg-card:hover .pkg-img-wrap img {
  transform: scale(1.07) rotate(-3deg);
}

/* Duration pill */
.duration-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e8f5e9;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin: 0 auto 12px;
  border: 1.5px solid #c8e6c9;
}

/* Body */
.pkg-body {
  padding: 0 14px 16px;
  text-align: right;
}

/* Features */
/* .pkg-features {
  list-style: none;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 50%;
} */

.package-fetureContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.package-fetureContainer img {
  width: 50%;
  height: 100px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

.pkg-features {
  list-style: none;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 50%;
  flex-shrink: 0;
}

.pkg-features li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #444;
}

.pkg-features li .icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  color: #fff;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pkg-card.popular .pkg-features li .icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

/* Price */
.price-wrap {
  background: #f9fbe7;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #dcedc8;
}

.pkg-card.popular .price-wrap {
  background: #fff3e0;
  border-color: #ffe0b2;
}

.price-old {
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
  font-weight: 600;
}

.price-discount {
  font-size: 10px;
  background: #ef9a9a;
  color: #b71c1c;
  padding: 2px 6px;
  border-radius: 50px;
  font-weight: 700;
  margin-top: 3px;
  display: inline-block;
}

.price-new {
  text-align: left;
}

.price-new .label {
  font-size: 10px;
  color: #888;
  font-weight: 600;
  display: block;
}

.price-new .amount {
  font-size: 26px;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}

.pkg-card.popular .price-new .amount {
  color: var(--orange);
}

.price-new .currency {
  font-size: 13px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 4px;
  display: inline-block;
}

/* Gift tag */
.gift-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 1.5px dashed #81c784;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.pkg-card.popular .gift-tag {
  background: linear-gradient(135deg, #fff8e1, #fffde7);
  border-color: var(--gold);
  color: #e65100;
}

.gift-tag .gift-icon {
  font-size: 15px;
}

/* CTA */
.pkg-cta {
  display: block;
  width: 100%;
  padding: 11px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: "Cairo", sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff;
  box-shadow: 0 5px 18px rgba(27, 94, 32, 0.28);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.pkg-card.popular .pkg-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 5px 18px rgba(255, 111, 0, 0.32);
}

.pkg-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.5s;
}

.pkg-cta:hover::before {
  left: 100%;
}
.pkg-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 94, 32, 0.38);
}
.pkg-card.popular .pkg-cta:hover {
  box-shadow: 0 8px 24px rgba(255, 111, 0, 0.42);
}

/* Shipping note */
.ship-note {
  text-align: center;
  font-size: 11px;
  color: #888;
  font-weight: 600;
  margin-top: 8px;
}
.ship-note span {
  color: var(--green-dark);
  font-weight: 800;
}

/* Cards entrance animation */
@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.pkg-card {
  /* keep all existing styles, just add: */
  animation: slideFromLeft 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pkg-card:nth-child(1) {
  animation-delay: 0.1s;
}
.pkg-card:nth-child(2) {
  animation-delay: 0.25s;
}
.pkg-card:nth-child(3) {
  animation-delay: 0.4s;
}
.pkg-card:nth-child(4) {
  animation-delay: 0.55s;
}
/* =============================================
   ORDER SECTION — paste into your style.css
============================================= */

/* ── wrapper ── */
.order-section {
  width: 100%;
  position: relative;
  padding: 60px 5%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(80, 184, 87, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 111, 0, 0.05) 0%,
      transparent 40%
    );
  overflow: hidden;
}

.order-section::before,
.order-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.order-section::before {
  width: 520px;
  height: 520px;
  top: -220px;
  left: -180px;
  background: radial-gradient(circle, rgba(255, 111, 0, 0.1), transparent 70%);
}

.order-section::after {
  width: 420px;
  height: 420px;
  bottom: -160px;
  right: -160px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.15), transparent 70%);
}

/* ── card shell ── */
.order-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 400px 1fr;
  border-radius: 36px;
  overflow: hidden;
  /* box-shadow: 0 48px 120px rgba(0, 0, 0, 0.55); */
  max-width: 1120px;
  margin: 0 auto;
}

/* ════════════════════════════════
   LEFT — dark green product panel
════════════════════════════════ */
.order-left {
  background: linear-gradient(165deg, #1e6b26 0%, #123a18 55%, #0a2210 100%);
  padding: 48px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* decorative rings */
.order-left::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 55px solid rgba(255, 111, 0, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.order-left::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 35px solid rgba(255, 255, 255, 0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* title */
.left-title {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.left-title h2 {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
}

.left-title h2 em {
  font-style: normal;
  color: #ffab40;
  display: block;
}

/* product image */
.prod-wrap {
  position: relative;
  z-index: 1;
  margin: 4px 0 6px;
}

.prod-wrap img {
  width: 210px;
  filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.65));
  animation: bobUp 5s ease-in-out infinite;
  display: block;
  margin: 0 auto;
}

@keyframes bobUp {
  0%,
  100% {
    transform: translateY(0px) rotate(-2deg);
  }
  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

.prod-shadow {
  width: 160px;
  height: 20px;
  background: radial-gradient(
    ellipse,
    rgba(255, 111, 0, 0.45),
    transparent 72%
  );
  margin: 0 auto 4px;
  filter: blur(5px);
  animation: shadowPulse 5s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.55;
  }
  50% {
    transform: scaleX(0.7);
    opacity: 0.25;
  }
}

/* product label badges */
.prod-labels {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 14px 0;
  position: relative;
  z-index: 1;
}

.prod-label {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.prod-label.orange {
  background: rgba(255, 111, 0, 0.22);
  border-color: rgba(255, 111, 0, 0.35);
  color: #ffcc80;
}

/* trust list */
.trust-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
  z-index: 1;
  margin-top: 6px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 10px 13px;
  transition: background 0.25s;
}

.trust-row:hover {
  background: rgba(255, 255, 255, 0.11);
}

.tr-icon {
  font-size: 18px;
  width: 36px;
  height: 36px;
  background: rgba(255, 111, 0, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-row strong {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: block;
}

.trust-row span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

/* live counter */
.live-pill {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 111, 0, 0.14);
  border: 1px solid rgba(255, 111, 0, 0.28);
  border-radius: 50px;
  padding: 7px 16px;
  position: relative;
  z-index: 1;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6f00;
  flex-shrink: 0;
  animation: pulseDot 1.4s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.75);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 111, 0, 0);
  }
}

.live-pill p {
  color: #ffcc80;
  font-size: 12px;
  font-weight: 700;
}
.live-pill strong {
  color: #fff;
}

/* ════════════════════════════════
   RIGHT — form panel
════════════════════════════════ */
.order-right {
  background: var(--white);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* form header */
.form-header {
  margin-bottom: 24px;
  text-align: right;
}

.fh-tag {
  display: inline-block;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border: 2px solid #4caf50;
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 8px;
}

.form-header h3 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  color: #1b5e20;
  line-height: 1.35;
}

.form-header p {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}

/* form layout */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field-group label {
  font-size: 12px;
  font-weight: 700;
  color: #555;
  text-align: right;
}

.req {
  color: #ff6f00;
}

/* inputs */
.inp-wrap {
  position: relative;
}

.inp-icon {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}

.inp-wrap.ta .inp-icon {
  top: 12px;
  transform: none;
}

.inp-wrap input,
.inp-wrap select,
.inp-wrap textarea {
  width: 100%;
  padding: 11px 36px 11px 11px;
  border: 2px solid #e0ddd8;
  border-radius: 12px;
  font-family: "Cairo", sans-serif;
  font-size: 13px;
  color: #333;
  background: #fff;
  text-align: right;
  direction: rtl;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.inp-wrap input:focus,
.inp-wrap select:focus,
.inp-wrap textarea:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.inp-wrap textarea {
  resize: none;
  height: 66px;
  padding-top: 10px;
}

.sel-arrow {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #ff6f00;
  pointer-events: none;
}

/* validation states */
.field-error {
  font-size: 11px;
  color: #e53935;
  text-align: right;
  display: none;
}

.field-group.invalid .field-error {
  display: block;
}

.field-group.invalid input,
.field-group.invalid select,
.field-group.invalid textarea {
  border-color: #e53935;
  background: #fff5f5;
}

.field-group.valid input,
.field-group.valid select,
.field-group.valid textarea {
  border-color: #43a047;
}

/* submit button */
.submit-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff6f00, #ffa000);
  color: #fff;
  font-family: "Cairo", sans-serif;
  font-size: 18px;
  font-weight: 900;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.45;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    opacity 0.3s;
  position: relative;
  overflow: hidden;
  margin-top: 6px;
}

.submit-btn:not(:disabled) {
  cursor: pointer;
  opacity: 1;
  box-shadow: 0 8px 30px rgba(255, 111, 0, 0.38);
}

.submit-btn:not(:disabled)::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transition: left 0.5s;
}

.submit-btn:not(:disabled):hover::before {
  left: 100%;
}

.submit-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(255, 111, 0, 0.48);
}

.submit-btn:not(:disabled):active {
  transform: translateY(0);
}

.submit-btn:disabled {
  transform: none !important;
  box-shadow: none !important;
}

.form-note {
  text-align: center;
  font-size: 11px;
  color: #bbb;
  margin-top: 6px;
}

/* success screen */
.order-success {
  display: none;
  text-align: center;
  padding: 24px 8px;
}

.success-emoji {
  font-size: 72px;
  display: block;
  animation: popIn 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  margin-bottom: 14px;
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.order-success h3 {
  font-size: 22px;
  font-weight: 900;
  color: #1b5e20;
  margin-bottom: 10px;
}

.order-success p {
  font-size: 14px;
  color: #777;
  line-height: 1.75;
  margin-bottom: 22px;
}

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.38);
  transition: transform 0.2s;
}

.wa-link:hover {
  transform: translateY(-2px);
}
.site-footer {
  background: #071a10;
  padding: 60px 5% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.12), transparent 65%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-logo {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

.footer-card {
  width: 100%;
  max-width: 820px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 36px 40px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(6px);
}

.footer-card-title {
  text-align: center;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.license-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.license-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  direction: rtl;
}

.license-row:last-child {
  border-bottom: none;
}

.license-label {
  font-size: 15px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
}

.license-value {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  direction: ltr;
  text-align: left;
}

.footer-standard {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #e8a020;
  background: rgba(232, 160, 32, 0.08);
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: 50px;
  padding: 10px 24px;
  display: inline-block;
  width: 100%;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 5%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.wa-bubble {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}

.wa-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.wa-bubble svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 1100px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 968px) {
  .footer-card {
    padding: 24px 18px;
  }
  .license-label {
    font-size: 13px;
  }
  .license-value {
    font-size: 12px;
  }
  .wa-bubble {
    bottom: 16px;
    left: 16px;
  }
  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
  }
  .product-showcase {
    height: 400px;
  }
  .product-circle {
    width: 350px;
    height: 350px;
  }
  .floating-badge {
    display: none;
  }

  /* Grids */
  .stats-container,
  .benefits-grid,
  .steps,
  .testimonials-grid,
  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .step:not(:last-child)::after {
    display: none;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }

  /* Ingredients */
  .ingre-content {
    flex-direction: column;
  }
  .accordion-body .ingredient-item {
    margin-bottom: 0;
  }

  /* FAQ */
  .wrapper {
    padding: 36px 16px 60px;
  }
  .featured-card {
    padding: 22px 20px;
  }
  .faq-trigger {
    padding: 16px 18px;
  }
  .faq-trigger .q-text {
    font-size: 15px;
  }
  .faq-body-inner {
    padding: 16px 18px 20px;
  }
  .cta-wrap .cta-btn {
    font-size: 16px;
    padding: 16px 36px;
  }

  /* Toast & WhatsApp */
  .toast {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: 90px;
  }
  .wa-bubble {
    left: 16px;
    bottom: 20px;
  }

  /* Footer & Nav */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .ing-image img {
    width: 100%;
    height: 100%;
    margin: auto;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .cta-title {
    font-size: 2rem;
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .order-card {
    grid-template-columns: 1fr;
  }
  .order-left {
    padding: 36px 20px 28px;
  }
  .prod-wrap img {
    width: 150px;
  }
  .order-right {
    padding: 28px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .accordion {
    width: 100%;
  }

  .ing-image img {
    margin: auto;
  }
}
