/* ==========================================================================
   DB E-CART (dbecart.com) - PREMIUM INDIAN QUICK COMMERCE DESIGN SYSTEM
   ========================================================================== */

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

:root {
  /* Brand Palette matching logo.jpeg */
  --primary: #04392a;
  --primary-light: #0a5c45;
  --primary-bright: #059669;
  --primary-dark: #022219;
  
  --accent-gold: #f59e0b;
  --accent-gold-light: #fbbf24;
  --accent-gold-dark: #d97706;
  
  --accent-mint: #10b981;
  --accent-mint-light: #a7f3d0;
  
  --accent-coral: #ef4444;
  --accent-coral-soft: #fef2f2;

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --bg-gradient: linear-gradient(135deg, #022219 0%, #04392a 50%, #064e3b 100%);
  --bg-soft: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.95);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(4, 57, 42, 0.12), 0 8px 10px -6px rgba(4, 57, 42, 0.05);
  --shadow-lg: 0 20px 35px -10px rgba(4, 57, 42, 0.18), 0 10px 15px -5px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.35);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-soft);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* Top Scroll Progress Line */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-mint), var(--accent-gold), var(--accent-coral));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Announcement Ticker Bar */
.top-ticker-bar {
  background: linear-gradient(90deg, #d97706, #f59e0b, #04392a, #f59e0b);
  background-size: 300% 100%;
  animation: gradientShift 8s ease infinite;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

.ticker-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker-item i {
  color: var(--accent-gold-light);
}

/* Header & Glass Navbar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(4, 57, 42, 0.08);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

.brand-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(4, 57, 42, 0.2);
  border: 2px solid var(--accent-gold);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-logo:hover img {
  transform: rotate(10deg) scale(1.08);
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
}

.brand-name span {
  color: var(--accent-gold);
}

/* Location Selector Pill (Indian Cities) */
.location-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(4, 57, 42, 0.06);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  border: 1px solid rgba(4, 57, 42, 0.12);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.location-selector:hover {
  background: rgba(4, 57, 42, 0.12);
  border-color: var(--primary);
}

.location-selector i.fa-location-dot {
  color: var(--accent-coral);
}

/* Search Preview Bar */
.header-search-bar {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  width: 260px;
  gap: 0.6rem;
  transition: var(--transition-normal);
}

.header-search-bar:focus-within {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(4, 57, 42, 0.15);
  width: 320px;
}

.header-search-bar input {
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--text-main);
  width: 100%;
}

.header-search-bar i {
  color: var(--text-muted);
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-mint), var(--accent-gold));
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Cart Button Badge */
.cart-header-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(4, 57, 42, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.cart-header-btn:hover {
  background: var(--primary);
  color: var(--accent-gold);
  transform: scale(1.08);
}

.cart-badge-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent-coral);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.express-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.25);
  animation: pulseLight 2s infinite;
}

.express-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-mint);
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(4, 57, 42, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(4, 57, 42, 0.35);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #04392a;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Toggle & Mobile Drawer (FIXED DESKTOP OVERFLOW BUG) */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
  cursor: pointer;
}

/* STRICT DEFAULT DISPLAY NONE OUTSIDE MEDIA QUERY TO PREVENT DESKTOP OVERLAP */
.mobile-menu-drawer {
  display: none;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background: var(--bg-gradient);
  color: #ffffff;
  padding: 5rem 0 7rem 0;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.glow-orb-1 {
  width: 450px;
  height: 450px;
  background: var(--accent-gold);
  top: -100px;
  right: -50px;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.glow-orb-2 {
  width: 350px;
  height: 350px;
  background: var(--accent-mint);
  bottom: -50px;
  left: -50px;
  animation: floatOrb 9s ease-in-out infinite alternate-reverse;
}

/* FLOATING SCROLL PARTICLES (VEGGIES & LEAVES) */
.floating-particle {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  font-size: 1.8rem;
  opacity: 0.6;
  animation: driftFloating 8s ease-in-out infinite alternate;
}

.p-1 { top: 15%; left: 5%; animation-delay: 0s; }
.p-2 { top: 60%; left: 8%; animation-delay: 2s; }
.p-3 { top: 25%; right: 8%; animation-delay: 1s; }
.p-4 { top: 75%; right: 12%; animation-delay: 3s; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--accent-gold-light);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.6rem;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
}

.hero-title span.text-highlight {
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

/* Offer Banner Pill */
.hero-offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(239, 68, 68, 0.18);
  border: 1px dashed rgba(239, 68, 68, 0.5);
  color: #fca5a5;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.hero-offer-pill code {
  background: var(--accent-coral);
  color: #ffffff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: monospace;
}

/* App Download Buttons Group */
.app-download-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  transition: var(--transition-normal);
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.store-btn i {
  font-size: 2rem;
  color: var(--accent-gold-light);
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-text .small-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.store-text .large-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
}

.qr-trigger-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
}

.qr-trigger-box i {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.qr-trigger-box p {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Floating Hero Image Showcase */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-img-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.15);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s ease;
}

.hero-main-img-wrap:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-main-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  animation: floating 6s ease-in-out infinite;
}

/* Floating Badge Overlays */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  color: var(--text-main);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: float 4s ease-in-out infinite alternate;
}

.badge-top-left {
  top: 5%;
  left: -8%;
}

.badge-bottom-right {
  bottom: 8%;
  right: -5%;
  animation-delay: 1.5s;
}

.floating-badge .badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-mint) 0%, var(--primary-light) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-badge .badge-icon.gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
}

.floating-badge .badge-info h5 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.1rem;
}

.floating-badge .badge-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* STATS COUNTER BAR */
.stats-bar-section {
  position: relative;
  z-index: 20;
  margin-top: -3rem;
}

.stats-container {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.2rem 2.5rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border: 1px solid rgba(4, 57, 42, 0.08);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(4, 57, 42, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition-normal);
}

.stat-item:hover .stat-icon {
  background: var(--primary);
  color: var(--accent-gold);
  transform: scale(1.1) rotate(6deg);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* SECTION TITLES */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(4, 57, 42, 0.08);
  color: var(--primary);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-main);
  letter-spacing: -0.5px;
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FEATURED PRODUCTS SHOWCASE WITH RUPEE PRICING */
.products-section {
  padding: 5rem 0;
  background-color: var(--bg-soft);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-mint);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-coral);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  z-index: 2;
}

.product-emoji-img {
  font-size: 3.5rem;
  text-align: center;
  margin: 1rem 0;
  transition: transform 0.3s ease;
}

.product-card:hover .product-emoji-img {
  transform: scale(1.15) rotate(-4deg);
}

.product-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.product-weight {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.price-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.mrp-tag {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 0.4rem;
}

.btn-add-cart {
  background: rgba(4, 57, 42, 0.08);
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-add-cart:hover,
.btn-add-cart.added {
  background: var(--primary);
  color: #ffffff;
}

/* CATEGORIES SHOWCASE */
.categories-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-mint), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon-box {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}

.category-card:hover .category-icon-box {
  transform: scale(1.15) rotate(-5deg);
}

.category-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.category-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.category-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-mint);
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 700;
}

.category-link i {
  transition: transform 0.3s ease;
}

.category-card:hover .category-link i {
  transform: translateX(5px);
}

/* APP SHOWCASE SECTION (ANDROID & IOS) */
.app-showcase-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #edf7f4 100%);
  position: relative;
  overflow: hidden;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-phone-preview {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame-container {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.phone-img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 30px 60px -15px rgba(4, 57, 42, 0.3);
  border: 8px solid #ffffff;
  transition: transform 0.5s ease;
}

.phone-frame-container:hover .phone-img {
  transform: scale(1.03) rotate(-1deg);
}

.live-tracking-chip {
  position: absolute;
  top: 15%;
  right: -10%;
  background: #ffffff;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  animation: float 5s ease-in-out infinite;
}

.rider-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.app-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.3s ease;
}

.app-feature-item.active,
.app-feature-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
  background: #ffffff;
}

.app-feature-item .feat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(4, 57, 42, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.app-feature-item.active .feat-icon {
  background: var(--primary);
  color: var(--accent-gold);
}

.app-feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: var(--primary);
}

.app-feature-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* INTERACTIVE SAVINGS & ESTIMATOR CALCULATOR */
.estimator-section {
  padding: 6rem 0;
  background: var(--primary-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.estimator-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.item-selector-group h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.item-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.item-pill-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.item-pill-btn.selected {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
  font-weight: 800;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

.estimator-results {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.result-time-display {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-savings-display {
  font-size: 1.4rem;
  color: var(--accent-mint-light);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* WHY CHOOSE US / FEATURES */
.features-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.feature-box {
  text-align: center;
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-normal);
}

.feature-box:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(4, 57, 42, 0.1) 0%, rgba(16, 185, 129, 0.15) 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform 0.4s ease;
}

.feature-box:hover .feature-icon-wrapper {
  transform: scale(1.15) rotate(8deg);
  background: var(--primary);
  color: var(--accent-gold);
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--primary);
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* REVIEWS & TESTIMONIALS */
.reviews-section {
  padding: 6rem 0;
  background: var(--bg-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.reviewer-details h5 {
  font-size: 0.95rem;
  color: var(--primary);
}

.reviewer-details p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* FAQ ACCORDION */
.faq-section {
  padding: 6rem 0;
  background: #ffffff;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.6rem;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: var(--accent-gold-dark);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: var(--bg-soft);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 1.2rem 1.6rem 1.5rem 1.6rem;
}

/* CTA BANNER SECTION */
.cta-banner-section {
  padding: 5rem 0;
  background: var(--bg-gradient);
  color: #ffffff;
  position: relative;
  text-align: center;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.cta-box p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.2rem;
}

/* FOOTER */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

/* LIVE ORDER TOAST NOTIFICATION */
.live-toast-container {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
}

.order-toast {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(4, 57, 42, 0.12);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.order-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-mint);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.toast-content h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.toast-content p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* MOBILE STICKY CTA BAR FOR APP DOWNLOAD */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.15);
  z-index: 9998;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-cta-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-cta-info img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.mobile-cta-info h6 {
  font-size: 0.9rem;
  color: var(--primary);
}

.mobile-cta-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* KEYFRAME ANIMATIONS */
@keyframes floating {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

@keyframes floatOrb {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 30px); }
}

@keyframes driftFloating {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-30px) rotate(20deg); }
}

@keyframes pulseLight {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* SCROLL REVEAL UTILITY CLASSES */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE DESIGN & MOBILE DRAWER CORRECTION */
@media (max-width: 1024px) {
  .header-search-bar {
    display: none;
  }

  .hero-grid, .app-grid, .estimator-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .app-download-group {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

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

  .stat-item {
    border-right: none;
  }

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

@media (max-width: 768px) {
  .nav-links, .express-badge, .location-selector {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  /* MOBILE DRAWER ONLY VISIBLE ON MOBILE WHEN OPEN */
  .mobile-menu-drawer {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 1.2rem;
    z-index: 999;
    border-bottom: 2px solid var(--accent-gold);
  }

  .mobile-menu-drawer.open {
    display: flex;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .estimator-card {
    padding: 1.8rem;
  }

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