:root {
  /* Color Tokens - Luxurious Warm Palette */
  --bg: #fcfaf7;
  --bg-subtle: #f8eee4;
  --brand: #b5533b;
  --brand-light: #e36a4d;
  --brand-dark: #2c160e;
  --brand-glow: rgba(181, 83, 59, 0.15);
  --accent-saffron: #f29e38;
  --text: #2f201a;
  --text-muted: #826f67;
  --border: #ebdcd0;
  --border-light: rgba(235, 220, 208, 0.5);
  --card: #ffffff;
  --card-glass: rgba(255, 255, 255, 0.85);
  --veg-green: #2e7d32;

  /* Shadows & Radius */
  --shadow-sm: 0 4px 12px rgba(44, 22, 14, 0.04);
  --shadow-md: 0 12px 30px rgba(44, 22, 14, 0.06);
  --shadow-lg: 0 24px 64px rgba(44, 22, 14, 0.1);
  --shadow-glow: 0 20px 40px rgba(181, 83, 59, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Transition Curves */
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.35s var(--ease-soft);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--brand-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Scroll Progress Line */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-saffron), var(--brand), var(--brand-dark));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* Layout Shells */
.section-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

/* Section Header Typography */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.eyebrow {
  display: inline-block;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
  position: relative;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

/* Custom Buttons & CTAs */
.cta-primary,
.cta-secondary,
.cta-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}

.cta-primary {
  background: var(--brand);
  color: white;
  box-shadow: var(--shadow-glow);
}

.cta-primary:hover {
  background: var(--brand-light);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(181, 83, 59, 0.35);
}

.cta-secondary {
  background: white;
  color: var(--brand-dark);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.cta-secondary:hover {
  background: var(--bg-subtle);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cta-text {
  color: var(--brand);
  font-weight: 700;
  padding-inline: 12px;
}

.cta-text:hover {
  color: var(--brand-dark);
  transform: translateX(4px);
}

/* Site Header */
.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 32px));
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--card-glass);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.35s var(--ease-soft);
}

.brand:hover .brand-logo {
  transform: scale(1.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--brand-dark);
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.desktop-nav a:hover {
  color: var(--brand);
  background: var(--bg-subtle);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.nav-btn.subtle {
  color: var(--brand);
  background: transparent;
}

.nav-btn.subtle:hover {
  background: var(--bg-subtle);
}

.nav-btn.primary {
  background: var(--brand-dark);
  color: white;
}

.nav-btn.primary:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-shell {
  padding-top: 110px;
  padding-bottom: 48px;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #ffffff, #faf4ee 70%, #f7eae0);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.grid-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 112, 85, 0.08), transparent 70%);
  pointer-events: none;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(181, 83, 59, 0.07);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--brand);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.badge-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--brand-dark);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.highlight-text {
  color: var(--brand);
  position: relative;
  display: inline-block;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 580px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--brand-dark);
  line-height: 1.2;
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Hero Visual Overlaps */
.hero-visual {
  position: relative;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-bg-card {
  position: absolute;
  inset: 10% -5% -5% 10%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 1;
}

.main-hero-img {
  position: relative;
  z-index: 2;
  width: 90%;
  height: 90%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.main-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.main-hero-img:hover img {
  transform: scale(1.08);
}

.floating-badge {
  position: absolute;
  z-index: 3;
  background: var(--card-glass);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  animation: float 4s ease-in-out infinite;
}

.floating-badge.top-right {
  top: 5%;
  right: -5%;
  animation-delay: 0.5s;
}

.floating-badge.bottom-left {
  bottom: 5%;
  left: -5%;
  animation-delay: 2s;
}

.badge-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.badge-val {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-dark);
}

/* Weekly Schedule Section (NEW STYLING) */
.schedule-section {
  padding: 80px 0;
  background-color: #faf7f2;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.schedule-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

.day-header h3 {
  font-size: 1.25rem;
  color: var(--brand-dark);
  font-weight: 700;
}

.timing-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
}

.time-label {
  font-weight: 700;
  color: var(--text-muted);
}

.time-val {
  font-weight: 600;
  color: var(--text);
}

.thursday-card {
  border-color: rgba(181, 83, 59, 0.35);
  background: linear-gradient(180deg, #ffffff, #fff7f4);
  box-shadow: 0 8px 24px rgba(181, 83, 59, 0.04);
}

.holiday-tag {
  background: rgba(181, 83, 59, 0.1);
  color: var(--brand);
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.time-row.closed {
  opacity: 0.85;
}

.time-val.holiday {
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Interactive Calculator Section (COMPACT FITTING CORRECTIONS) */
.calculator-section {
  padding: 80px 0;
  background-color: var(--bg);
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.calculator-settings {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calculator-settings h2 {
  font-size: 2rem;
  margin: 8px 0 12px;
}

.calculator-settings p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.config-group {
  margin-bottom: 22px;
}

.config-group:last-child {
  margin-bottom: 0;
}

.config-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.button-toggle-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 6px;
  background: var(--bg-subtle);
  padding: 5px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.toggle-btn {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 6px;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.toggle-btn:hover {
  color: var(--brand);
}

.toggle-btn.active {
  background: var(--card);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}

/* Estimator Result Card (SHRINK HEIGHT) */
.calculator-result {
  position: relative;
  background: var(--brand-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}

.result-card-glow {
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(181, 83, 59, 0.2), transparent 75%);
  pointer-events: none;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.result-header h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.savings-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--accent-saffron);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-breakdown {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.price-row.main {
  padding-bottom: 16px;
  margin-bottom: 8px;
}

.price-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.price-row.main span {
  font-size: 1.05rem;
  color: white;
  font-weight: 500;
}

.total-price {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: white;
  line-height: 1;
}

.detail-val {
  font-weight: 600;
  color: white;
  font-size: 0.92rem;
}

.calculator-cta {
  position: relative;
  z-index: 2;
}

.whatsapp-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  background-color: #25d366; /* WhatsApp green */
  color: white;
  border-radius: var(--radius-pill);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
  transition: var(--transition);
}

.whatsapp-book-btn:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}

.cta-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 10px;
}

/* Preset Pricing Section */
.plans-section {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.plan-tag {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.plan-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.price-val {
  font-family: 'Sora', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
}

.duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

.plan-features li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 800;
  font-size: 0.95rem;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brand);
  background: var(--bg-subtle);
  border: 1px solid transparent;
}

.plan-cta:hover {
  background: var(--brand);
  color: white;
}

/* Featured Price Card Styling */
.price-card.featured {
  border: 2px solid var(--brand);
  background: linear-gradient(180deg, #ffffff, #faf3ec);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.price-card.featured:hover {
  box-shadow: var(--shadow-lg);
}

.popular-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--brand);
  color: white;
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
}

.featured-btn {
  background: var(--brand);
  color: white;
  box-shadow: var(--shadow-glow);
}

.featured-btn:hover {
  background: var(--brand-dark);
}

/* Promise/Features Section */
.features-section {
  padding: 80px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(181, 83, 59, 0.07);
  color: var(--brand);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--brand-dark);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Why MH31 Section */
.why-section {
  padding: 80px 0;
  background-color: #faf5ee;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 48px;
}

.why-visual {
  position: relative;
}

.dining-wrapper {
  position: relative;
  aspect-ratio: 1.25;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid white;
  z-index: 2;
}

.dining-outline {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-md) + 8px);
  z-index: 1;
}

.dining-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-checklist {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2e7d32;
  color: white;
  font-size: 0.72rem;
  font-weight: 950;
  margin-top: 2px;
}

.check-item div {
  display: flex;
  flex-direction: column;
}

.check-item strong {
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  color: var(--brand-dark);
}

.check-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Testimonials Slider Section */
.testimonials-section {
  padding: 80px 0;
}

.testimonial-slider-container {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  min-height: 200px;
  position: relative;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.review-text {
  font-size: 1.15rem;
  line-height: 1.65;
  font-weight: 500;
  color: var(--brand-dark);
  margin-bottom: 24px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-subtle);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid var(--border);
}

.reviewer-meta div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.reviewer-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-dark);
}

.reviewer-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.slider-arrow {
  background: transparent;
  border: 1px solid var(--border);
  outline: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--brand);
  transform: scale(1.25);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
}

.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--brand-dark);
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--brand);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 24px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding-bottom: 20px;
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--border);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* CTA Contact Card */
.contact-section {
  padding: 80px 0;
}

.contact-card {
  position: relative;
  background: linear-gradient(135deg, var(--brand-dark), #1d0f0a);
  color: white;
  border-radius: var(--radius-lg);
  padding: 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: var(--shadow-lg);
}

.contact-card-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(181, 83, 59, 0.15), transparent 75%);
  pointer-events: none;
}

.contact-card-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.contact-card-copy .eyebrow {
  color: var(--accent-saffron);
}

.contact-card h2 {
  color: white;
  font-size: clamp(1.6rem, 3.8vw, 2.3rem);
  margin-bottom: 12px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}

.contact-actions .cta-primary {
  background-color: #25d366;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.2);
}

.contact-actions .cta-primary:hover {
  background-color: #20ba59;
}

.contact-actions .cta-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
}

.contact-actions .cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cta-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 700;
}

.cta-text:hover {
  color: white;
}

/* Footer Section (FIXED OVERLAPPING BUG) */
.footer {
  background-color: var(--brand-dark);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 64px 0 40px;
  width: 100%;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px 32px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  word-wrap: break-word;
}

.footer-info .brand {
  margin-bottom: 20px;
}

.footer-info .brand-title {
  color: white;
}

.footer-info .brand-sub {
  color: rgba(255, 255, 255, 0.4);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-powered {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links strong,
.footer-contact strong {
  font-family: 'Sora', sans-serif;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 600;
  display: block;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  word-wrap: break-word;
}

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.copyright {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 20px;
}

.footer-credit {
  margin-top: 24px;
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.footer-credit .copyright {
  margin-top: 0;
}

.footer-credit small {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-credit a {
  color: #f8d4a6;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-credit a:hover {
  color: #ffffff;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  display: none;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-soft);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsiveness */

/* Tablet Screens (1024px) */
@media (max-width: 1024px) {
  .hero-card {
    grid-template-columns: 1fr;
    padding: 48px;
    gap: 40px;
  }
  .hero-visual {
    max-width: 580px;
    margin: 0 auto;
  }
  .calculator-wrapper {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-card.featured {
    grid-column: span 2;
    transform: none;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-visual {
    max-width: 580px;
    margin: 0 auto;
  }
  .contact-card {
    grid-template-columns: 1fr;
    padding: 48px;
    text-align: center;
  }
  .contact-actions {
    align-items: center;
    width: 100%;
  }
  .footer-inner {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* Mobile Screens (768px) */
@media (max-width: 768px) {
  .site-header {
    top: 12px;
    width: calc(100% - 16px);
    padding: 8px 16px;
  }
  .desktop-nav,
  .nav-actions {
    display: none;
  }
  .brand-sub {
    display: none;
  }
  .hero-shell {
    padding-top: 90px;
  }
  .hero-card {
    padding: 32px 20px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-primary,
  .cta-secondary {
    width: 100%;
  }
  .trust-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .floating-badge {
    display: none;
  }
  .calculator-settings {
    padding: 24px;
  }
  .calculator-result {
    padding: 24px;
    min-height: auto;
  }
  .total-price {
    font-size: 2.1rem;
  }
  .button-toggle-group {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    grid-column: span 1;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .contact-section {
    padding: 56px 16px 72px;
  }
  .contact-card {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    border-radius: 28px;
    padding: 34px 22px;
    text-align: center;
  }
  .contact-card-copy {
    max-width: none;
  }
  .contact-card h2 {
    margin-inline: auto;
    max-width: 280px;
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.05;
  }
  .contact-card p {
    margin-inline: auto;
    max-width: 270px;
  }
  .contact-actions {
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }
  .contact-actions .cta-primary,
  .contact-actions .cta-secondary,
  .contact-actions .cta-text {
    min-height: 48px;
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    white-space: normal;
    text-align: center;
  }
  .contact-actions .cta-text {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* Show mobile sticky bottom bar */
  body {
    padding-bottom: 74px; /* Space for the sticky bar */
  }
  
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68px;
    z-index: 999;
    background: var(--card-glass);
    border-top: 1px solid var(--border-light);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 -8px 24px rgba(44, 22, 14, 0.08);
  }
  
  .sticky-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
  }
  
  .sticky-action.call {
    color: var(--brand-dark);
    border-right: 1px solid var(--border-light);
  }
  
  .sticky-action.book {
    background-color: #25d366;
    color: white;
  }
  
  .sticky-action:active {
    opacity: 0.85;
  }
}

/* ================================================================
   POSTER POPUP MODAL
   ================================================================ */

.poster-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-soft), visibility 0.4s;
}

.poster-overlay.active {
  opacity: 1;
  visibility: visible;
}

.poster-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 4, 0.65);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.poster-modal {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: calc(100% - 32px);
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(44, 22, 14, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 120px rgba(181, 83, 59, 0.12);
  transform: scale(0.88) translateY(30px);
  opacity: 0;
  transition: transform 0.55s var(--ease-soft), opacity 0.5s var(--ease-soft);
}

.poster-overlay.active .poster-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Poster close exit animation */
.poster-overlay.closing {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.poster-overlay.closing .poster-modal {
  transform: scale(0.92) translateY(20px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

/* Close Button */
.poster-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.poster-close:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: rotate(90deg) scale(1.1);
}

/* Poster Image */
.poster-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Poster Footer (CTA + Dismiss) */
.poster-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--brand-dark), #3a1c11);
  gap: 16px;
  flex-wrap: wrap;
}

.poster-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: #25d366;
  color: white;
  border-radius: var(--radius-pill);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  white-space: nowrap;
}

.poster-cta:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.poster-dismiss-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  user-select: none;
  transition: color 0.25s ease;
}

.poster-dismiss-label:hover {
  color: rgba(255, 255, 255, 0.95);
}

.poster-dismiss-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-saffron);
  cursor: pointer;
  border-radius: 4px;
}

/* Mobile adjustments for poster */
@media (max-width: 600px) {
  .poster-modal {
    width: calc(100% - 16px);
    border-radius: var(--radius-md);
  }

  .poster-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
  }

  .poster-close svg {
    width: 22px;
    height: 22px;
  }

  .poster-footer {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px;
    gap: 12px;
  }

  .poster-cta {
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
  }

  .poster-dismiss-label {
    justify-content: center;
    font-size: 0.78rem;
  }
}
