/* ==============================
   NIYAMIT.IN — style.css
   ============================== */

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

:root {
  --green-1: #1a6b3a;
  --green-2: #22883d;
  --green-3: #2db54e;
  --green-4: #00ff40;
  --green-light: #d4f5dd;
  --orange-1: #e85c1a;
  --orange-2: #ff7a35;
  --yellow-1: #f5c518;
  --dark-1: #0d1f14;
  --dark-2: #122a1c;
  --dark-3: #1b3d28;
  --white: #ffffff;
  --gray-1: #f8fdf9;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --font-display: 'Baloo 2', cursive;
  --font-body: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: #619662;
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

.highlight {
  color: var(--green-3);
}

/* ── Loader ── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark-1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: loaderPulse 1s ease infinite alternate;
}

.loader-leaf {
  font-size: 48px;
}

.loader-text {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--green-3);
  letter-spacing: 4px;
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: var(--dark-3);
  border-radius: 4px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-3), var(--orange-2));
  border-radius: 4px;
  animation: loaderBar 1.8s ease forwards;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgb(0, 0, 0);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 181, 78, 0.15);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(13, 31, 20, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* .nav-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; } */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-image {
  width: 122px;
  height: 122px;
  object-fit: contain;
}

.logo-icon {
  font-size: 24px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-dot {
  color: var(--green-3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-3);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.nav-cta {
  background: var(--green-3);
  color: var(--dark-1);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-link.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 181, 78, 0.4);
}

.nav-link.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
  margin-top: 10px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
  background: radial-gradient(ellipse at 30% 50%, rgba(26, 107, 58, 0.3) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(45, 181, 78, 0.15) 0%, transparent 50%), var(--dark-1);
  gap: 60px;
}

.hero-bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-veg {
  position: absolute;
  font-size: 32px;
  opacity: 0.12;
  animation: floatVeg 8s ease-in-out infinite;
  filter: blur(1px);
}

.fv1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  font-size: 40px;
}

.fv2 {
  top: 20%;
  left: 90%;
  animation-delay: 1s;
  font-size: 28px;
}

.fv3 {
  top: 60%;
  left: 8%;
  animation-delay: 2s;
  font-size: 36px;
}

.fv4 {
  top: 75%;
  left: 85%;
  animation-delay: 0.5s;
  font-size: 32px;
}

.fv5 {
  top: 40%;
  left: 50%;
  animation-delay: 3s;
  font-size: 22px;
}

.fv6 {
  top: 85%;
  left: 30%;
  animation-delay: 1.5s;
  font-size: 30px;
}

.fv7 {
  top: 5%;
  left: 60%;
  animation-delay: 2.5s;
  font-size: 26px;
}

.fv8 {
  top: 50%;
  left: 95%;
  animation-delay: 4s;
  font-size: 28px;
}

.hero-content {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a020266;
  border: 1px solid rgba(45, 181, 78, 0.3);
  color: var(--green-3);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  line-height: 1.7;
}

.promo-banner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #e85c1a1c, #ff7a3500);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgb(232 92 26 / 26%);
}

.promo-pulse {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  animation: promoPulse 2s ease-in-out infinite;
}

.promo-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  position: relative;
}

.promo-code {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
}

.app-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-app {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.btn-app:hover {
  transform: translateY(-3px);
}

.btn-apple {
  background: var(--dark-3);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-apple:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-google {
  background: var(--white);
  color: var(--dark-1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-google:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-icon {
  font-size: 22px;
  line-height: 1;
}

.btn-text {
  display: flex;
  flex-direction: column;
}

.btn-text small {
  font-size: 10px;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

.btn-text strong {
  font-size: 16px;
  font-weight: 700;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.phone-mockup {
  position: relative;
  width: 280px;
}

.phone-frame {
  background: var(--dark-2);
  border-radius: 36px;
  border: 2.5px solid rgba(45, 181, 78, 0.3);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(45, 181, 78, 0.05);
  position: relative;
  z-index: 2;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  z-index: 3;
}

.phone-screen {
  padding: 30px 16px 20px;
}

.app-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 0;
}

.app-logo-sm {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.app-tagline-sm {
  font-size: 8px;
  color: var(--green-3);
  letter-spacing: 2px;
}

.app-img-placeholder {
  background: linear-gradient(135deg, var(--dark-3), rgba(45, 181, 78, 0.2));
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(45, 181, 78, 0.2);
}

.veggie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
  font-size: 28px;
}

.app-promo-sm {
  background: linear-gradient(135deg, var(--orange-1), var(--orange-2));
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.app-promo-sm strong {
  font-size: 14px;
  color: var(--white);
}

/* .app-btns-sm {
  display: flex;
  flex-direction: column;
  gap: 6px;
} */


.app-btns-sm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.app-btns-sm a {
  display: block;
}

.app-btns-sm img {
  width: 142px;
  height: auto;
  display: block;
}

.app-btn-sm {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.phone-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(45, 181, 78, 0.4), transparent);
  filter: blur(20px);
  z-index: 1;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 1px;
  animation: fadeInOut 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease infinite;
}

/* ── Marquee ── */
.marquee-strip {
  background: linear-gradient(90deg, var(--green-2), var(--green-1));
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

/* ── Section Commons ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-3);
  background: rgba(45, 181, 78, 0.12);
  border: 1px solid rgba(45, 181, 78, 0.25);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Features ── */
.features {
  padding: 100px 0;
  background: var(--dark-2);
}

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

.feature-card {
  background: linear-gradient(135deg, var(--dark-3), rgba(45, 181, 78, 0.05));
  border: 1px solid rgba(45, 181, 78, 0.15);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(45, 181, 78, 0.15);
  border-color: rgba(45, 181, 78, 0.4);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(45, 181, 78, 0.06), transparent);
  transition: left 0.6s ease;
}

.feature-card:hover .card-shine {
  left: 100%;
}

/* ── How It Works ── */
.how-it-works {
  padding: 100px 0;
  background: var(--dark-1);
}

.steps-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 240px;
}

.step-icon-wrap {
  position: relative;
  margin-bottom: 20px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--dark-3);
  border: 2px solid rgba(45, 181, 78, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto;
  transition: border-color 0.3s, transform 0.3s;
}

.step-item:hover .step-icon {
  border-color: var(--green-3);
  transform: scale(1.1);
}

.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--green-3);
  color: var(--dark-1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.step-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(45, 181, 78, 0.4), rgba(45, 181, 78, 0.1));
  margin-top: 38px;
  max-width: 60px;
  position: relative;
}

.step-connector::after {
  content: '→';
  position: absolute;
  top: -10px;
  right: -4px;
  color: var(--green-3);
  font-size: 16px;
}

/* ── Stats ── */
.stats-section {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.stats-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(45, 181, 78, 0.1), transparent);
  pointer-events: none;
}

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

.stat-card {
  background: var(--dark-3);
  border: 1px solid rgba(45, 181, 78, 0.15);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(45, 181, 78, 0.15);
}

.stat-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--green-3);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--orange-2);
  display: inline;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}

/* ── Download CTA ── */
.download-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-1), var(--dark-3));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-veg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 80px;
  opacity: 0.05;
  pointer-events: none;
}

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

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}

.promo-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 92, 26, 0.15);
  border: 1px solid rgba(232, 92, 26, 0.3);
  color: var(--orange-2);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.cta-content .app-buttons {
  justify-content: center;
}

/* ── Footer ── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(45, 181, 78, 0.12);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid rgba(45, 181, 78, 0.2);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--green-3);
  color: var(--dark-1);
  transform: translateY(-2px);
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-links-col a:hover {
  color: var(--green-3);
}

.footer-contact-col p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact-col a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-contact-col a:hover {
  color: var(--green-3);
}

.footer-apps {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-app-badge {
  background: var(--dark-3);
  border: 1px solid rgba(45, 181, 78, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.2s;
}

.footer-app-badge:hover {
  background: var(--green-3);
  color: var(--dark-1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── WhatsApp ── */
.whatsapp-btn {
  position: fixed;
  top: 50%;
  right: 28px;bottom: auto;
  /* ✅ move to right bottom */
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 50px;
  /* box-shadow: 0 6px 24px rgba(37,211,102,0.4); */
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  animation: waPulse 3s ease infinite;
}

/* .whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37,211,102,0.5); } */
.whatsapp-btn:hover {
  transform: translateY(-3px);
}

.wa-icon {
  font-size: 20px;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-3);
  color: var(--dark-1);
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(45, 181, 78, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(45, 181, 78, 0.5);
}

/* ── Reveal Animations ── */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-card {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-card {
  transform: translateY(30px) scale(0.96);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-card.visible {
  opacity: 1;
  transform: none;
}

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

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

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark-2);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-bottom: 1px solid rgba(45, 181, 78, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

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

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }

  .nav-link.nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .nav-link::after {
    display: none;
  }

  .hero {
    flex-direction: column;
    gap: 50px;
    text-align: center;
    padding: 100px 24px 80px;
  }

  .hero-content {
    max-width: 100%;
  }

  .app-buttons {
    justify-content: center;
  }

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

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

  .steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .step-connector {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(45, 181, 78, 0.4), rgba(45, 181, 78, 0.1));
    margin-top: 0;
    max-width: 2px;
  }

  .step-connector::after {
    content: '↓';
    top: auto;
    bottom: -14px;
    right: -8px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-btn {
    padding: 14px;
    border-radius: 2px;
  }
}

@media (max-width: 480px) {
  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-app {
    width: 220px;
    justify-content: center;
  }

  .promo-banner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}


.nav-tagline {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  top: 8px;
  /* 2–6px adjust karo */
}


.floating-store-badges {
  position: fixed;
  left: auto;
  bottom: 185px;
  right: 20px;
  /* WhatsApp button ke upar */

  z-index: 999;

  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #0a020266;  
  border: 1px solid rgba(45, 181, 78, 0.3);
  border-radius: 8px;
  padding: 8px 0px;
}



  /* display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a020266;
  border: 1px solid rgba(45, 181, 78, 0.3);
  color: var(--green-3);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  margin-bottom: 20px; */

.floating-store-badges a {
  display: block;

  transition: transform .25s ease;
}

.floating-store-badges a:hover {
  transform: translateY(-3px);
}

.floating-store-badges img {
  width: 160px;
  display: block;

  filter:
    drop-shadow(0 8px 24px rgba(0, 0, 0, .25));
}

@media (max-width:768px) {
  .floating-store-badges {
    left: auto;
    right: 12px;
    bottom: 185px;
  }

  .floating-store-badges img {
    width: 130px;
  }
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* WhatsApp icon styling */
.wa-icon img {
  width: 22px;
  height: 22px;
  display: block;
}

/* label styling (optional polish) */
.wa-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* mobile pe text hide (optional but recommended) */
@media (max-width: 768px) {


  .whatsapp-btn {
    padding: 14px;
    border-radius: 50%;
  }
}

.back-to-top {
  display: none !important;
}

.whatsapp-btn img {
  width: 156px;
  /* size control */
  height: auto;
  display: block;
}

.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: transparent;
  padding: 0;
  box-shadow: none;
}



.logo-icon img {
  width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
}


/* ===== Bottom Saving Fixed Bar ===== */

.bottom-saving-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1200;

  background:#4eb04c;

  padding: 12px 20px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;

  color: #000000;
  font-size: 14px;
  font-weight: 600;

  box-shadow:
    0 -8px 25px rgba(0,0,0,0.35);

  border-top: 1px solid rgba(255,255,255,0.08);
}


.promo-highlight {
  background: linear-gradient(
    135deg,
    #ff9f43,
    #ff6b00
  );

  color: #fff;

  padding: 5px 14px;
  border-radius: 30px;

  font-weight: 800;
  letter-spacing: .4px;

  box-shadow:
    0 0 15px rgba(255,140,0,0.45);
}


/* mobile */
@media(max-width:768px){

  .bottom-saving-bar{
    flex-direction: column;
    gap: 4px;
    text-align:center;
    padding:10px;
    font-size:13px;
  }

}

.whatsapp-btn {
  position: fixed;
  right: 28px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);

  z-index: 1200;

  background: transparent;
  padding: 0;
  box-shadow: none;

  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn:hover {
  transform: translateY(-50%) scale(1.05);
}

.whatsapp-btn img {
  width: 192px;
  height: auto;
  display: block;
}


/* Mobile */
@media(max-width:768px){

  .whatsapp-btn {
    right: 12px;
    top: 50%;
    bottom: auto; /* bottom saving bar ke upar */
    transform: none;
  }

  .whatsapp-btn:hover {
    transform: scale(1.05);
  }

  .whatsapp-btn img {
    width: 142px;
    border-color: #e85c1a;
  }

}


/* Fresh Guarantee Badge */

.fresh-badge{
  background: transparent;
  padding: 0;
  margin-bottom: 28px;
  box-shadow: none;
  overflow: visible;
}


.fresh-badge img{
  width: 170px;
  height: auto;
  display: block;

  filter:
    drop-shadow(0 12px 25px rgba(45,181,78,.35));

  animation: badgeFloat 3s ease-in-out infinite;
}


@keyframes badgeFloat{

  0%,100%{
    transform: translateY(0);
  }

  50%{
    transform: translateY(-8px);
  }

}


/* Mobile */

@media(max-width:768px){

  .fresh-badge img{
    width:140px;
    margin:auto;
  }

}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  padding: 120px 48px 80px;
  gap: 60px;

  background:
    linear-gradient(
      rgba(13,31,20,0.05),
      rgba(13,31,20,0.05)
    ),
    url("../images/hero-bg.png");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}


/* Mobile Hero Background */
@media(max-width:768px){

  .hero {

    background:
      linear-gradient(
        rgba(13,31,20,0.08),
        rgba(13,31,20,0.08)
      ),
      url("../images/hero-bg-mobile.png");

    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    flex-direction: column;
    gap: 50px;
    text-align: center;
    padding: 100px 24px 80px;
  }

}