/* ==========================================
   STYLE SYSTEM & VARIABLES
   ========================================== */
:root {
  /* Color Palette (Harmonious Organic Greens & Golds) */
  --primary: #0B5C43;         /* Deep Forest Emerald */
  --primary-light: #128260;   /* Bright Mint Green */
  --primary-dark: #063B2B;    /* Very Deep Emerald */
  --primary-soft: #F0F7F4;    /* Soft Sage Background */
  --primary-mid: #D3ECE1;     /* Sage Border / Alert BG */
  
  --accent: #D4AF37;          /* Matte Gold */
  --accent-light: #F9E8B3;    /* Soft Pale Gold */
  --accent-pale: #FDF9EE;     /* Gold Accent Background */
  --accent-dark: #A68015;     /* Dark Antique Gold */
  
  --danger: #E05A47;          /* Urgency Red */
  --danger-light: #FCEBE8;    /* Pale Red Background */
  
  --white: #FFFFFF;
  --bg-main: #F4F8F6;         /* Pale Gray-Green BG */
  --text-main: #1C2E24;       /* Charcoal Green */
  --text-muted: #557263;      /* Muted Sage Gray */
  
  /* Layout Metrics */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  /* Elevation Shadows */
  --shadow-sm: 0 4px 12px rgba(11, 92, 67, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 92, 67, 0.08);
  --shadow-lg: 0 16px 48px rgba(6, 59, 43, 0.12);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Accents */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
}

em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   BUTTONS & USER INTERACTION
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  width: 100%;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp Green gradient */
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #20ba59, #0e7065);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: linear-gradient(135deg, #4A8FE8, #2C6CC9); /* Call Blue gradient */
  color: var(--white);
  box-shadow: 0 4px 16px rgba(74, 143, 232, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #3d80d6, #245ab0);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 143, 232, 0.3);
}

.btn-accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-tier-action {
  background-color: var(--primary-soft);
  color: var(--primary);
  border: 1.5px solid var(--primary-mid);
  padding: 12px 20px;
  font-size: 14px;
}

.btn-tier-action:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border: none;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.btn-full {
  width: 100%;
}

/* Pulsing effect for main action buttons */
.pulse-effect {
  position: relative;
  animation: buttonPulse 2s infinite ease-in-out;
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================
   HEADER SECTION
   ========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 92, 67, 0.06);
  transition: all var(--transition-normal);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-leaf {
  color: var(--primary-light);
  font-size: 20px;
}

.logo-text {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--primary-dark);
}

.nav-desktop {
  display: flex;
  gap: 24px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
}

.header-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--primary-soft);
  color: var(--primary);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--primary-mid);
  transition: all var(--transition-fast);
}

.header-btn-call:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  background-color: var(--primary-dark);
  background-image: radial-gradient(circle at 80% 20%, rgba(18, 130, 96, 0.15) 0%, transparent 60%);
  padding: 80px 24px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-badge-wrapper {
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  padding: 6px 16px;
  color: var(--primary-mid);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: inline-block;
}

.hero-title {
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 30px;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.benefit-icon {
  color: var(--accent);
  font-size: 16px;
}

.benefit-text {
  font-size: 14px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  width: auto;
  min-width: 200px;
}

/* Glass Frame Wrapper */
.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-glass-frame {
  position: relative;
  padding: 10px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  max-width: 380px;
  width: 100%;
}

.hero-mockup-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-glass-frame:hover .hero-mockup-img {
  transform: scale(1.02);
}

/* Floating badges inside Hero */
.floating-badge {
  position: absolute;
  background: rgba(11, 92, 67, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.badge-top-right {
  top: -15px;
  right: -15px;
  background: rgba(212, 175, 55, 0.95);
  color: var(--primary-dark);
}

.badge-top-right .badge-title {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.badge-top-right .badge-desc {
  font-size: 12px;
  font-weight: 700;
}

.badge-bottom-left {
  bottom: -15px;
  left: -15px;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.badge-bottom-left .badge-icon {
  color: var(--accent);
}

.badge-bottom-left .badge-desc {
  font-size: 12px;
  font-weight: 600;
}

/* Media Queries for Hero */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-benefits {
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .image-glass-frame {
    margin: 20px auto 0;
  }
}

@media (max-width: 480px) {
  .hero-actions .btn {
    width: 100%;
  }
}

/* ==========================================
   TRUST MARQUEE RIBBON
   ========================================== */
.trust-ribbon {
  background-color: var(--accent);
  background-image: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
  overflow: hidden;
  padding: 14px 0;
  border-bottom: 2px solid var(--accent-dark);
}

.trust-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.trust-item i {
  color: var(--primary-dark);
}

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

/* ==========================================
   LAYOUT STRUCTURE (DESKTOP GRID)
   ========================================== */
.layout-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 1.7fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Section Cards Style */
.section-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 92, 67, 0.05);
  transition: box-shadow var(--transition-normal);
}

.section-card:hover {
  box-shadow: var(--shadow-md);
}

.section-card.no-padding {
  padding: 0;
}

.section-card.overflow-hidden {
  overflow: hidden;
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent);
  margin: 10px auto 0;
  border-radius: 99px;
}

.section-title.left-align {
  text-align: left;
}

.section-title.left-align::after {
  margin: 10px 0 0;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}

.section-subtitle.left-align {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* ==========================================
   SYMPTOMS STYLING
   ========================================== */
.symptom-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.symptom-card {
  background-color: var(--primary-soft);
  border: 1.5px solid var(--primary-mid);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.symptom-card:hover {
  background-color: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.symptom-card-icon {
  font-size: 28px;
  color: var(--primary-light);
  margin-bottom: 16px;
  background-color: var(--white);
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-mid);
}

.symptom-card:hover .symptom-card-icon {
  background-color: var(--accent-pale);
  border-color: var(--accent-light);
  color: var(--accent-dark);
}

.symptom-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.symptom-card-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .symptom-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   SCIENCE / DOCTOR STYLING
   ========================================== */
.science-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
}

.science-image-area {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.science-doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.science-quote-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 92, 67, 0.95);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--radius-md);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  line-height: 1;
  color: var(--accent);
  position: absolute;
  top: -10px;
  left: 15px;
  opacity: 0.3;
}

.quote-text {
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 10px;
}

.quote-author {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}

.science-content-area {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.science-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.science-feature-item {
  display: flex;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid var(--primary-mid);
}

.feature-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .science-layout-grid {
    grid-template-columns: 1fr;
  }
  .science-image-area {
    min-height: 400px;
  }
}

/* ==========================================
   PRICING & OFFERS STYLING
   ========================================== */
.badge-pricing-wrapper {
  text-align: center;
  margin-bottom: 8px;
}

.pricing-header-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-dark);
  background-color: var(--accent-light);
  border-radius: 99px;
  padding: 4px 12px;
  letter-spacing: 1.5px;
}

.pricing-cards-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.price-tier-card {
  background-color: var(--white);
  border: 2px solid #E6EFEA;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.price-tier-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.tier-header {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tier-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
}

.tier-tag {
  font-size: 9px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.5px;
}

.tag-blue { background-color: #EBF3FC; color: #2C6CC9; }
.tag-green { background-color: #EEF8F3; color: #128260; }
.tag-gold { background-color: var(--accent-light); color: var(--accent-dark); }

.tier-price-row {
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-dark);
}

.price-curr {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}

.price-old {
  font-size: 13px;
  color: #A0B3AA;
  text-decoration: line-through;
  margin-left: 4px;
}

.tier-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 36px;
}

.tier-divider {
  height: 1px;
  background-color: #E6EFEA;
  margin-bottom: 20px;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.tier-features li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-features li i {
  color: var(--primary-light);
  font-size: 12px;
}

.tier-features li strong {
  color: var(--primary-dark);
}

/* Recommended Tier Overrides */
.popular-tier {
  border-color: var(--accent);
  background-color: var(--accent-pale);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  z-index: 5;
}

.popular-tier:hover {
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-lg);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 1px;
}

.popular-tier .price-val {
  color: var(--accent-dark);
}

.popular-tier .tier-features li i {
  color: var(--accent-dark);
}

@media (max-width: 992px) {
  .pricing-cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .popular-tier {
    transform: none;
  }
}

/* ==========================================
   STOCK & URGENCY BOX
   ========================================== */
.urgency-card {
  background: linear-gradient(135deg, #102A1F, #081B14);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.urgency-grid {
  display: flex;
  align-items: center;
  gap: 24px;
}

.urgency-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background-color: rgba(224, 90, 71, 0.1);
  border: 1px solid rgba(224, 90, 71, 0.25);
  color: var(--danger);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  animation: firePulse 1.5s infinite ease-in-out;
}

@keyframes firePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); filter: brightness(1.2); }
  100% { transform: scale(1); }
}

.urgency-info {
  flex-grow: 1;
}

.urgency-title {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
}

.urgency-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.stock-progress-bar {
  background-color: rgba(255, 255, 255, 0.08);
  height: 8px;
  border-radius: 99px;
  overflow: hidden;
}

.stock-progress-fill {
  background: linear-gradient(90deg, var(--danger), #ff7e67);
  height: 100%;
  border-radius: 99px;
  transition: width 1.5s ease-out;
}

.urgency-badge {
  flex-shrink: 0;
}

.badge-urg {
  font-size: 10px;
  font-weight: 800;
  color: var(--danger);
  background-color: var(--danger-light);
  border-radius: 99px;
  padding: 6px 14px;
  letter-spacing: 0.5px;
}

@media (max-width: 640px) {
  .urgency-grid {
    flex-direction: column;
    text-align: center;
  }
  .urgency-badge {
    margin-top: 10px;
  }
}

/* ==========================================
   CLIENT SHOWCASE & TESTIMONIALS
   ========================================== */
.review-showcase-container {
  background-color: var(--primary-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--primary-mid);
  padding: 30px;
  margin-bottom: 30px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
}

.showcase-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1;
}

.showcase-client-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-rating {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 10px;
}

.showcase-heading {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.showcase-quote {
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 16px;
}

.showcase-author {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .showcase-img-box {
    width: 140px;
    height: 140px;
    margin: 0 auto;
  }
}

/* Live review deck */
.testimonials-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid #E6EFEA;
  border-radius: var(--radius-sm);
  padding: 20px;
  position: relative;
  transition: transform var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateX(3px);
  border-color: var(--primary-mid);
}

.stars-row {
  color: #F0A500;
  font-size: 12px;
  margin-bottom: 8px;
}

.testi-quote {
  font-size: 12.5px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 10px;
}

.testi-meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-light);
}

@media (max-width: 768px) {
  .testimonials-list {
    grid-template-columns: 1fr;
  }
}

/* Add Review Form Style */
.add-review-container {
  border-top: 1.5px solid var(--primary-soft);
  padding-top: 30px;
  margin-top: 20px;
}

.add-review-title {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.review-form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

@media (max-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

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

.form-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #D5E4DE;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  color: var(--text-main);
  background-color: var(--primary-soft);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 92, 67, 0.08);
}

.stars-selector {
  display: flex;
  gap: 8px;
  font-size: 22px;
  color: #D5E4DE;
  cursor: pointer;
  padding: 6px 0;
}

.star-opt {
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.star-opt.active {
  color: #F0A500;
}

.star-opt:hover {
  transform: scale(1.15);
}

/* Delete Button for Admin mode */
.delete-review-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--danger-light);
  color: var(--danger);
  border: 1px solid rgba(224, 90, 71, 0.2);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.delete-review-btn:hover {
  background-color: var(--danger);
  color: var(--white);
}

/* ==========================================
   FAQ ACCORDION STYLING
   ========================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid #E6EFEA;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-trigger {
  width: 100%;
  padding: 18px 24px;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary-dark);
  transition: all var(--transition-fast);
}

.faq-trigger:hover {
  background-color: var(--primary-soft);
  color: var(--primary);
}

.faq-icon {
  font-size: 12px;
  transition: transform var(--transition-normal);
  color: var(--text-muted);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  background-color: var(--white);
  transition: max-height var(--transition-normal) ease-out;
}

.faq-content p {
  padding: 0 24px 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Active FAQ states */
.faq-item.active {
  border-color: var(--primary-mid);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-trigger {
  background-color: var(--primary-soft);
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item.active .faq-content {
  max-height: 200px; /* arbitrary height to slide down */
}

/* ==========================================
   GUARANTEES GRID STYLING
   ========================================== */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guarantee-card {
  background-color: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 92, 67, 0.05);
}

.g-card-icon {
  font-size: 26px;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.g-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.g-card-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .guarantees-grid {
    grid-template-columns: 1fr;
  }
}

/* Admin and footer */
.admin-access-area {
  text-align: center;
  padding: 20px 0;
}

.admin-link {
  font-size: 11px;
  color: #B2C7BF;
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.admin-link:hover {
  color: var(--text-muted);
}

/* ==========================================
   SIDEBAR ORDER PANEL (DESKTOP)
   ========================================== */
.sidebar-order-panel {
  position: sticky;
  top: 100px;
  width: 100%;
}

.sidebar-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.sidebar-header i {
  color: var(--primary);
  font-size: 18px;
}

.sidebar-header h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary-dark);
}

.sidebar-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.4;
}

.sidebar-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-form .form-input,
.sidebar-form .form-select {
  padding: 11px 14px;
  font-size: 12.5px;
}

/* Local confirmation messages */
.local-confirmation-box {
  display: none;
  background-color: var(--primary-soft);
  border: 1.5px solid var(--primary-mid);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  margin-top: 12px;
  animation: modalFadeIn 0.3s ease;
}

.conf-icon {
  font-size: 32px;
  color: var(--primary-light);
  margin-bottom: 6px;
}

.conf-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.conf-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Responsive Hide sidebar on mobile */
@media (max-width: 850px) {
  .layout-wrapper {
    grid-template-columns: 1fr;
  }
  .sidebar-order-panel {
    display: none;
  }
}

/* ==========================================
   SITE FOOTER
   ========================================== */
.site-footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.4);
  padding: 30px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copy {
  font-size: 12px;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.footer-link {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-sep {
  font-size: 10px;
}

/* ==========================================
   ORDER MODAL OVERLAY STYLING
   ========================================== */
.order-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 37, 27, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none; /* controlled by JS */
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.order-overlay.active {
  display: flex;
  animation: overlayFadeIn var(--transition-normal) forwards;
}

.order-modal {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px);
  opacity: 0;
}

.order-overlay.active .order-modal {
  animation: modalSlideDown var(--transition-normal) 0.1s forwards;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-soft);
  border: none;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--danger-light);
  color: var(--danger);
  transform: rotate(90deg);
}

.modal-heading-area {
  text-align: center;
  margin-bottom: 24px;
}

.modal-icon {
  font-size: 32px;
  color: var(--primary);
  background-color: var(--primary-soft);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid var(--primary-mid);
}

.modal-heading-area h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.modal-heading-area p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
  padding: 0 10px;
}

.modal-form-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-label-outside {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  display: block;
}

.form-input-lg, .form-select-lg {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #D5E4DE;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text-main);
  background-color: var(--primary-soft);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input-lg:focus, .form-select-lg:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 92, 67, 0.08);
}

.btn-lg {
  padding: 16px 24px;
  font-size: 16px;
  margin-top: 10px;
}

/* Animations */
@keyframes overlayFadeIn {
  from { background-color: rgba(6, 37, 27, 0); }
  to { background-color: rgba(6, 37, 27, 0.7); }
}

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

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================
   MOBILE STICKY BOTTOM BAR STYLING
   ========================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(11, 92, 67, 0.08);
  padding: 10px 16px 14px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  z-index: 100;
  display: none; /* Displayed only on mobile via media query */
}

.sticky-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.btn-sticky-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-sticky-action.call-action {
  background-color: var(--primary-soft);
  color: var(--primary);
  border: 1px solid var(--primary-mid);
}

.btn-sticky-action.call-action:hover {
  background-color: var(--primary-mid);
}

.btn-sticky-action.order-action {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-sticky-action.order-action:hover {
  background: linear-gradient(135deg, #20ba59, #0e7065);
}

/* Adjust layout bottom padding for mobile when sticky bar is active */
@media (max-width: 850px) {
  body {
    padding-bottom: 80px; /* prevents text hiding behind bottom bar */
  }
  .mobile-sticky-bar {
    display: block;
  }
}
