/* ============================================
   USHA'S KITCHEN — Styles
   Palette: Terracotta + Saffron + Deep Green
   Fonts: Playfair Display + Plus Jakarta Sans
   ============================================ */

:root {
  --saffron:      #E8821A;
  --saffron-lt:   #F5A94E;
  --saffron-pale: #FEF3E2;
  --terracotta:   #C0392B;
  --terra-dark:   #922B21;
  --green:        #1B5E20;
  --green-mid:    #2E7D32;
  --green-lt:     #E8F5E9;
  --cream:        #FDF6EC;
  --cream-dark:   #F5E6CC;
  --brown:        #5D3A1A;
  --text-dark:    #1A0A00;
  --text-mid:     #4A3728;
  --text-light:   #8B6E5A;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 12px rgba(90,40,0,0.10);
  --shadow-md:    0 8px 32px rgba(90,40,0,0.14);
  --shadow-lg:    0 20px 60px rgba(90,40,0,0.18);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --radius-xl:    48px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
em { font-style: italic; color: var(--saffron); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--terracotta));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,130,26,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,130,26,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--radius-xl);
  background: var(--cream);
  color: var(--saffron);
  border: 2px solid var(--saffron);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-plan:hover {
  background: var(--saffron);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-plan-featured {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--saffron), var(--terracotta));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(232,130,26,0.4);
  transition: var(--transition);
}
.btn-plan-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,130,26,0.5);
}

.full-width { width: 100%; justify-content: center; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }

.section-tag {
  display: inline-block;
  background: var(--saffron-pale);
  color: var(--saffron);
  border: 1.5px solid var(--saffron-lt);
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(253,246,236,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .nav-logo { color: var(--text-dark); }

.logo-icon { font-size: 1.5rem; }
.logo-text em { color: var(--saffron); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  position: relative;
}
.navbar.scrolled .nav-links a { color: var(--text-mid); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--saffron);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--terracotta)) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-xl);
  box-shadow: 0 3px 14px rgba(232,130,26,0.4);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,130,26,0.5) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text-dark); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(27,10,0,0.82) 0%, rgba(90,30,0,0.65) 50%, rgba(27,94,32,0.55) 100%),
    url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1400&q=85&auto=format&fit=crop') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,130,26,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  padding: 7px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--saffron-lt); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  width: fit-content;
}

.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--saffron-lt);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.25); }

.hero-image-wrap {
  flex: 0 0 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: fadeIn 1.1s ease 0.3s both;
}

.hero-img-ring {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 2px dashed rgba(232,130,26,0.4);
  animation: spin 20s linear infinite;
}

.hero-img {
  width: 340px; height: 340px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 12px rgba(232,130,26,0.15);
}

.hero-float-badge {
  position: absolute;
  bottom: 20px; right: 10px;
  background: var(--green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}

/* ===== WHY US ===== */
.why-us {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--cream-dark);
}

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

.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron-lt);
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.why-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

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

/* ===== TIFFIN PLANS ===== */
.tiffin-section {
  padding: 96px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.tiffin-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,130,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cream-dark);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.plan-featured {
  border-color: var(--saffron);
  box-shadow: 0 8px 40px rgba(232,130,26,0.2);
  transform: scale(1.03);
}
.plan-featured:hover { transform: scale(1.03) translateY(-6px); }

.plan-header {
  padding: 28px 24px 20px;
  position: relative;
}

.lite-header    { background: linear-gradient(135deg, #FEF3E2, #FDEBD0); }
.standard-header{ background: linear-gradient(135deg, var(--saffron), var(--terracotta)); }
.deluxe-header  { background: linear-gradient(135deg, #1B5E20, #2E7D32); }

.plan-badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.lite-header .plan-badge { color: var(--saffron); background: rgba(232,130,26,0.15); }

.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.lite-header .plan-name { color: var(--text-dark); }

.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.lite-header .plan-price { color: var(--saffron); }
.plan-price span { font-size: 1rem; font-weight: 500; opacity: 0.8; }

.plan-thali {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.plan-thali img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.plan-card:hover .plan-thali img { transform: scale(1.06); }

.plan-items {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 500;
}

.item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--saffron);
  flex-shrink: 0;
}
.item-dot.gold { background: #D4AF37; }

.plan-card .btn-plan,
.plan-card .btn-plan-featured {
  margin: 0 24px 24px;
}

/* ===== MENU SECTION ===== */
.menu-section {
  padding: 96px 0;
  background: var(--white);
}

.menu-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 11px 28px;
  border-radius: var(--radius-xl);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--saffron); color: var(--saffron); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--saffron), var(--terracotta));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(232,130,26,0.35);
}

.menu-tab-content { display: none; }
.menu-tab-content.active { display: block; }

.menu-category-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-lt);
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-category-label:first-child { margin-top: 0; }

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

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: var(--transition);
  gap: 12px;
}
.menu-item:hover {
  border-color: var(--saffron-lt);
  background: var(--saffron-pale);
  transform: translateX(4px);
}

.mi-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}
.mi-name em { font-style: italic; color: var(--text-light); font-weight: 400; font-size: 0.85rem; }

.mi-price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--saffron);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== ORDER SECTION ===== */
.order-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--brown) 0%, #3D1A0A 50%, var(--green) 100%);
  position: relative;
  overflow: hidden;
}

.order-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.order-left .section-tag { background: rgba(255,255,255,0.12); color: var(--saffron-lt); border-color: rgba(255,255,255,0.2); }
.order-left .section-title { color: var(--white); }
.order-left p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }

.order-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: var(--transition);
}
.contact-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateX(4px);
}
.contact-card.whatsapp { border-color: rgba(37,211,102,0.4); }
.contact-card.whatsapp:hover { background: rgba(37,211,102,0.15); }

.cc-icon { font-size: 1.8rem; }
.cc-info { display: flex; flex-direction: column; }
.cc-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.cc-value { font-size: 1.1rem; font-weight: 700; color: var(--white); }

.order-address {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* Order Form */
.order-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.order-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,130,26,0.12);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  font-size: 1.4rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.footer-social a:hover { background: var(--saffron); transform: translateY(-2px); }

.footer-links h4,
.footer-contact h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--saffron-lt); padding-left: 4px; }

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact a { color: var(--saffron-lt); }
.footer-contact a:hover { text-decoration: underline; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
  color: var(--white);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 100px; right: 28px;
  background: var(--green);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-6px); }
  .hero-image-wrap { flex: 0 0 320px; }
  .hero-img { width: 280px; height: 280px; }
  .hero-img-ring { width: 310px; height: 310px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: right 0.35s ease;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--text-dark) !important; font-size: 1.1rem; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 24px 80px;
    gap: 40px;
  }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { margin: 0 auto; }
  .hero-image-wrap { flex: none; }
  .hero-img { width: 240px; height: 240px; }
  .hero-img-ring { width: 270px; height: 270px; }

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

  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .menu-grid { grid-template-columns: 1fr; }

  .order-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .order-form { padding: 24px; }
}