/* ============================================================
   BANDWIDTH TIFFIN SERVICE v2 — style.css
   Dark Premium Theme — Fully Redesigned
   ============================================================ */

/* ─── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --accent:       #e63946;
  --accent-light: #ff6b74;
  --accent-dark:  #b52a35;
  --gold:         #f4a261;
  --bg:           #080c0d;
  --bg-card:      #0f1315;
  --bg-card2:     #141a1d;
  --bg-card3:     #1a2124;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(230,57,70,0.35);
  --text:         #f0f4f5;
  --text-muted:   #8a9ba3;
  --text-dim:     #5a6e77;
  --radius:       14px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-accent:0 8px 32px rgba(230,57,70,0.2);
  --trans:        0.25s ease;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 4px; }

/* ─── ANNOUNCE BAR ───────────────────────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), #c0392b);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.45rem 0;
  letter-spacing: 0.01em;
}
.announce-track {
  display: inline-block;
  animation: ticker 38s linear infinite;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(8,12,13,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
#navbar.scrolled {
  background: rgba(8,12,13,0.97);
  border-bottom-color: rgba(230,57,70,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-right: auto;
}
/* Company logo image */
.logo-img {
  height: 38px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}
.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text  { font-size: 1.05rem; font-weight: 800; letter-spacing: 0.02em; }
.logo-band  { color: var(--text); }
.logo-width { color: var(--accent); }
.logo-tagline {
  font-size: 0.63rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logo-accent { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--trans);
}
.nav-links a:hover { color: var(--text); background: var(--bg-card2); }
.nav-cta {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--trans);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

/* Nav Login Button */
.nav-login-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.4rem 0.9rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--trans);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-login-btn:hover { color: var(--text); border-color: var(--border-hover); background: var(--bg-card2); }
.nav-login-btn.logged-in { color: #4ade80; border-color: rgba(74,222,128,0.3); }
.nav-login-btn.logged-in:hover { background: rgba(74,222,128,0.08); }

/* Mobile-only nav login item (hidden on desktop) */
.nav-login-mobile { display: none; }

/* ─── SECTION COMMONS ────────────────────────────────────────── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.section-label {
  display: inline-block;
  background: rgba(230,57,70,0.1);
  color: var(--accent);
  border: 1px solid rgba(230,57,70,0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--trans);
  border: none;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(37,211,102,0.15);
  color: #25d366;
  border: 1px solid rgba(37,211,102,0.3);
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--trans);
}
.btn-whatsapp:hover { background: rgba(37,211,102,0.25); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--trans);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-hover); background: var(--bg-card2); transform: translateY(-2px); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230,57,70,0.12), transparent 70%);
  top: -100px; left: -150px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,162,97,0.08), transparent 70%);
  bottom: -80px; right: 100px;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(230,57,70,0.07), transparent 70%);
  top: 50%; left: 40%;
}
.hero-content {
  flex: 1;
  z-index: 1;
  max-width: 580px;
}
.hero-pill-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(244,162,97,0.12);
  color: var(--gold);
  border: 1px solid rgba(244,162,97,0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hs-num { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.hs-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-stat-divider { width: 1px; height: 32px; background: var(--border); }
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual {
  flex: 1;
  max-width: 400px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(230,57,70,0.15);
  box-shadow: 0 0 60px rgba(230,57,70,0.08), inset 0 0 60px rgba(230,57,70,0.04);
}
.hero-carousel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  box-shadow: var(--shadow);
  position: relative;
}
.carousel-slides { position: relative; min-height: 180px; }
.carousel-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.carousel-slide.active { opacity: 1; transform: scale(1); pointer-events: auto; }
.carousel-slide.exit { opacity: 0; transform: scale(1.04); }
.slide-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.slide-emoji { font-size: 3.5rem; line-height: 1; }
.slide-info strong { display: block; font-size: 1.05rem; font-weight: 700; }
.slide-info span { font-size: 0.82rem; color: var(--text-muted); }
.carousel-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
}
.cdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bg-card3);
  cursor: pointer;
  transition: var(--trans);
}
.cdot.active { background: var(--accent); transform: scale(1.3); }
.hero-trust-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(230,57,70,0.15);
  color: var(--accent);
  border: 1px solid rgba(230,57,70,0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ─── FEATURES ───────────────────────────────────────────────── */
.features { border-top: 1px solid var(--border); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--trans);
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}
.feat-icon {
  width: 46px; height: 46px;
  background: rgba(230,57,70,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ─── PLANS ──────────────────────────────────────────────────── */
.plans { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.plan-card {
  position: relative;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--trans);
  overflow: hidden;
}
.plan-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.plan-card.popular { border-color: rgba(230,57,70,0.4); box-shadow: 0 0 0 1px rgba(230,57,70,0.15); }
.plan-card.premium { border-color: rgba(244,162,97,0.3); }
.popular-badge {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 0 0 10px 10px;
  letter-spacing: 0.03em;
}
.plan-card-inner { padding: 1.75rem 1.5rem; }
.plan-card.popular .plan-card-inner { padding-top: 2.5rem; }
.plan-header { margin-bottom: 1.25rem; text-align: center; }
.plan-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(230,57,70,0.1);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 0.75rem;
}
.plan-card.premium .plan-icon { background: rgba(244,162,97,0.1); color: var(--gold); }
.plan-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.plan-price { font-size: 1.9rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 0.5rem; }
.plan-card.premium .plan-price { color: var(--gold); }
.plan-price span { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.plan-tagline { font-size: 0.8rem; color: var(--text-muted); }
.plan-features-list { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; }
.plan-features-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; }
.plan-features-list li i.fa-check { color: #4ade80; font-size: 0.7rem; }
.plan-features-list li.plan-feat-off { color: var(--text-dim); }
.plan-features-list li.plan-feat-off i.fa-xmark { color: var(--text-dim); font-size: 0.7rem; }
.plan-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%;
  background: var(--bg-card3);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--trans);
}
.plan-btn:hover { background: var(--bg-card); border-color: var(--border-hover); color: var(--accent); }
.plan-btn-accent { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; border-color: transparent; }
.plan-btn-accent:hover { background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; }
.plan-btn-premium { background: linear-gradient(135deg, #f4a261, #e76f51); color: #fff; border-color: transparent; font-weight: 700; }
.plan-btn-premium:hover { background: linear-gradient(135deg, #f4b27a, #f4a261); color: #fff; }

/* ─── COVERAGE (Universities) ────────────────────────────────── */
.uni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.uni-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--trans);
}
.uni-card:hover { border-color: var(--border-hover); color: var(--accent); }
.uni-card i { color: var(--accent); font-size: 1rem; flex-shrink: 0; }

/* ─── DASHBOARD ──────────────────────────────────────────────── */
.dashboard { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.dash-stat-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: var(--trans);
}
.dash-stat-card:hover { border-color: var(--border-hover); }
.dsc-icon {
  width: 44px; height: 44px;
  background: rgba(230,57,70,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  margin: 0 auto 0.75rem;
}
.dsc-num { font-size: 1.7rem; font-weight: 900; margin-bottom: 0.25rem; }
.dsc-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.dash-progress-section, .meal-distribution {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.25rem;
}
.dash-prog-title { font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; }
.dist-row {
  display: grid;
  grid-template-columns: 140px 1fr 48px;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}
.ps-label { color: var(--text-muted); }
.ps-bar, .dist-track {
  background: var(--bg-card3);
  border-radius: 30px;
  height: 8px;
  overflow: hidden;
}
.progress-fill, .dist-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 30px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.ps-pct { font-size: 0.8rem; font-weight: 700; color: var(--accent); text-align: right; }
.dist-row span:first-child { color: var(--text-muted); }
.dist-row span:last-child { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-align: right; }

/* ─── REVIEWS ────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--trans);
}
.review-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.rev-stars { font-size: 0.9rem; margin-bottom: 0.75rem; }
.rev-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.rev-author { display: flex; align-items: center; gap: 0.75rem; }
.rev-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff;
  flex-shrink: 0;
}
.rev-author strong { display: block; font-size: 0.88rem; font-weight: 700; }
.rev-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ─── ENQUIRY FORM ───────────────────────────────────────────── */
.enquiry { border-top: 1px solid var(--border); }
.enq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.enq-left { position: sticky; top: 80px; }
.enq-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; }
.enq-steps-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.enq-step {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.esn {
  width: 30px; height: 30px;
  min-width: 30px;
  background: rgba(230,57,70,0.12);
  color: var(--accent);
  border: 1px solid rgba(230,57,70,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}
.enq-step strong { display: block; font-size: 0.9rem; font-weight: 700; }
.enq-step p { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.1rem; }
.enq-contact-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(37,211,102,0.1);
  color: #25d366;
  border: 1px solid rgba(37,211,102,0.25);
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--trans);
}
.enq-contact-btn:hover { background: rgba(37,211,102,0.2); }

/* Form Right Panel */
.enq-right {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* Section Labels inside form */
.form-section-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.75rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.form-section-label:first-child { margin-top: 0; }
.fsn {
  width: 24px; height: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Form layout */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--text-muted); }
.req { color: var(--accent); }

/* Input wraps */
.input-wrap {
  position: relative;
  display: flex; align-items: center;
}
.input-wrap > i:first-child {
  position: absolute;
  left: 0.9rem;
  color: var(--text-dim);
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 1;
}
.input-wrap input,
.input-wrap select {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.9rem 0.7rem 2.4rem;
  color: var(--text);
  font-size: 0.88rem;
  transition: var(--trans);
  appearance: none;
}
.input-wrap input:focus,
.input-wrap select:focus {
  outline: none;
  border-color: rgba(230,57,70,0.5);
  background: var(--bg-card3);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}
.input-wrap input.error,
.input-wrap select.error { border-color: var(--accent); }
.input-wrap input::placeholder { color: var(--text-dim); }
.select-wrap .sel-arrow {
  position: absolute;
  right: 0.9rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  pointer-events: none;
}
.field-error { font-size: 0.78rem; color: var(--accent); min-height: 1.1em; }

/* ─── PLAN PILLS ─────────────────────────────────────────────── */
.plan-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.pps-btn {
  background: var(--bg-card2);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  text-align: left;
  transition: var(--trans);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pps-btn:hover { border-color: var(--border-hover); }
.pps-btn.selected { border-color: var(--accent); background: rgba(230,57,70,0.08); }
.pps-btn.pps-premium.selected { border-color: var(--gold); background: rgba(244,162,97,0.08); }
.pps-check {
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  width: 18px; height: 18px;
  background: var(--bg-card3);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  color: transparent;
  transition: var(--trans);
}
.pps-btn.selected .pps-check {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.pps-btn.pps-premium.selected .pps-check { background: var(--gold); border-color: var(--gold); }
.pps-name { font-size: 0.9rem; font-weight: 700; }
.pps-price { font-size: 0.78rem; color: var(--text-muted); }
.pps-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 0 0 6px 6px;
}

/* ─── MEAL TYPE TOGGLE ───────────────────────────────────────── */
.meal-type-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.mtt-btn {
  background: var(--bg-card2);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 0.5rem;
  text-align: center;
  transition: var(--trans);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.mtt-btn:hover { border-color: var(--border-hover); }
.mtt-btn.selected { border-color: var(--accent); background: rgba(230,57,70,0.08); }
.mtt-check {
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  width: 16px; height: 16px;
  background: var(--bg-card3);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem;
  color: transparent;
  transition: var(--trans);
}
.mtt-btn.selected .mtt-check { background: var(--accent); border-color: var(--accent); color: #fff; }
.mtt-emoji { font-size: 1.5rem; line-height: 1; }
.mtt-name { font-size: 0.88rem; font-weight: 700; }
.mtt-time { font-size: 0.72rem; color: var(--text-muted); }

/* ─── CALENDAR WIDGET ────────────────────────────────────────── */
.cal-widget {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
}
.cal-month-year { font-size: 0.92rem; font-weight: 700; }
.cal-nav {
  background: none; border: none;
  color: var(--text-muted);
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: var(--trans);
}
.cal-nav:hover { background: var(--bg-card3); color: var(--text); }
.cal-weekdays {
  display: grid; grid-template-columns: repeat(7,1fr);
  border-bottom: 1px solid var(--border);
}
.cal-weekdays span {
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
}
.cal-grid {
  display: grid; grid-template-columns: repeat(7,1fr);
  padding: 0.5rem;
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--trans);
  position: relative;
}
.cal-day:hover:not(.past):not(.empty) { background: var(--bg-card3); }
.cal-day.empty { cursor: default; }
.cal-day.past { color: var(--text-dim); cursor: not-allowed; }
.cal-day.today { color: var(--accent); font-weight: 700; }
.cal-day.start, .cal-day.end {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.cal-day.in-range {
  background: rgba(230,57,70,0.12);
  border-radius: 0;
}
.cal-day.start { border-radius: 8px 0 0 8px; }
.cal-day.end { border-radius: 0 8px 8px 0; }
.cal-day.start.end { border-radius: 8px; }
.cal-legend {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.6rem 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
}
.cal-legend span { display: flex; align-items: center; gap: 0.4rem; }
.cl-start::before, .cl-end::before {
  content: '';
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 3px;
  display: block;
}
.cl-range::before {
  content: '';
  width: 12px; height: 12px;
  background: rgba(230,57,70,0.2);
  border-radius: 3px;
  display: block;
}

/* ─── COST COUNTER CARD ──────────────────────────────────────── */
.cost-counter-card {
  background: linear-gradient(135deg, rgba(230,57,70,0.06), rgba(230,57,70,0.02));
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 0.75rem;
}
.ccc-header {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(230,57,70,0.15);
}
.ccc-rows { display: flex; flex-direction: column; gap: 0.5rem; }
.ccc-row { display: flex; justify-content: space-between; align-items: center; }
.ccc-label { font-size: 0.82rem; color: var(--text-muted); }
.ccc-val { font-size: 0.88rem; font-weight: 600; }
.ccc-divider { height: 1px; background: rgba(230,57,70,0.15); margin: 0.5rem 0; }
.ccc-total-row .ccc-label { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.ccc-total-val { font-size: 1.2rem; font-weight: 900; color: var(--accent); }
.ccc-note { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.75rem; }

/* ─── NEXT BILLING BANNER ────────────────────────────────────── */
.next-billing-banner {
  display: flex; align-items: flex-start; gap: 1rem;
  background: linear-gradient(135deg, rgba(251,191,36,0.08), rgba(251,191,36,0.04));
  border: 1px solid rgba(251,191,36,0.3);
  border-left: 3px solid #fbbf24;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-top: 1rem;
  animation: fadeInUp 0.4s ease;
}
.nbb-icon {
  font-size: 1.3rem; color: #fbbf24;
  margin-top: 0.1rem; flex-shrink: 0;
}
.nbb-label {
  font-size: 0.78rem; font-weight: 700;
  color: #fbbf24; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 0.4rem;
}
.nbb-text { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }
.nbb-date { color: #fbbf24 !important; font-size: 0.9rem; }

/* ─── DROP LOCATION MAP ──────────────────────────────────────── */
.map-search-bar {
  display: flex; align-items: center;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.6rem;
  transition: var(--trans);
}
.map-search-bar:focus-within { border-color: rgba(230,57,70,0.5); }
.map-search-bar > i { padding: 0 0.75rem; color: var(--text-dim); font-size: 0.85rem; flex-shrink: 0; }
.map-search-bar input {
  flex: 1;
  background: none;
  border: none;
  padding: 0.7rem 0;
  color: var(--text);
  font-size: 0.88rem;
}
.map-search-bar input:focus { outline: none; }
.map-search-bar input::placeholder { color: var(--text-dim); }
/* Google Places Autocomplete dropdown styling */
.pac-container {
  background: var(--bg-card2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  box-shadow: var(--shadow) !important;
  font-family: 'Outfit', sans-serif !important;
  margin-top: 4px !important;
}
.pac-item {
  border-top: 1px solid var(--border) !important;
  padding: 0.55rem 0.85rem !important;
  cursor: pointer !important;
  color: var(--text-muted) !important;
  font-size: 0.84rem !important;
}
.pac-item:first-child { border-top: none !important; }
.pac-item:hover, .pac-item-selected {
  background: var(--bg-card3) !important;
  color: var(--text) !important;
}
.pac-item-query { color: var(--text) !important; font-size: 0.88rem !important; font-weight: 600 !important; }
.pac-icon { display: none !important; }
.pac-matched { color: var(--accent) !important; }
.drop-map-hint {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.4rem;
}
#dropLocationMap {
  height: 280px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.drop-result-card {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(230,57,70,0.06);
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: 10px;
  padding: 0.85rem;
  margin-top: 0.5rem;
  transition: var(--trans);
}
.drc-icon { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }
.drc-content { flex: 1; min-width: 0; }
.drc-label { display: block; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.drc-address { display: block; font-size: 0.83rem; font-weight: 600; line-height: 1.4; }
.drc-gmaps-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(66,133,244,0.1);
  color: #4285f4;
  border: 1px solid rgba(66,133,244,0.25);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: var(--trans);
}
.drc-gmaps-btn:hover { background: rgba(66,133,244,0.2); }

/* ─── SUBMIT BUTTON ──────────────────────────────────────────── */
.form-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1.5rem;
  transition: var(--trans);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.form-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.form-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* ─── SUCCESS SCREEN ─────────────────────────────────────────── */
.success-screen {
  text-align: center;
  padding: 3rem 1.5rem;
}
.ss-icon { font-size: 4rem; color: #4ade80; margin-bottom: 1rem; }
.success-screen h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.75rem; }
.success-screen p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ─── DELIVERY MAP SECTION ───────────────────────────────────── */
.map-section { border-top: 1px solid var(--border); }
#deliveryMap {
  height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* Leaflet dark overrides */
.leaflet-container { background: #1a2124; }
.leaflet-tile-pane { filter: invert(1) hue-rotate(200deg) brightness(0.7); }
.leaflet-popup-content-wrapper {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.leaflet-popup-tip { background: var(--bg-card2); }

/* ─── CONFIRMATION MODAL ─────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  animation: fadeInOverlay 0.2s ease;
}
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUpModal 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes slideUpModal { from { opacity: 0; transform: translateY(30px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 0.75rem; text-align: center; }
.modal-title { font-size: 1.3rem; font-weight: 800; text-align: center; margin-bottom: 0.35rem; }
.modal-subtitle { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-bottom: 1.5rem; }
.modal-details { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.modal-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; }
.modal-key { color: var(--text-muted); flex-shrink: 0; }
.modal-val { font-weight: 600; text-align: right; word-break: break-word; }
.modal-val.highlight { color: var(--accent); font-size: 1rem; font-weight: 800; }
.modal-actions { display: flex; gap: 0.75rem; }
.modal-edit-btn {
  flex: 1;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  transition: var(--trans);
}
.modal-edit-btn:hover { border-color: var(--border-hover); }
.modal-submit-btn {
  flex: 2;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  transition: var(--trans);
}
.modal-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.25); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-top: 0.75rem; max-width: 320px; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-socials a {
  width: 36px; height: 36px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--trans);
}
.footer-socials a:hover { border-color: var(--border-hover); color: var(--accent); }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: var(--trans); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ─── SCROLL TO TOP ──────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-accent);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: var(--trans);
  z-index: 990;
}
#scrollTop.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#scrollTop:hover { background: var(--accent-light); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

/* ── Tablet / small desktop (≤ 900px) ── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column; min-height: auto;
    padding: 3rem 1.5rem; text-align: center;
    gap: 2rem;
  }
  .hero-content   { max-width: 100%; }
  .hero-visual    { width: 100%; max-width: 420px; margin: 0 auto; }
  .hero-stats-row { justify-content: center; }
  .hero-cta-group { justify-content: center; }
  .hero-glow-ring { display: none; }
  .enq-wrap  { grid-template-columns: 1fr; gap: 2rem; }
  .enq-left  { position: static; }
  .map-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Mobile landscape / large phone (≤ 768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-inner { gap: 0.75rem; padding: 0 1rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.25rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.6rem 1rem; border-radius: 8px; }
  .nav-toggle { display: flex; }
  .nav-cta { border-radius: 8px; justify-content: center; }
  /* Shrink login btn to icon only on tablet */
  .nav-login-btn span { display: none; }
  .nav-login-btn { padding: 0.4rem 0.6rem; }
  /* Show login inside mobile dropdown */
  .nav-login-mobile { display: flex; }
  .nav-login-mobile a { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; border-radius: 8px; color: var(--accent); font-weight: 600; }

  /* Hero */
  .hero { padding: 2.5rem 1.25rem; }
  .hero-cta-group { gap: 0.75rem; }

  /* Sections */
  .section-container { padding: 3rem 1rem; }

  /* Form */
  .form-row-2 { grid-template-columns: 1fr; }
  .enq-right  { padding: 1.5rem 1.25rem; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-pill-grid { grid-template-columns: 1fr 1fr; }
  .dash-stats-row { grid-template-columns: repeat(2,1fr); }
  .dist-row { grid-template-columns: 100px 1fr 40px; }

  /* Pain-solution */
  .ps-grid { grid-template-columns: 1fr; }
  .ps-arrow-col { display: none; }
}

/* ── Small phone portrait (≤ 480px) ── */
@media (max-width: 480px) {
  /* Nav */
  .nav-login-btn { display: none; }
  .nav-inner { padding: 0 0.875rem; }

  /* Hero */
  .hero { padding: 2rem 1rem; gap: 1.5rem; }
  .hero-visual { max-width: 100%; }
  .hero-carousel-card { max-width: 100%; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; padding: 0.8rem 1rem; }
  .hero-title { font-size: clamp(1.6rem, 8vw, 2.4rem); }

  /* Sections */
  .section-container { padding: 2.5rem 0.875rem; }

  /* Form */
  .enq-right { padding: 1rem; border-radius: var(--radius); }
  .plan-pill-grid { grid-template-columns: 1fr 1fr; }
  .meal-type-toggle { grid-template-columns: 1fr 1fr; }
  .dash-stats-row { grid-template-columns: 1fr 1fr; }
  .modal-actions { flex-direction: column; }
  .map-layout { grid-template-columns: 1fr; }

  /* Misc */
  .next-billing-banner { flex-direction: column; gap: 0.5rem; }
  .hero-stats-row { gap: 0.75rem; }
  .uni-cards-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  /* Plan cards — keep single column but full-width */
  .plans-grid { grid-template-columns: 1fr; gap: 1rem; }
  .plan-card-inner { padding: 1.25rem 1.1rem; }

  /* Confirm modal */
  .modal-box { max-width: calc(100vw - 32px); margin: 16px; padding: 0; }
  .modal-details { font-size: 0.82rem; }
  .modal-row { padding: 7px 0; }

  /* Submit button full width */
  .form-submit-btn { width: 100%; padding: 1rem; font-size: 1rem; }

  /* Drop location map compact */
  .drop-map-container, #dropMap { height: 220px !important; }

  /* Cost counter compact */
  .cost-counter-card { padding: 1rem; }
}

/* ─── HERO CAROUSEL (image version) ─────────────────────────── */
.carousel-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.carousel-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
}
.caption-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(230,57,70,0.85);
  color: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.carousel-slides { position: relative; min-height: 220px; }
.carousel-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: none;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.carousel-slide.active { opacity: 1; transform: none; pointer-events: auto; }
.carousel-slide.exit   { opacity: 0; transform: none; }

/* ─── HERO BADGES ROW ────────────────────────────────────────── */
.hero-badges-row {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
}
.badge-pill i { color: var(--accent); }

/* ─── PAIN-SOLUTION ──────────────────────────────────────────── */
.pain-solution { border-top: 1px solid var(--border); }
.ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}
.ps-side-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.pain-label     { background: rgba(239,68,68,0.12); color: #ef4444; border: 1px solid rgba(239,68,68,0.25); }
.solution-label { background: rgba(74,222,128,0.1);  color: #4ade80; border: 1px solid rgba(74,222,128,0.25); }
.ps-list { display: flex; flex-direction: column; gap: 1.1rem; }
.ps-item { display: flex; align-items: flex-start; gap: 0.85rem; font-size: 0.88rem; line-height: 1.6; }
.ps-item strong { display: block; font-size: 0.9rem; margin-bottom: 0.15rem; }
.ps-item p { color: var(--text-muted); margin: 0; }
.ps-icon {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.pain-icon     { background: rgba(239,68,68,0.1);  color: #ef4444; }
.solution-icon { background: rgba(74,222,128,0.1); color: #4ade80; }
.ps-arrow-col  { display: flex; align-items: center; padding-top: 4rem; }
.arrow-circle {
  width: 44px; height: 44px;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
}

/* ─── UNIQUENESS CARDS ───────────────────────────────────────── */
.uniqueness { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.text-accent { color: var(--accent); }
.uni-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.uni-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.uni-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.uni-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(230,57,70,0.1);
  line-height: 1;
  position: absolute;
  top: 0.75rem; right: 1rem;
}
.uni-card-header {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.uni-icon {
  width: 40px; height: 40px;
  background: rgba(230,57,70,0.1);
  color: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.uni-card h4 { font-size: 0.95rem; font-weight: 700; margin: 0; line-height: 1.35; }
.uni-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.75rem; }
.uni-tag {
  display: inline-block;
  background: rgba(230,57,70,0.1);
  color: var(--accent);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  border: 1px solid rgba(230,57,70,0.2);
}

/* ─── PLANS — EXTRA TYPES ────────────────────────────────────── */
.plan-price-gold { color: var(--gold) !important; }
.plan-card.premium .plan-price { color: var(--gold); }
.trial-card { border-color: rgba(244,162,97,0.25); }
.trial-badge-wrap { text-align: center; padding: 0.5rem 0 0; }
.trial-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(244,162,97,0.12);
  color: var(--gold);
  border: 1px solid rgba(244,162,97,0.25);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem; font-weight: 700;
}
.trial-card .plan-card-inner { padding-top: 1rem; }
.plan-btn-trial {
  background: rgba(244,162,97,0.1);
  border-color: rgba(244,162,97,0.3);
  color: var(--gold);
}
.plan-btn-trial:hover { background: rgba(244,162,97,0.2); color: var(--gold); }
.trial-only-note {
  font-size: 0.72rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 0.1rem;
}

/* Plan pills — 5-Day Trial specific */
.pps-btn.pps-trial { border-color: rgba(244,162,97,0.25); }
.pps-btn.pps-trial.selected { border-color: var(--gold); background: rgba(244,162,97,0.08); }
.pps-btn.pps-trial.selected .pps-check { background: var(--gold); border-color: var(--gold); }
.pps-trial-note {
  font-size: 0.68rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1.2;
}

/* Meal distribution strip */
.meal-dist-strip {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
}
.dist-strip-header {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 700; margin-bottom: 1.25rem;
  color: var(--text-muted);
}
.dist-strip-bars { display: flex; flex-direction: column; gap: 0.85rem; }
.ds-bar-item {
  display: grid;
  grid-template-columns: 100px 1fr 40px;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}
.ds-bar-item span:first-child { color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; }
.ds-track {
  background: var(--bg-card3);
  border-radius: 30px;
  height: 8px;
  overflow: hidden;
}
.ds-fill {
  height: 100%;
  border-radius: 30px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.chicken-fill { background: linear-gradient(90deg, #e63946, #ff6b74); }
.egg-fill     { background: linear-gradient(90deg, #f4a261, #ffd166); }
.veg-fill     { background: linear-gradient(90deg, #4ade80, #22c55e); }
.ds-pct { font-size: 0.78rem; font-weight: 700; text-align: right; color: var(--text-muted); }

/* ─── REVIEWS — ENHANCED ─────────────────────────────────────── */
.rev-stars { font-size: 0.85rem; color: #fbbf24; margin-bottom: 0.75rem; }
.rev-verified {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.73rem;
  color: #25d366;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-top: 0.75rem;
}
.review-card.review-featured {
  border-color: rgba(230,57,70,0.25);
  background: linear-gradient(135deg, rgba(230,57,70,0.04), transparent);
}
.reviews-hygiene-row {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}
.hygiene-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.hygiene-badge i { color: var(--accent); }

/* ─── ENQUIRY LEFT — DELIVERY TIMES ─────────────────────────── */
.enq-delivery-times {
  display: flex; gap: 1.25rem;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.edt-item { display: flex; align-items: center; gap: 0.6rem; }
.edt-item i { color: var(--accent); font-size: 1rem; }
.edt-item strong { display: block; font-size: 0.85rem; font-weight: 700; }
.edt-item span { font-size: 0.78rem; color: var(--text-muted); }

/* ─── LABEL HINT ─────────────────────────────────────────────── */
.label-hint {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-left: 0.5rem;
  font-style: italic;
}

/* ─── ZONE DETECT CARDS ──────────────────────────────────────── */
.zone-detect-card {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(74,222,128,0.07);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-top: 0.5rem;
  animation: fadeInOverlay 0.3s ease;
}
.zdc-icon  { color: #4ade80; font-size: 1.2rem; flex-shrink: 0; }
.zdc-content { flex: 1; }
.zdc-label { display: block; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.15rem; }
.zdc-zone  { display: block; font-size: 0.92rem; font-weight: 700; color: #4ade80; }
.zdc-ok {
  font-size: 0.75rem;
  color: #4ade80;
  display: flex; align-items: center; gap: 0.35rem;
  flex-shrink: 0;
  font-weight: 600;
}

.zone-outside-card {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: rgba(230,57,70,0.08);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-top: 0.5rem;
  font-size: 0.84rem;
  color: var(--accent);
  font-weight: 500;
  animation: fadeInOverlay 0.3s ease;
}
.zone-outside-card i { font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }

/* ─── GOOGLE MAPS DELIVERY SECTION ──────────────────────────── */
.map-section { border-top: 1px solid var(--border); }
.map-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: start;
}
.map-info .section-sub { margin-bottom: 1.25rem; }
.zone-list {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.zone-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.87rem; color: var(--text-muted);
}
.zone-list li i { color: var(--accent); font-size: 0.7rem; }
.map-timing-block {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.mt-row { display: flex; align-items: center; gap: 0.75rem; }
.mt-row i { color: var(--accent); font-size: 1rem; }
.mt-row strong { display: block; font-size: 0.88rem; font-weight: 700; }
.mt-row span { font-size: 0.78rem; color: var(--text-muted); }
.map-embed-wrap { position: relative; }
.gmaps-embed {
  width: 100%;
  height: 440px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: block;
  filter: brightness(0.88) saturate(0.9);
  transition: filter 0.3s;
}
.gmaps-embed:hover { filter: brightness(1) saturate(1); }

/* Override old #deliveryMap (Leaflet) — now using Google Maps iframe */
#deliveryMap { display: none; }

/* ─── DROP MAP — LEAFLET DARK THEME (CartoDB) ────────────────── */
.leaflet-container { background: #111; }
.leaflet-popup-content-wrapper {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.leaflet-popup-tip { background: var(--bg-card2); }
/* No filter invert needed — CartoDB Dark tiles already dark */

/* ─── RESPONSIVE ADDITIONS ───────────────────────────────────── */
@media (max-width: 900px) {
  .ps-grid      { grid-template-columns: 1fr; gap: 1.5rem; }
  .ps-arrow-col { display: none; }
  .map-layout   { grid-template-columns: 1fr; }
  .gmaps-embed  { height: 320px; }
  .enq-delivery-times { flex-direction: column; gap: 0.75rem; }
  .hero-badges-row { justify-content: center; }
}
@media (max-width: 600px) {
  .ds-bar-item { grid-template-columns: 80px 1fr 36px; }
  .reviews-hygiene-row { flex-direction: column; align-items: center; }
  .uni-cards-grid { grid-template-columns: 1fr; }
  .logo-img { height: 30px; }
}

/* ─── PLAN CATEGORY CHIPS (Plan Cards) ───────────────────────── */
.plan-category-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0.75rem 0 0.9rem;
  padding: 0.6rem 0.75rem;
  background: rgba(230,57,70,0.06);
  border: 1px solid rgba(230,57,70,0.15);
  border-radius: 10px;
}
.plan-cat-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-right: 0.2rem;
}
.plan-cat-chip {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* ─── DIET CATEGORY SUB-SELECTOR (Enquiry Form) ─────────────── */
#dietCategoryRow {
  animation: fadeInDown 0.25s ease;
}
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-8px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ─── CALENDAR HINT ──────────────────────────────────────────── */
.cal-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(230,57,70,0.06);
  border: 1px solid rgba(230,57,70,0.14);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  margin-top: 0.6rem;
}
.cal-hint i { color: var(--accent); margin-top: 1px; flex-shrink: 0; }

/* ─── MOBILE POLISH (375–480px) ──────────────────────────────── */
@media (max-width: 768px) {
  /* Enquiry form — full-width comfortable padding */
  .enq-right { padding: 1.25rem 1rem; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0.75rem; }
  .enq-section-title { font-size: 0.9rem; }

  /* Plan pills — 2 per row */
  .plan-pill-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }

  /* Meal type toggle — 3 equal columns */
  .meal-type-toggle { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }

  /* Diet pills — 2 per row */
  .diet-pill-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }

  /* Calendar — compact */
  .cal-day, .cal-date-btn { font-size: 0.8rem; }

  /* Cost counter row — stack on mobile */
  .cost-counter-card { padding: 1rem 0.875rem; }
  .cost-row { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .cost-total { font-size: 1.3rem; }

  /* Zone detect card */
  .zone-detect-card { padding: 0.75rem 1rem; }
  .zone-detect-card .zone-label { font-size: 0.82rem; }

  /* Review modal */
  .modal-box { border-radius: 16px; max-height: 88vh; }
  .modal-row { font-size: 0.83rem; }
  .modal-val { font-size: 0.83rem; }

  /* Success screen */
  .success-screen { padding: 1.5rem 1rem; }
  .success-screen h3 { font-size: 1.3rem; }

  /* Signup form */
  .auth-card { padding: 24px 18px; margin: 12px; }

  /* Hero title sizing */
  .hero-title { font-size: clamp(1.7rem, 9vw, 2.8rem); line-height: 1.15; }
  .hero-sub { font-size: 0.95rem; }

  /* Stats row — wrap neatly */
  .hero-stats-row { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .hero-stat-item { min-width: 80px; text-align: center; }

  /* Plan card on mobile */
  .plan-card-inner { padding: 1.5rem 1.25rem; }
  .plan-name { font-size: 1rem; }

  /* Section headers */
  .section-title { font-size: clamp(1.4rem, 7vw, 2rem); }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { justify-content: center; }

  /* First time notice banner */
  .first-time-notice { padding: 0.875rem 1rem; font-size: 0.82rem; }
}

/* ─── Dashboard Preview Section ──────────────────────────── */
.dash-preview-section { padding: 5rem 0; }
.dash-preview-wrap {
  display: flex; align-items: center; gap: 3rem;
  margin-top: 2.5rem; flex-wrap: wrap; justify-content: center;
}
.dash-preview-card { flex: 1; min-width: 300px; max-width: 420px; }
.dash-preview-mockup {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.dp-topbar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px; background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}
.dp-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.dp-dot:first-child { background: #e63946; }
.dp-dot:nth-child(2) { background: #f4a261; }
.dp-dot:nth-child(3) { background: #2ec27e; }
.dp-title { margin-left: auto; font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.dp-body { padding: 20px; }
.dp-stat-row { display: flex; gap: 12px; margin-bottom: 16px; }
.dp-stat {
  flex: 1; text-align: center; padding: 14px 8px;
  background: rgba(230,57,70,0.06); border: 1px solid rgba(230,57,70,0.12);
  border-radius: 10px;
}
.dp-stat-num { display: block; font-size: 1.4rem; font-weight: 800; color: var(--accent); }
.dp-stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.dp-delivery {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 10px;
  background: rgba(46,194,126,0.08); border: 1px solid rgba(46,194,126,0.15);
  margin-bottom: 12px;
}
.dp-del-icon { font-size: 1.2rem; color: #2ec27e; }
.dp-del-text { font-size: 0.85rem; color: var(--text-secondary); }
.dp-curry-row {
  padding: 10px 14px; border-radius: 8px;
  background: rgba(244,162,97,0.08); border: 1px solid rgba(244,162,97,0.12);
  font-size: 0.85rem; color: var(--text-secondary);
}
.dash-preview-cta { flex: 1; min-width: 280px; max-width: 420px; }
.dash-preview-cta h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.75rem; color: var(--text-primary); }
.dash-preview-cta p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.95rem; }
@media (max-width: 768px) {
  .dash-preview-wrap { flex-direction: column; gap: 2rem; }
  .dash-preview-card, .dash-preview-cta { max-width: 100%; }
  .dash-preview-cta { text-align: center; }
}

/* ─── Floating WhatsApp Button ───────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2s infinite;
}
.whatsapp-float i { font-size: 1.4rem; }
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7); }
}
@media (min-width: 769px) {
  .whatsapp-float .wa-label { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .whatsapp-float i { font-size: 1.6rem; }
}
