/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --saffron: #F4A623;
  --deep-red: #C0392B;
  --warm-cream: #FDF6EC;
  --dark: #1A0A00;
  --muted: #7A5C3C;
  --white: #ffffff;
  --card-bg: #FFF8F0;
}

html { scroll-behavior: smooth; }

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

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(253,246,236,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(244,166,35,0.2);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); }

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
  /* color: var(--deep-red); */
  color: #1877F2; margin-bottom: .8rem;
  text-decoration: none;
  display: flex; align-items: center; gap: .4rem;
}

.logo span { color: var(--saffron); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--dark);
  font-weight: 500; font-size: .95rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--deep-red); }

.nav-cta {
  background: var(--deep-red); color: var(--white);
  border: none; padding: .6rem 1.4rem;
  border-radius: 50px; font-weight: 600; font-size: .9rem;
  cursor: pointer; transition: background .2s, transform .2s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--saffron); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  position: fixed; top: 65px; left: 0; right: 0;
  background: var(--warm-cream); padding: 1.5rem 5%;
  z-index: 999; border-bottom: 2px solid var(--saffron);
  flex-direction: column; gap: 1rem;
  animation: slideDown .3s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--dark); font-weight: 600;
  font-size: 1.1rem; padding: .5rem 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: 70px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 2rem;
  padding-left: 5%; padding-right: 5%;
  background: linear-gradient(135deg, #FDF6EC 60%, #FFF0D6 100%);
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,166,35,.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-text { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(244,166,35,.15); border: 1px solid rgba(244,166,35,.4);
  border-radius: 50px; padding: .4rem 1rem;
  font-size: .85rem; font-weight: 600; color: #8B5E0A;
  margin-bottom: 1.2rem;
  animation: fadeUp .6s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15; font-weight: 900;
  color: var(--dark);
  animation: fadeUp .7s .1s ease both;
}
.hero h1 em { color: var(--deep-red); font-style: normal; }

.hero p {
  margin-top: 1rem; font-size: 1.05rem;
  color: var(--muted); line-height: 1.7; max-width: 440px;
  animation: fadeUp .7s .2s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 2rem;
  animation: fadeUp .7s .3s ease both;
}

.btn-primary {
  background: var(--deep-red); color: var(--white);
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  border: none; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(192,57,43,.35);
}

.btn-outline {
  background: transparent; color: var(--dark);
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  border: 2px solid rgba(0,0,0,.15); text-decoration: none;
  transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--saffron); background: rgba(244,166,35,.08); }

.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  animation: fadeUp .7s .4s ease both;
}
.stat strong { font-size: 1.6rem; font-weight: 700; color: var(--deep-red); display: block; }
.stat span { font-size: .82rem; color: var(--muted); }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 1;
  animation: fadeUp .8s .3s ease both;
}

.tiffin-box {
  width: min(420px, 90vw); aspect-ratio: 1;
  position: relative;
}

/* .tiffin-svg-wrap {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #FFF0D6, #FFE0A3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(192,57,43,.2), 0 4px 15px rgba(0,0,0,.08);
  position: relative; overflow: hidden;
  animation: float 3s ease-in-out infinite;
} */

.tiffin-svg-wrap {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #FFF0D6, #FFE0A3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(192,57,43,.2), 0 4px 15px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
  animation: float 3s ease-in-out infinite;
  padding: 20px;
}

.tiffin-svg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.tiffin-emoji {
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1; position: relative; z-index: 1;
}

.float-chip {
  position: absolute; background: var(--white);
  border-radius: 40px; padding: .55rem 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  font-weight: 600; font-size: .82rem;
  display: flex; align-items: center; gap: .4rem;
}
.chip1 { top: 10%; left: -5%; animation: float 3.5s 0.5s ease-in-out infinite; }
.chip2 { bottom: 14%; right: -8%; animation: float 3s 1s ease-in-out infinite; }
.chip3 { top: 60%; left: -12%; animation: float 4s 0s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTIONS ── */
.section { padding: 5rem 5%; }

.section-label {
  text-align: center; font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: .5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; text-align: center;
  color: var(--dark); margin-bottom: 1rem;
}

.section-sub {
  text-align: center; color: var(--muted);
  font-size: 1rem; max-width: 500px; margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; max-width: 1000px; margin: 0 auto;
}

.step {
  background: var(--white); border-radius: 20px;
  padding: 2rem; text-align: center;
  border: 1px solid rgba(244,166,35,.2);
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,.1); }

.step-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }

.step-num {
  display: inline-block; background: var(--saffron);
  color: var(--white); width: 28px; height: 28px;
  border-radius: 50%; font-size: .8rem; font-weight: 700;
  line-height: 28px; margin-bottom: 1rem;
}

.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.step p  { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ── MENU ── */
.menu-section { background: var(--dark); padding: 5rem 5%; }
.menu-section .section-title { color: var(--white); }
.menu-section .section-sub   { color: rgba(255,255,255,.55); }
.menu-section .section-label { color: var(--saffron); }

.menu-tabs {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: .8rem; margin-bottom: 2.5rem;
}

.tab {
  padding: .5rem 1.2rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent; color: rgba(255,255,255,.7);
  font-size: .9rem; font-weight: 500; cursor: pointer;
  transition: .2s;
}
.tab.active { background: var(--saffron); border-color: var(--saffron); color: var(--dark); font-weight: 700; }
.tab:hover:not(.active) { border-color: var(--saffron); color: var(--white); }

.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}

.menu-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 1.5rem;
  transition: transform .3s, background .3s;
  cursor: pointer;
}
.menu-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.1); }

.menu-emoji { font-size: 2.2rem; margin-bottom: .8rem; display: block; }
.menu-card h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.menu-card p  { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.5; }
.menu-card .price {
  display: inline-block; margin-top: .8rem;
  background: rgba(244,166,35,.2); color: var(--saffron);
  padding: .25rem .75rem; border-radius: 50px;
  font-size: .88rem; font-weight: 700;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem; max-width: 900px; margin: 0 auto;
}

.price-card {
  background: var(--white); border-radius: 24px;
  padding: 2.5rem; border: 2px solid rgba(244,166,35,.2);
  position: relative; transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,.12); }
.price-card.featured {
  border-color: var(--deep-red);
  box-shadow: 0 10px 40px rgba(192,57,43,.15);
}

.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--deep-red); color: var(--white);
  font-size: .78rem; font-weight: 700; padding: .3rem 1rem;
  border-radius: 50px; white-space: nowrap;
}

.plan-name  { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 900; color: var(--dark); }
.plan-price sup { font-size: 1.2rem; vertical-align: top; margin-top: .5rem; display: inline-block; }
.plan-price sub { font-size: .9rem; font-weight: 400; color: var(--muted); }
.plan-desc  { font-size: .88rem; color: var(--muted); margin: .5rem 0 1.2rem; }

.plan-features { list-style: none; margin-bottom: 1.8rem; }
.plan-features li {
  padding: .4rem 0; font-size: .9rem; color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,.05);
  display: flex; align-items: center; gap: .5rem;
}
.plan-features li::before { content: '✓'; color: var(--saffron); font-weight: 700; }

/* ── TESTIMONIALS ── */
.testi-section { background: linear-gradient(135deg, #FFF8F0, #FDF6EC); padding: 5rem 5%; }

.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 1000px; margin: 0 auto;
}

.testi-card {
  background: var(--white); border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(244,166,35,.15);
  transition: transform .3s;
}
.testi-card:hover { transform: translateY(-4px); }

.stars      { color: var(--saffron); font-size: 1rem; margin-bottom: .8rem; letter-spacing: 2px; }
.testi-text { font-size: .92rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: .75rem; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; background: #FFE8CC;
}
.author-name { font-weight: 700; font-size: .9rem; }
.author-loc  { font-size: .78rem; color: var(--muted); }

/* ── CONTACT ── */
.contact-section { padding: 5rem 5%; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; max-width: 900px; margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; margin-bottom: 1rem;
}
.contact-info p { color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }

.contact-detail {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .8rem; font-size: .9rem;
}
.contact-detail .icon { font-size: 1.2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .85rem 1.1rem;
  border: 2px solid rgba(0,0,0,.1);
  border-radius: 12px; font-size: .95rem;
  font-family: inherit; background: var(--white);
  transition: border-color .2s;
  color: var(--dark);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--saffron);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(255,255,255,.7);
  padding: 3rem 5% 1.5rem;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--white); margin-bottom: .8rem;
}
.footer-logo span { color: var(--saffron); }
.footer-desc { font-size: .88rem; line-height: 1.7; }

.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.55); text-decoration: none;
  font-size: .88rem; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--saffron); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem; text-align: center;
  font-size: .82rem;
}

.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); text-decoration: none;
  font-size: .9rem; transition: background .2s;
}
.social-links a:hover { background: var(--saffron); color: var(--dark); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center; padding-top: 90px; padding-bottom: 3rem;
  }
  .hero p, .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .tiffin-box { width: min(280px, 80vw); }
  .chip1, .chip2, .chip3 { display: none; }

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

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats  { gap: 1.2rem; }
}
