@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --yellow: #f6dd13;
  --green: #2d7e46;
  --green-dark: #1f5c32;
  --white: #fdfdfd;
  --black: #000000;
  --gray-50: #f8f8f8;
  --gray-100: #f0f0f0;
  --gray-200: #e4e4e4;
  --gray-600: #6b6b6b;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.16);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --primary-color: var(--green);
  --bg-secondary: var(--gray-50);
}

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

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

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility ───────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 28px; height: 3px;
  background: var(--yellow);
  border-radius: 4px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: .95rem;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-swiggy {
  background: #FC8019;
  color: #fff;
  box-shadow: 0 4px 20px rgba(252,128,25,.35);
}
.btn-swiggy:hover {
  background: #e57316;
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 28px rgba(252,128,25,.45);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(45,126,70,.35);
}
.btn-whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,126,70,.45);
}

.btn-zomato {
  background: #E23744;
  color: #fff;
  box-shadow: 0 4px 20px rgba(226,55,68,.35);
}
.btn-zomato:hover {
  background: #cb313d;
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 28px rgba(226,55,68,.5);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.order-trust-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.order-tap-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  margin-top: 16px;
}
.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* ── Header ────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(253,253,253,.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
}
.header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green);
}
.logo-img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--green);
  color: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
}
.nav a:hover { color: var(--green); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: var(--transition);
  border-radius: 2px;
}
.nav a:hover::after { width: 100%; }

.header .btn { padding: 10px 24px; font-size: .85rem; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  padding: 150px 0 80px;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(246,221,19,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,126,70,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,126,70,.08);
  color: var(--green);
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--green);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%;
  height: 10px;
  background: var(--yellow);
  opacity: .45;
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
}
.hero-stat span {
  font-size: .82rem;
  color: var(--gray-600);
  font-weight: 500;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  overflow: visible;
  padding: 20px 0;
}
.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: var(--transition);
  animation: floatUp 6s ease-in-out infinite;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-image .decoration {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: var(--radius-md);
  z-index: -1;
}
.hero-image .decoration-2 {
  bottom: 0; left: 0;
  background: var(--green);
  opacity: .2;
  animation: floatUp 7s ease-in-out infinite 1s;
}

/* ── About ─────────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--gray-50);
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-visual .accent-box {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 140px; height: 140px;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .5;
}
.about-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1.02rem;
}
.about-content p strong {
  color: var(--black);
  font-weight: 700;
}

.about-checklist {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: .95rem;
}
.about-checklist li .check {
  width: 28px; height: 28px;
  background: rgba(45,126,70,.1);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
}

/* ── Why Choose ────────────────────────────────────────── */
.why {
  padding: 100px 0;
  text-align: center;
}
.why .section-subtitle { margin: 0 auto 56px; }

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

.why-card {
  padding: 40px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-card:hover::before { opacity: 1; }

.why-card .icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  background: rgba(45,126,70,.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
}
.why-card:hover .icon {
  background: var(--green);
  transform: scale(1.08);
}
.why-card:hover .icon svg { color: var(--yellow); }

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Audience ──────────────────────────────────────────── */
.audience {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0faf3 0%, #fefde6 100%);
}
.audience .section-subtitle { margin-bottom: 56px; }

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

.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.audience-card .emoji {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}
.audience-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.audience-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── Showcase ──────────────────────────────────────────── */
.showcase {
  padding: 100px 0;
  text-align: center;
}
.showcase .section-subtitle { margin: 0 auto 56px; }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.showcase-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.showcase-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.showcase-item:hover img { transform: scale(1.08); }

.showcase-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.showcase-item:hover .overlay { opacity: 1; }
.showcase-item .overlay span {
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
}

/* ── Trust ─────────────────────────────────────────────── */
.trust {
  padding: 80px 0;
  background: var(--gray-50);
  text-align: center;
}
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
}
.trust-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.trust-badge .logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.trust-badge .logo-dot.orange { background: #fc8019; }
.trust-badge .logo-dot.red { background: #e23744; }

/* ── Final CTA ─────────────────────────────────────────── */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--green);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(246,221,19,.15) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta .section-title { color: #fff; }
.final-cta .section-subtitle {
  color: rgba(255,255,255,.8);
  margin: 0 auto 40px;
}

/* Removed final CTA button overrides to maintain brand colors */

/* ── Lead Capture Form ─────────────────────────────────── */
.lead-capture {
  padding: 100px 0;
  background: linear-gradient(160deg, #f0faf3 0%, #fefde6 50%, var(--gray-50) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lead-capture::before {
  content: '';
  position: absolute;
  top: -30%; left: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,126,70,.06) 0%, transparent 70%);
  pointer-events: none;
}
.lead-capture::after {
  content: '';
  position: absolute;
  bottom: -25%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(246,221,19,.08) 0%, transparent 70%);
  pointer-events: none;
}

.lead-capture-content {
  margin-bottom: 48px;
}
.lead-capture .section-subtitle {
  margin: 0 auto;
}

.lead-form-wrapper {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(45,126,70,.08);
  position: relative;
  z-index: 1;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  text-align: left;
}
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap i {
  position: absolute;
  left: 16px;
  font-size: 1.15rem;
  color: var(--gray-600);
  transition: var(--transition);
  pointer-events: none;
}
.input-wrap input {
  width: 100%;
  padding: 15px 18px 15px 48px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--black);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition);
}
.input-wrap input::placeholder {
  color: #b0b0b0;
  font-weight: 400;
}
.input-wrap input:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(45,126,70,.08);
}
.input-wrap input:focus + i,
.input-wrap input:focus ~ i {
  color: var(--green);
}
/* Re-target: icon is before input, so use :has */
.input-wrap:has(input:focus) i {
  color: var(--green);
}

/* Validation error state */
.form-group.error .input-wrap input {
  border-color: #e74c3c;
  background: #fff5f5;
}
.form-group.error .input-wrap i {
  color: #e74c3c;
}
.form-group .error-msg {
  display: none;
  font-size: .78rem;
  color: #e74c3c;
  margin-top: 6px;
  font-weight: 500;
}
.form-group.error .error-msg {
  display: block;
}

/* CTA Button */
.btn-claim {
  width: 100%;
  justify-content: center;
  background: var(--green);
  color: #fff;
  padding: 17px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 24px rgba(45,126,70,.3);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.btn-claim::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .5s ease;
}
.btn-claim:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(45,126,70,.4);
}
.btn-claim:hover::before {
  left: 100%;
}
.btn-claim:active {
  transform: translateY(0);
}

/* Trust note */
.form-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: .78rem;
  color: var(--gray-600);
  font-weight: 500;
}
.form-trust-note i {
  font-size: .95rem;
  color: var(--green);
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  padding: 48px 0;
  background: var(--black);
  color: rgba(255,255,255,.5);
  text-align: center;
  font-size: .85rem;
}
.footer .logo { justify-content: center; margin-bottom: 16px; color: #fff; }
.footer .logo-icon { background: var(--green); }

/* ── Sticky Mobile CTA ─────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(253,253,253,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.sticky-cta .btn-group { justify-content: center; }
.sticky-cta .btn { padding: 12px 22px; font-size: .82rem; flex: 1; justify-content: center; }

/* ── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(253, 253, 253, 0.98);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }
  .mobile-toggle { display: flex; }

  .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-stats { justify-content: center; }
  .btn-group { justify-content: center; }

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

@media (max-width: 640px) {
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 24px; }
  .hero-stat strong { font-size: 1.3rem; }

  .about, .why, .audience, .showcase, .trust, .final-cta, .lead-capture { padding: 70px 0; }

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

  .btn { padding: 13px 24px; font-size: .88rem; }
  .lead-form-wrapper { padding: 32px 22px 28px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }

  .header .btn { display: none; }

  .order-buttons {
    flex-direction: column;
    width: 100%;
  }
  .order-buttons .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .sticky-cta .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .sticky-cta .btn {
    width: 100%;
    min-height: 48px;
  }
}
