/* ============================================
   SHIVANYA SABJI BHANDAR — STYLES
   Palette: Forest Green + Saffron Orange + Cream
   Fonts: Baloo 2 (display) + Hind (body)
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --green-dark:   #1B5E20;
  --green-mid:    #2E7D32;
  --green-bright: #4CAF50;
  --green-light:  #A5D6A7;
  --green-pale:   #E8F5E9;

  --orange-dark:  #BF360C;
  --orange-mid:   #E65100;
  --orange-bright:#FF6D00;
  --orange-light: #FFAB76;
  --orange-pale:  #FFF3E0;

  --cream:        #FFF8E7;
  --cream-dark:   #F5EDD6;
  --brown-text:   #3E2723;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #777777;
  --white:        #FFFFFF;

  --shadow-sm:    0 2px 8px rgba(27,94,32,0.10);
  --shadow-md:    0 6px 24px rgba(27,94,32,0.14);
  --shadow-lg:    0 16px 48px rgba(27,94,32,0.18);
  --shadow-orange:0 6px 24px rgba(230,81,0,0.22);

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;

  --transition:   all 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: 'Hind', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-pale); }
::-webkit-scrollbar-thumb { background: var(--green-bright); border-radius: 3px; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  animation: floatPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.70); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,248,231,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--green-light);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,248,231,0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
  animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50%       { transform: rotate(5deg); }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green-dark);
}

.logo-sub {
  font-family: 'Hind', sans-serif;
  font-size: 0.75rem;
  color: var(--orange-mid);
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

.nav-link {
  font-family: 'Hind', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 2px;
  background: var(--green-bright);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--green-dark);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 50px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--orange-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  margin-top: 70px;
  background: var(--green-dark);
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 3px solid var(--orange-mid);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--cream) 50%, var(--orange-pale) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(76,175,80,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,109,0,0.08) 0%, transparent 50%),
    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='%234CAF50' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

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

.hero {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 80px max(24px, calc((100% - 1200px)/2));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-family: 'Baloo 2', sans-serif;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.title-hindi {
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--green-dark);
  text-shadow: 3px 3px 0 rgba(27,94,32,0.12);
}

.title-english {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--orange-mid);
  letter-spacing: 1px;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-tagline strong { color: var(--green-dark); }

.hero-timing {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--green-light);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.7s ease 0.3s both;
}

.timing-icon { font-size: 1.3rem; }
.hero-timing strong { color: var(--green-dark); }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--orange-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

.btn-primary.large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-dark);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--green-bright);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--green-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.veggie-circle {
  position: relative;
  width: 320px;
  height: 320px;
}

.veggie-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.veggie-center p {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  margin-top: 2px;
}

.veggie-orbit {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 2px dashed rgba(76,175,80,0.3);
}

.orbit-1 {
  width: 180px; height: 180px;
  margin: -90px 0 0 -90px;
  animation: orbitSpin 8s linear infinite;
}

.orbit-2 {
  width: 240px; height: 240px;
  margin: -120px 0 0 -120px;
  animation: orbitSpin 12s linear infinite reverse;
}

.orbit-3 {
  width: 310px; height: 310px;
  margin: -155px 0 0 -155px;
  animation: orbitSpin 16s linear infinite;
}

.veggie-item {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--green-dark);
  padding: 40px 24px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.feature-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.feature-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

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

.section-badge {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange-dark);
  border: 1.5px solid var(--orange-light);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

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

.section-subtitle a {
  color: var(--orange-mid);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== VEGETABLES SECTION ===== */
.vegetables-section {
  padding: 80px 24px;
  background: var(--cream);
  max-width: 100%;
}

.vegetables-section > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-mid);
  background: var(--white);
  border: 2px solid var(--green-light);
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--green-bright);
  color: var(--green-dark);
}

.tab-btn.active {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
  box-shadow: var(--shadow-md);
}

/* Price Grid */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--green-bright);
  border-radius: 4px 0 0 4px;
}

.price-card:hover {
  border-color: var(--green-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.phal-card::before { background: var(--orange-bright); }
.wholesale-card::before { background: var(--orange-dark); }

.item-emoji {
  font-size: 2.2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.item-info { flex: 1; }

.item-info h4 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.item-hindi {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
}

.item-unit {
  font-size: 0.78rem;
  color: var(--text-light);
}

.item-price {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  white-space: nowrap;
}

.wholesale-price {
  font-size: 0.85rem;
  color: var(--orange-dark);
  background: var(--orange-pale);
  padding: 4px 10px;
  border-radius: 50px;
  text-align: center;
}

.price-note {
  text-align: center;
  background: var(--orange-pale);
  border: 1.5px solid var(--orange-light);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  font-size: 0.9rem;
  color: var(--orange-dark);
  max-width: 1200px;
  margin: 0 auto;
}

.price-note a {
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration: underline;
}

/* Hidden cards */
.price-card.hidden {
  display: none;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--cream) 100%);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about-badge-big {
  font-size: 6rem;
  animation: bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(27,94,32,0.2));
}

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

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.stat-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--green-light);
  transition: var(--transition);
}

.stat-box:hover {
  border-color: var(--green-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-num {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.3;
}

.about-content .section-badge { margin-bottom: 12px; }

.about-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text strong { color: var(--green-dark); }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 500;
  padding: 8px 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--green-light);
}

.highlight-item span { font-size: 1rem; }

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 24px;
  background: var(--cream-dark);
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--green-light);
  transition: var(--transition);
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-bright);
}

.highlight-card {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.highlight-card h3,
.highlight-card p { color: var(--white) !important; }

.contact-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-link {
  color: var(--orange-mid);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: var(--transition);
}

.contact-link:hover { color: var(--orange-dark); }

.phone-number {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: var(--white) !important;
  margin-bottom: 20px !important;
}

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-dark);
  padding: 12px 20px;
  border-radius: 50px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-call:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.timing-display {
  text-align: left;
}

.timing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--green-light);
  margin-bottom: 12px;
}

.day {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.time {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.95rem;
}

.timing-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8F5E9;
  color: var(--green-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Map */
.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--green-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange-mid) 0%, var(--orange-dark) 100%);
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '🥦🍅🥕🧅🥔🍋';
  position: absolute;
  font-size: 8rem;
  opacity: 0.06;
  top: -20px; left: -20px;
  letter-spacing: 20px;
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--orange-dark);
  font-size: 1.1rem;
  padding: 16px 36px;
}

.cta-banner .btn-primary:hover {
  background: var(--cream);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-dark);
  padding: 48px 24px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-brand .logo-icon { font-size: 2.5rem; }

.footer-brand .logo-main {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-badge-big { font-size: 4rem; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-visual { display: none; }

  .hero-actions { justify-content: center; }

  .hero-timing { justify-content: center; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 2px solid var(--green-light);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }

  .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-cta { margin: 8px 0 0; text-align: center; border-radius: var(--radius-sm); }

  .hamburger { display: flex; }

  .features-container {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .features-container {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

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

  .category-tabs {
    gap: 8px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}