/* ===== Variables ===== */
:root {
  --color-primary: #e8751a;
  --color-primary-dark: #c9620f;
  --color-accent: #2d5016;
  --color-accent-light: #3d6b1f;
  --color-bg: #fdf8f3;
  --color-bg-alt: #fff;
  --color-text: #2c2416;
  --color-text-muted: #6b5d4d;
  --color-border: #e8ddd0;
  --color-whatsapp: #25d366;
  --font-sans: "Noto Sans Devanagari", "Inter", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(44, 36, 22, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 36, 22, 0.12);
  --header-height: 72px;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

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

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

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

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.header--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--color-accent);
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
}

.logo-img--footer {
  height: 88px;
  max-width: 260px;
}

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

/* ===== Language Toggle ===== */
.lang-toggle {
  display: flex;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-sans);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: background 0.2s, color 0.2s;
}

.lang-btn.active {
  background: var(--color-primary);
  color: #fff;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:active {
  transform: scale(0.97);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1fb855;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn-block {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  padding: calc(var(--header-height) + 48px) 0 64px;
  background: linear-gradient(160deg, #fff5eb 0%, var(--color-bg) 50%, #f0f5ea 100%);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(232, 117, 26, 0.12);
  color: var(--color-primary-dark);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 16px;
}

.hero-subtext {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.trust-chip::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: 700;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Why Us ===== */
.why-grid {
  display: grid;
  gap: 20px;
}

.why-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: rgba(232, 117, 26, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.why-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== Plans ===== */
.plans-section {
  background: var(--color-bg-alt);
}

.plans-grid {
  display: grid;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.plan-card {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
}

.plan-card--featured {
  border-color: var(--color-primary);
  background: linear-gradient(160deg, #fff9f3 0%, var(--color-bg) 100%);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.plan-price {
  margin-bottom: 12px;
}

.plan-price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.plan-price-unit {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.plan-details {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* ===== Menu ===== */
.menu-grid {
  display: grid;
  gap: 12px;
}

.menu-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.menu-day {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(232, 117, 26, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
  min-width: 80px;
  text-align: center;
}

.menu-items {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.menu-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ===== How It Works ===== */
.how-section {
  background: var(--color-accent);
  color: #fff;
}

.how-section .section-title,
.how-section .section-subtitle {
  color: #fff;
}

.how-section .section-subtitle {
  opacity: 0.85;
}

.how-steps {
  display: grid;
  gap: 24px;
  counter-reset: step;
}

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.how-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

.how-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.how-step p {
  font-size: 0.9375rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* ===== Location ===== */
.location-grid {
  display: grid;
  gap: 24px;
}

.location-info {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
}

.location-info p {
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.location-info strong {
  color: var(--color-text);
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16/10;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--color-text-muted);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

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

/* ===== Footer ===== */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9375rem;
  opacity: 0.7;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: #fff;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9375rem;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* ===== Floating WhatsApp ===== */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.15s, box-shadow 0.15s;
}

.float-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ===== Desktop ===== */
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.125rem;
  }

  .hero {
    padding: calc(var(--header-height) + 64px) 0 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-subtext {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-ctas {
    flex-direction: row;
    justify-content: flex-start;
  }

  .hero-trust {
    justify-content: flex-start;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .how-step {
    flex-direction: column;
    text-align: center;
  }

  .location-grid {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}
