/* ============================
   FOODZIPPY — PREMIUM IMAGE THEME
   Design System + Components
   ============================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --color-bg: #ffffff;
  --color-bg-secondary: #fdfdfd;
  --color-bg-card: #ffffff;
  --color-bg-glass: rgba(255, 255, 255, 0.7);
  --color-border: rgba(0, 0, 0, 0.06);
  --color-text: #1a1a1a;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;

  --color-red: #10b981;        /* Changed to Green */
  --color-orange: #ffd13b;     /* Changed to Light Mustard */
  --color-gold: #ffe066;       /* Warm Yellow/Mustard */
  --color-green: #10b981;      /* Theme Green */

  --gradient-brand: linear-gradient(135deg, #10b981 0%, #ffd13b 100%); /* Green to Light Mustard */
  --gradient-subtle: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(255, 209, 59, 0.05) 100%);
  --gradient-glow: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 10px 40px rgba(16, 185, 129, 0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 100px;

  /* ===== FONT SYSTEM ===== */
  --font-heading: 'Century Gothic', 'Trebuchet MS', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-thin: 'Montserrat', sans-serif;
  --font-calligraphy: 'Great Vibes', cursive;
  --font-roboto: 'Roboto', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-okra: 'Lexend Deca', sans-serif;       /* Okra-style semi-bold */
  --font-anton: 'Anton', sans-serif;             /* Caption bold */
  --font-bitcoin: 'Courier New', monospace;      /* Grid/mono style */
  --font-lexend: 'Lexend Deca', sans-serif;
  --font-petemoss: 'Petemoss', cursive;          /* Stylish */
  --font-alex-brush: 'Alex Brush', cursive;      /* Stylish */
  --font-parisienne: 'Parisienne', cursive;      /* Stylish */
  --font-ambassador: 'Lexend Deca', sans-serif;  /* Ambassador = Lexend Deca bold */

  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --transition-fast: 0.15s cubic-bezier(0.2, 0, 0.2, 1);
  --transition-base: 0.25s cubic-bezier(0.2, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

/* 120Hz Scroll Optimization */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  will-change: auto;
}

.smooth-scroll {
  will-change: transform;
}

/* ---------- THEME HYBRIDS ---------- */
.theme-premium {
  --color-bg: #0b0c10;
  --color-text: #ffffff;
  --color-text-secondary: #c5c6c7;
  --color-border: rgba(255, 215, 0, 0.1);
  --color-gold-text: #f7c150;
  background: var(--color-bg);
  color: var(--color-text);
}

.theme-budget {
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-orange: #ff6b35;
  --color-red: #ff4d4d;
  background: var(--color-bg);
  color: var(--color-text);
}

.font-thin-wide {
  font-family: var(--font-thin);
  font-weight: 100;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.font-calligraphy {
  font-family: var(--font-calligraphy);
  font-size: 1.5em;
}

.font-bold-rounded {
  font-weight: 800;
  border-radius: 50px;
}

/* ===== NEW FONT UTILITY CLASSES ===== */
.font-ambassador {
  font-family: var(--font-ambassador);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.font-okra {
  font-family: var(--font-okra);
  font-weight: 600;
}

.font-anton {
  font-family: var(--font-anton);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.font-petemoss {
  font-family: var(--font-petemoss);
  font-size: 1.4em;
}

.font-alex-brush {
  font-family: var(--font-alex-brush);
  font-size: 1.3em;
}

.font-parisienne {
  font-family: var(--font-parisienne);
  font-size: 1.3em;
}

.font-lexend {
  font-family: var(--font-lexend);
  font-weight: 600;
}

/* ===== GLASS EFFECTS ===== */
.glass-white {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.glass-white-strong {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: bold !important;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-orange);
  margin-bottom: var(--space-sm);
  padding: 6px 16px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius-full);
  background: rgba(255, 107, 53, 0.08);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.section-desc.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  overflow: hidden;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

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

.btn-outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: rgba(255, 107, 53, 0.05);
  transform: translateY(-2px);
}

.btn-glow {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.btn-glow:hover {
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
  transform: translateY(-2px);
}

.btn-login-green {
  background: #3c6e08 !important; /* Solid Olive Green (#3c6e08) */
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(60, 110, 8, 0.3) !important;
  border: none !important;
}
.btn-login-green:hover {
  background: #2b4e05 !important; /* Darker olive green on hover */
  box-shadow: 0 6px 20px rgba(60, 110, 8, 0.45) !important;
  transform: translateY(-1px) !important;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-glass {
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  padding: 10px 30px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-orange);
  transform: translateY(-3px);
}

/* ---------- GLASS CARD ---------- */
.glass-card {
  background: var(--color-bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

/* ---------- PRELOADER / LOGO INTRO ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #06060b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

#preloader.hidden {
  opacity: 0;
  transform: scale(1.15);
  visibility: hidden;
  pointer-events: none;
}

/* Particles */
.intro-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.intro-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0;
  animation: particleFloat 3s ease-in-out infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  30% { opacity: 0.8; transform: translateY(-40px) scale(1); }
  100% { opacity: 0; transform: translateY(-120px) scale(0.3); }
}

/* Glowing rings */
.intro-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  z-index: 1;
}
.ring-1 {
  width: 250px; height: 250px;
  border-color: rgba(255, 107, 53, 0.15);
  animation: ringPulse 2.5s ease-in-out infinite, ringSpin 12s linear infinite;
}
.ring-2 {
  width: 350px; height: 350px;
  border-color: rgba(247, 193, 80, 0.1);
  animation: ringPulse 3s ease-in-out infinite 0.5s, ringSpin 18s linear infinite reverse;
}
.ring-3 {
  width: 450px; height: 450px;
  border-color: rgba(255, 77, 77, 0.06);
  animation: ringPulse 3.5s ease-in-out infinite 1s, ringSpin 25s linear infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.08); opacity: 0.7; }
}
@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Preloader inner content */
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  position: relative;
}

.preloader-logo {
  width: 160px;
  height: auto;
  opacity: 0;
  transform: scale(0.3) rotate(-15deg);
  animation: logoReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  filter: drop-shadow(0 0 30px rgba(247, 193, 80, 0.4));
}

@keyframes logoReveal {
  0% { opacity: 0; transform: scale(0.3) rotate(-15deg); filter: drop-shadow(0 0 0 transparent); }
  60% { opacity: 1; transform: scale(1.1) rotate(3deg); filter: drop-shadow(0 0 40px rgba(247, 193, 80, 0.6)); }
  80% { transform: scale(0.95) rotate(-1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 20px rgba(247, 193, 80, 0.3)); }
}

/* Tagline letter-by-letter reveal */
.intro-tagline {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
}
.intro-tagline span {
  opacity: 0;
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  animation: letterReveal 0.4s ease forwards;
}

@keyframes letterReveal {
  0% { opacity: 0; transform: translateY(15px) scale(0.5); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* Progress bar */
.intro-progress {
  margin-top: 2rem;
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.5s ease 1s forwards;
}
.intro-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-brand);
  border-radius: 10px;
  animation: progressFill 2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

@keyframes progressFill {
  0% { width: 0%; }
  100% { width: 100%; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ---------- SUBNAVBAR ---------- */
.subnavbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: #FAC343; /* Solid Yellow (#FAC343) */
  color: #000; /* Black text */
  display: flex;
  align-items: center;
  z-index: 1001;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-family: 'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif;
}

.subnavbar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.subnavbar-links {
  display: flex;
  gap: 1.5rem;
}

.subnavbar-links a {
  color: #000; /* Black text for subnavbar links */
  font-family: 'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

.subnavbar-links a:hover {
  color: #854d0e;
}

.subnavbar-links a.subnavbar-login {
  font-weight: 800;
}

/* Subnavbar Dropdown Styling */
.subnavbar-links li {
  position: relative;
  list-style: none;
}
.subnavbar-dropdown {
  position: relative;
}
.subnavbar-dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 2px;
  vertical-align: middle;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #FAC343; /* Yellow background matching navbar (#FAC343) */
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 1.25rem !important;
  color: #000 !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  text-decoration: none;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu li a:hover {
  background: #ffffff !important;
  color: #ff6b35 !important;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.4rem 0;
  transition: all var(--transition-base);
  background: #FAC343; /* Solid Yellow (#FAC343) */
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-family: 'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif;
}

.navbar.scrolled {
  position: fixed;
  top: 0;
  background: #FAC343; /* Solid Yellow (#FAC343) */
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.3rem 0;
}

.navbar.scrolled .navbar-links a {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar.scrolled .navbar-links a:hover {
  background: #8B0000;
  border-color: #8B0000;
  color: #fff !important;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px; /* Bigger logo since padding has been trimmed */
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
  height: 60px; /* Bigger logo on scroll */
}

.navbar-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.navbar-links a {
  font-family: 'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff; /* White text by default when not hovered */
  padding: 8px 22px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.22); /* Lighter capsule background for yellow navbar */
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.navbar-links a:hover {
  background: #8B0000;
  border-color: #8B0000;
  color: #fff !important;
}

.navbar-links a.active {
  background: rgba(0, 0, 0, 0.55) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.navbar-cta {
  padding: 10px 28px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #000; /* Dark color for visibility on light yellow */
  transition: all var(--transition-base);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 120px 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.mobile-menu a {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: bold;
}

.mobile-menu a:hover {
  color: var(--color-orange);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  margin-top: 133px; /* Aligns hero directly below the subnavbar and navbar to prevent overlap and cutoff */
  height: 56.25vw; /* Exact 16:9 ratio to fit the background video frame perfectly */
  min-height: 520px; /* Safe minimum height so content is never cut off */
  overflow: hidden;
  color: #fff; /* White text for contrast against video */
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background-color: #06060b; /* Deep background matching dark theme */
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Fit the video exactly without zooming/cropping */
  position: absolute;
  top: 0;
  left: 0;
}

/* Hero Banner Background Slider (plays after video ends) */
.hero-banner-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  overflow: hidden;
}
.hero-banner-track {
  display: flex;
  width: 800%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-banner-slide {
  width: 12.5%;
  height: 100%;
  flex-shrink: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #06060b;
}
@media (max-width: 768px) {
  .hero-banner-slide {
    background-size: cover;
  }
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 10s linear;
  transform: scale(1.1);
}

.hero-bg-img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 11, 0.62);
  z-index: 1;
}

.hero-gradient-overlay {
  display: none; /* Hide old overlay in favor of video overlay */
}

/* Floating food images in hero background */
.hero-float-food {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
  filter: blur(1px);
}
.float-1 { width: 180px; height: 180px; top: 10%; left: 5%; animation: floatFood 8s ease-in-out infinite; }
.float-2 { width: 140px; height: 140px; top: 60%; left: 2%; animation: floatFood 10s ease-in-out infinite 1s; }
.float-3 { width: 120px; height: 120px; bottom: 15%; right: 5%; animation: floatFood 9s ease-in-out infinite 0.5s; }
.float-4 { width: 100px; height: 100px; top: 20%; right: 8%; animation: floatFood 7s ease-in-out infinite 2s; }

@keyframes floatFood {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  50% { transform: translateY(-25px) rotate(-3deg); }
  75% { transform: translateY(-10px) rotate(2deg); }
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  padding: 120px 2rem 32px; /* Extra padding top so the title shifts below the header navbar */
  display: flex;
  flex-direction: column;
  align-items: center;          /* centre everything horizontally */
  justify-content: space-between; /* push zones to top / centre / bottom */
  pointer-events: none;
  box-sizing: border-box;
}

.hero-content * {
  pointer-events: auto;
}

/* ── ZONE 1: Title + subtitle (top black letterbox) ─────────── */
.hero-zone-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 820px;
  gap: 0.6rem;
}

/* ── ZONE 2: Download badges (centred over video frame) ─────── */
.hero-zone-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  width: 100%;
}

/* ── ZONE 3: Stats row (bottom black letterbox) ─────────────── */
.hero-zone-bot {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-header-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--color-orange);
  margin-bottom: 1rem;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green);
  animation: pulse 2s infinite;
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

.hero-title {
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: left;
  animation: fadeInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line {
  display: block;
}

@media (min-width: 576px) {
  .hero-line {
    white-space: nowrap;
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  text-align: left;
  max-width: 780px;
  margin: 0;
  opacity: 0;
  animation: fadeInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* ---------- HERO DOWNLOAD BUTTONS ---------- */
.hero-download-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}

.download-heading {
  font-family: var(--font-lexend);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-download-buttons {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-base);
}

.download-btn img {
  height: 110px;
  width: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  border: 2.5px solid rgba(255, 255, 255, 0.18);
}

.download-btn:hover {
  transform: translateY(-5px) scale(1.06);
}

.download-btn:hover img {
  border-color: var(--color-orange);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.7);
}

.download-subtext {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* Hero stat counters — used inside .hero-zone-bot */
.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero {
    margin-top: 130px;
    height: auto;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-video-overlay {
    background: rgba(6, 6, 11, 0.80);
  }

  .hero-content {
    position: relative;
    min-height: 75vw;
    padding: 32px 1.5rem;
    justify-content: space-between;
    pointer-events: auto;
  }

  .hero-zone-top {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-zone-bot {
    gap: 1.5rem;
  }

  .download-btn img {
    height: 80px;
  }
}
.hero-stat-box {
  text-align: center;
}
.hero-stat-box .stat-number {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: var(--font-heading);
  line-height: 1;
}
.hero-stat-box .stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Phone mockup */
.hero-phone-mockup {
  position: relative;
  width: 320px;
  height: 560px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 0 8px #222, 0 0 0 10px #444;
  animation: floatPhone 6s ease-in-out infinite;
  background: #000;
}
.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.phone-overlay-badge {
  position: absolute;
  bottom: 25px;
  right: -15px;
  background: var(--gradient-brand);
  color: #fff;
  padding: 15px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 77, 77, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
  border: 4px solid rgba(255,255,255,0.2);
  z-index: 10;
}
.phone-overlay-badge span { display: block; font-weight: 900; font-size: 1.2rem; line-height: 1; }
.phone-overlay-badge small { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

@keyframes pulse-glow {
  0% { transform: scale(1) rotate(-10deg); box-shadow: 0 10px 30px rgba(255, 77, 77, 0.4); }
  50% { transform: scale(1.05) rotate(-5deg); box-shadow: 0 15px 45px rgba(255, 77, 77, 0.6); }
  100% { transform: scale(1) rotate(-10deg); box-shadow: 0 10px 30px rgba(255, 77, 77, 0.4); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-muted);
  animation: bounce 2s ease infinite;
  z-index: 10;
}

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

/* ---------- MARQUEE BANNER ---------- */
.marquee-banner {
  overflow: hidden;
  background: var(--gradient-brand);
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  padding: 0 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- CUISINE CAROUSEL ---------- */
.cuisine-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cuisine-carousel::-webkit-scrollbar { display: none; }
.cuisine-item {
  flex: 0 0 auto;
  text-align: center;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform var(--transition-base);
}
.cuisine-item:hover { transform: translateY(-8px); }
.cuisine-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 4px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, var(--gradient-brand) border-box;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.cuisine-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.cuisine-item:hover .cuisine-circle img { transform: scale(1.15); }
.cuisine-item span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-features {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.brand-partner {
  height: 60px;
  width: 120px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.brand-partner:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.about-feature-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  padding: 15px 25px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.about-image-wrapper {
  position: relative;
  height: 550px;
}

.about-main-img {
  width: 90%;
  height: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  margin-left: auto;
}

.about-floating-img {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--color-bg);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.floating-stat {
  position: absolute;
  bottom: 40px;
  left: -20px;
  padding: 1.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 107, 53, 0.3);
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  padding-bottom: 2rem;
}

.service-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.sc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--color-bg-card) 100%);
  pointer-events: none;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--color-text);
  margin: 0 2rem 1rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0 2rem;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: var(--shadow-glow);
}

.service-card:hover .sc-img {
  transform: scale(1.1);
}

/* ---------- HOW IT WORKS ---------- */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.how-image-frame {
  position: relative;
  height: 600px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #FAC343; /* Match navbar background (#FAC343) */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.how-main-img {
  width: auto;
  height: auto;
  max-width: 65%; /* Make the logo shorter/smaller inside the box */
  max-height: 65%;
  object-fit: contain;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-row {
  display: flex;
  gap: 1.5rem;
}

.step-num {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: var(--gradient-subtle);
  border: 1px solid var(--color-orange);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-weight: bold;
  transition: all var(--transition-fast);
}

.step-row:hover .step-num {
  background: var(--gradient-brand);
  color: #fff;
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.step-row h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* ---------- WHY US ---------- */
.why-us {
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.why-card {
  background: var(--color-bg);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.1);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

.why-us-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-track {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonial-card {
  min-width: 400px;
  padding: 3rem;
  border-radius: var(--radius-xl);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-orange);
  box-shadow: var(--shadow-glow);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--color-orange);
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 1.1rem;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: var(--color-bg-card);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.testimonial-btn:hover {
  background: var(--gradient-brand);
  border-color: transparent;
}

.testimonials-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  width: 30px;
  border-radius: 5px;
  background: var(--gradient-brand);
}

/* ---------- BUSINESS FORMS ---------- */
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.business-card {
  position: relative;
  height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.b-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  z-index: 1;
}

.business-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 11, 0.9), rgba(6, 6, 11, 0.1));
  z-index: 2;
  pointer-events: none;
}

.business-card:hover .b-img {
  transform: scale(1.05);
}

.business-overlay {
  position: relative;
  z-index: 3;
}

.business-overlay h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.15) 0%, var(--color-bg) 70%);
}

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

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  color: var(--color-text-secondary);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-trust span {
  margin: 0 10px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 107, 53, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-chevron {
  transition: transform 0.3s;
  color: var(--color-orange);
}

.faq-item.open {
  border-color: var(--color-orange);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-secondary);
}

/* ---------- UNIQUE SECTION BACKGROUNDS (Dark & Light Mix) ---------- */
.cuisines {
  background-color: #fcfcfc;
}

.about {
  background-color: #0d0d14; /* Dark Section */
  color: #fff;
}
.about .section-desc { color: rgba(255,255,255,0.7); }
.about .section-title { color: #fff; }

.services {
  background-color: #ffffff; /* Light Section */
}

.how-it-works {
  background-color: #fff8e1; /* Subtle Yellowish */
}

.why-us {
  background-color: #12121b; /* Dark Section */
  color: #fff;
}
.why-us .section-title { color: #fff; }
.why-us .section-desc { color: rgba(255,255,255,0.7); }
.why-us .why-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.why-us .why-card h3 { color: #fff; }
.why-us .why-card p { color: rgba(255,255,255,0.6); }

.testimonials {
  background-color: #fafafa; /* Light Section */
}

.business {
  background-color: #ffffff;
}

.faq {
  background-color: #0f172a; /* Deep Navy Dark Section */
  color: #fff;
}
.faq .section-title { color: #fff; }
.faq .faq-item { background: rgba(255,255,255,0.05); }
.faq .faq-question { color: #fff; }
.faq .faq-answer p { color: rgba(255,255,255,0.7); }

.footer {
  background-color: #06060b; /* Deep Black Footer */
  padding: 5rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #FAC343 50%, transparent 100%);
  box-shadow: 0 0 20px rgba(250, 195, 67, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  color: #ffffff;
  font-family: 'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif;
  font-weight: 700 !important;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 24px;
  height: 2px;
  background-color: #FAC343;
  border-radius: 1px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  display: inline-block;
  transition: all var(--transition-fast);
}

.footer-col a:hover {
  color: #FAC343;
  transform: translateX(6px);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
}

.footer-socials a i,
.footer-socials a svg {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
}

.footer-socials a:hover {
  background: #FAC343;
  color: #06060b;
  border-color: #FAC343;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(250, 195, 67, 0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
}

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

.footer-contact {
  display: flex;
  gap: 2rem;
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.footer-contact span i,
.footer-contact span svg {
  color: #FAC343;
  width: 18px;
  height: 18px;
}

/* ---------- ANIMATIONS ---------- */
[data-animate="fade-up"],
[data-animate="slide-left"],
[data-animate="slide-right"],
[data-animate="stagger"],
[data-animate="step"] {
  opacity: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-visual {
    display: flex;
    justify-content: center;
  }

  .hero-phone-mockup {
    width: 260px;
    height: 460px;
  }

  .hero-float-food {
    display: none;
  }

  .about-grid,
  .how-grid,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .cuisine-circle {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 768px) {

  .navbar-links,
  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .logo-img {
    height: 45px;
  }

  /* Slightly smaller for mobile but still large */
  .services-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: 300px;
    padding: 2rem;
  }

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

  .footer-contact {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------- 3D FLOATING ANIMATIONS ---------- */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-alt {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.h-img-1 { animation: float 6s ease-in-out infinite; }
.h-img-2 { animation: float-alt 8s ease-in-out infinite; }
.h-img-3 { animation: float 7s ease-in-out infinite; }

.floating-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--gradient-brand);
  filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.blob-1 { top: 10%; right: -200px; animation: spin-slow 20s linear infinite; }
.blob-2 { bottom: 20%; left: -200px; opacity: 0.1; animation: spin-slow 25s linear reverse infinite; }

.sc-img {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .sc-img {
  transform: scale(1.2) translateY(-10px) rotate(3deg);
}

/* ---------- RESTAURANTS LIST ---------- */
.restaurants {
  background-color: #f8fafc;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.restaurant-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.restaurant-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
  border-color: var(--color-orange);
}

.rc-image-wrap {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
}

.rc-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.restaurant-card:hover .rc-image-wrap img {
  transform: scale(1.1);
}

.rc-offer {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: linear-gradient(135deg, #ff4d4d, #ff6b35);
  color: #fff;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.rc-time {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: #1a1a1a;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 2;
}

.rc-info {
  padding: 1.5rem;
  background: #fff;
}

.rc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.rc-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.rc-rating {
  background: #10b981;
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rc-tags {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rc-location {
  color: #9ca3af;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Menu Slider Styles within Restaurant Box */
.card-menu-slider-wrap {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px dashed var(--color-border);
  background: rgba(255, 255, 255, 0.02);
}
.slider-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-menu-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-orange) transparent;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.card-menu-slider::-webkit-scrollbar {
  height: 4px;
}
.card-menu-slider::-webkit-scrollbar-thumb {
  background: var(--color-orange);
  border-radius: 4px;
}
.slider-item {
  display: flex;
  flex-direction: column;
  flex: 0 0 100px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.slider-item:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--color-orange);
}
.slider-item img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  border-radius: 0;
}
.slider-item-info {
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.75rem;
  text-align: center;
}
.dish-name {
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dish-price {
  color: var(--color-orange);
  font-weight: 700;
}

/* ---------- LIVE IMPACT SECTION ---------- */
.live-impact-section {
  background: #0f1016;
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.impact-item span {
  color: var(--color-gold);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  display: block;
}

.impact-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
}

/* Premium Card Overrides */
.premium-card {
  border: 1px solid rgba(247, 193, 80, 0.2) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5) !important;
}

.premium-card:hover {
  box-shadow: 0 30px 60px rgba(247, 193, 80, 0.15) !important;
  border-color: var(--color-gold) !important;
}

.theme-premium .section-title {
  color: #fff;
}

/* Hybrid Theme Smoothness */
.theme-premium, .theme-budget {
  transition: background var(--transition-slow), color var(--transition-slow);
}

/* ========== NEW FEATURES: HIGH PROTEIN, NOTIFICATIONS, ORDER DETAIL ========== */

.high-protein-tag {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-left: 5px;
}

/* 3D Notifications */
#notification-container-3d {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.push-notification-3d {
  background: rgba(15, 16, 22, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 15px 20px;
  border-radius: 15px;
  color: #fff;
  width: 300px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  transform: perspective(800px) rotateX(10deg) translateZ(20px);
  animation: notificationSlideIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  pointer-events: auto;
}

@keyframes notificationSlideIn {
  from { opacity: 0; transform: perspective(800px) rotateX(10deg) translate3d(50px, 0, 20px); }
  to { opacity: 1; transform: perspective(800px) rotateX(0) translate3d(0, 0, 0); }
}

/* Modal 3D */
.modal-3d {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-content-3d {
  background: #111;
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 30px;
  width: 100%;
  max-width: 500px;
  padding: 2.5rem;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.close-modal {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.order-status-tracker {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.order-status-tracker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  z-index: -1;
}

.status-step {
  background: #111;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  color: #555;
  border: 2px solid #333;
}

.status-step.active {
  color: var(--color-orange);
  border-color: var(--color-orange);
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #888;
}

.summary-line.total {
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 15px;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

/* ---------- 3D SEARCH RESULTS DROPDOWN ---------- */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  width: 100%;
  background: rgba(15, 16, 22, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 30px rgba(255, 107, 53, 0.1);
  transform: perspective(1000px) rotateX(-5deg);
  transform-origin: top;
  animation: dropdownFadeIn 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  padding: 1rem;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: perspective(1000px) rotateX(-15deg) translateY(-20px); }
  to { opacity: 1; transform: perspective(1000px) rotateX(0) translateY(0); }
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
  margin-bottom: 8px;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateX(5px) scale(1.02);
}

.result-thumb {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-info h4 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.result-info p {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: #888;
}

.result-tag {
  margin-left: auto;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 5px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--color-orange);
  font-weight: 700;
}

.no-results {
  text-align: center;
  padding: 2rem;
  color: #555;
}

/* ---------- CONTACT US PAGE ---------- */
.contact-page {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #1e202c 0%, #0d0e15 100%);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-card-3d {
  background: rgba(21, 22, 30, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon-wrapper {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 16px;
  padding: 12px;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details h4 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.contact-details p,
.contact-details a {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--color-orange);
}

.social-connect {
  margin-top: 1rem;
}

.social-connect h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.social-icons-row {
  display: flex;
  gap: 1rem;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: all var(--transition-base);
  text-decoration: none;
}

.social-icon-link:hover {
  background: var(--color-orange);
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
  border-color: transparent;
}

/* Glassmorphic Contact Form */
.contact-form-card {
  background: rgba(21, 22, 30, 0.65);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

.contact-form-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.4), transparent);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-base);
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  border-color: #FAC343;
  box-shadow: 0 0 0 4px rgba(250, 195, 67, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #ff6b35 0%, #ca8a04 100%);
  color: #fff;
  border: none;
  padding: 16px 30px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  transition: all var(--transition-base);
  margin-top: 1rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.45);
}

.btn-submit:active {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ========== PROMOTIONS SECTION ========== */
.promotions-section {
  background: #0d0d14; /* Deep dark background matching the theme */
  padding: 80px 0;
}

.promotions-section .section-title {
  color: #fff; /* Ensure "Active" text displays in white on dark background */
}

/* Promotions Slider Layout */
.promo-slider-container {
  position: relative;
  max-width: 1100px;
  margin: 3rem auto 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.promo-slides-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}

.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.98);
  pointer-events: none;
}

.promo-slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
  pointer-events: auto;
}

.promo-slide-inner {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: row;
}

.promo-slide-img {
  flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #06060b;
  position: relative;
  padding: 1.5rem;
  box-sizing: border-box;
  border-radius: 10px;
}

.promo-slide-img img {
  height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.promo-slide-info {
  display: none !important;
}

.slide-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(234, 179, 8, 0.1);
  color: var(--color-orange);
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.promo-slide-info h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.promo-slide-info p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.promo-slide-info .btn {
  align-self: flex-start;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--color-orange);
  color: #000;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.2);
}

.promo-slide-info .btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.promo-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}

.promo-nav-btn:hover {
  background: #8B0000;
  border-color: #8B0000;
  transform: translateY(-50%) scale(1.05);
}

.promo-nav-btn.prev {
  left: 20px;
}

.promo-nav-btn.next {
  right: 20px;
}

.promo-dots {
  position: absolute;
  bottom: 25px;
  right: 40px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.promo-dot.active {
  background: var(--color-orange);
  width: 28px;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .promo-slides-wrapper {
    height: auto;
    min-height: 680px;
  }
  .promo-slide-inner {
    flex-direction: column;
  }
  .promo-slide-img {
    height: 300px;
    flex: none;
  }
  .promo-slide-info {
    padding: 2.5rem 2rem;
    flex: none;
    text-align: center;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .promo-slide-info .btn {
    align-self: center;
  }
  .promo-slide-info .slide-tag {
    align-self: center;
  }
  .promo-dots {
    right: 50%;
    transform: translateX(50%);
    bottom: 20px;
  }
  .promo-nav-btn {
    top: 150px; /* Center relative to the image part */
  }
}

/* ========== FOODZIPPY GOLD SECTION ========== */
.gold-membership-section {
  position: relative;
  background: #000000;
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
  border-radius: 50% / 6%; /* Curves top and bottom boundaries organically */
  margin: 4rem auto;
  border-top: 1px solid rgba(234, 179, 8, 0.15);
  border-bottom: 1px solid rgba(234, 179, 8, 0.15);
  box-shadow: inset 0 20px 50px rgba(0,0,0,0.9), inset 0 -20px 50px rgba(0,0,0,0.9);
}

.gold-membership-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 50%, rgba(234, 179, 8, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(234, 179, 8, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.gold-content-wrap {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.gold-logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.gold-brand-prefix {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1;
  margin-bottom: -10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gold-brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 4px;
  margin: 0;
  background: linear-gradient(135deg, #ffe875 0%, #cca01a 50%, #856404 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6));
}

.gold-crown-container {
  position: relative;
  display: inline-block;
  color: transparent;
}

.gold-crown-inner {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  color: #cca01a !important;
  stroke-width: 2.2;
}

.gold-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  letter-spacing: 0.5px;
  margin-bottom: 3.5rem;
  font-weight: 500;
}

.gold-benefits-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #cca01a;
  letter-spacing: 4px;
  margin-bottom: 3rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gold-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.gold-benefit-card {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(234, 179, 8, 0.1);
  padding: 1.8rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.3s;
}

.gold-benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 179, 8, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.gold-benefit-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cca01a;
}

.gold-benefit-icon i {
  width: 28px;
  height: 28px;
}

.gold-benefit-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.gold-benefit-info p {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.4;
}

/* Floating 3D Gold Coins */
.gold-coin {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe875 0%, #cca01a 60%, #856404 100%);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset -4px -4px 8px rgba(0,0,0,0.5), inset 4px 4px 8px rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: coinFloat 6s ease-in-out infinite alternate;
}

.gold-coin i {
  color: rgba(133, 100, 4, 0.8) !important;
  filter: drop-shadow(1px 1px 1px rgba(255,255,255,0.4));
}

img.gold-coin {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: block !important;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.45)) !important;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .gold-membership-section {
    padding: 60px 0;
    border-radius: 50% / 3%;
  }
  .gold-brand-title {
    font-size: 3.5rem;
  }
  .gold-crown-inner {
    width: 40px;
    height: 40px;
  }
  .gold-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
  .gold-coin {
    display: none; /* Hide coins on mobile to clean up layout */
  }
}

/* ========== FOODZIPPY DIAMOND SECTION ========== */
.diamond-membership-section {
  position: relative;
  background: #030712; /* Deep dark indigo-tinted slate */
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
  border-radius: 50% / 6%; /* Curves top and bottom boundaries organically */
  margin: 4rem auto;
  border-top: 1px solid rgba(56, 189, 248, 0.15);
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
  box-shadow: inset 0 20px 50px rgba(0,0,0,0.9), inset 0 -20px 50px rgba(0,0,0,0.9);
}

.diamond-membership-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.diamond-content-wrap {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.diamond-logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.diamond-brand-prefix {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1;
  margin-bottom: -10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.diamond-brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 4px;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 40%, #38bdf8 70%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6));
}

.diamond-gem-container {
  position: relative;
  display: inline-block;
  color: transparent;
}

.diamond-gem-inner {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  color: #38bdf8 !important;
  stroke-width: 2.2;
}

.diamond-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  letter-spacing: 0.5px;
  margin-bottom: 3.5rem;
  font-weight: 500;
}

.diamond-benefits-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 4px;
  margin-bottom: 3rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.diamond-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.diamond-benefit-card {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(56, 189, 248, 0.1);
  padding: 1.8rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.3s;
}

.diamond-benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.diamond-benefit-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
}

.diamond-benefit-icon i {
  width: 28px;
  height: 28px;
}

.diamond-benefit-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.diamond-benefit-info p {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.4;
}

/* Floating 3D Diamond Gems */
.diamond-gem {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #a5f3fc 40%, #38bdf8 80%, #0284c7 100%);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset -4px -4px 8px rgba(0,0,0,0.5), inset 4px 4px 8px rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: gemFloat 6s ease-in-out infinite alternate;
}

.diamond-gem i {
  color: rgba(2, 132, 199, 0.8) !important;
  filter: drop-shadow(1px 1px 1px rgba(255,255,255,0.4));
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .diamond-membership-section {
    padding: 60px 0;
    border-radius: 50% / 3%;
  }
  .diamond-brand-title {
    font-size: 3.5rem;
  }
  .diamond-gem-inner {
    width: 40px;
    height: 40px;
  }
  .diamond-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
  .diamond-gem {
    display: none; /* Hide gems on mobile to clean up layout */
  }
}

/* ========== BETTER FOOD SECTION ========== */
.better-food-section {
  position: relative;
  background: #ffffff;
  padding: 120px 0 100px;
  overflow: hidden;
  text-align: center;
}

.better-food-section .wave-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.better-food-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  margin: 0 auto;
}

.better-food-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: #ff6b35; /* Premium Zomato-style Red-Orange color */
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.better-food-desc {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 4rem;
}

/* Floating Food Items */
.floating-food {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
  animation: foodFloat 8s ease-in-out infinite alternate;
}

.pizza-slice-float {
  right: 8%;
  top: 45%;
  width: 160px;
  animation-delay: 0s;
}

.bowl-float {
  left: 6%;
  top: 25%;
  width: 180px;
  animation-delay: 2s;
}

.gulab-float {
  left: 45%;
  top: 10%;
  width: 120px;
  animation-delay: 4s;
}

.biryani-float {
  right: 15%;
  top: 15%;
  width: 150px;
  animation-delay: 1.5s;
}

@keyframes foodFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-15px) rotate(8deg);
  }
}

/* Stats Floating Card */
.stats-floating-card {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  max-width: 850px;
  margin: 0 auto;
}

.stat-col {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: center;
}

.stat-col:not(:last-child) {
  border-right: 1px solid #e5e7eb;
}

.stat-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 53, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
}

.stat-icon-wrap i {
  width: 24px;
  height: 24px;
}

.stat-info {
  text-align: left;
}

.stat-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.1rem;
}

.stat-info p {
  font-size: 0.88rem;
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ========== DOWNLOAD APP SECTION ========== */
.app-download-section {
  background: #ffffff;
  padding: 60px 0 120px;
}

.app-download-card {
  display: flex;
  align-items: center;
  background: #fff5f2; /* Light pinkish-red background matching screenshot */
  border: 1px solid #ffe4e0;
  border-radius: 28px;
  padding: 4rem 5rem;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.app-download-info {
  flex: 1.2;
}

.app-download-info h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.app-download-info p {
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.download-badges {
  display: flex;
  gap: 1.2rem;
}

.store-badge-link img {
  height: 48px;
  transition: transform 0.2s;
}

.store-badge-link img:hover {
  transform: scale(1.04);
}

.app-download-visual {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Mock Phone Shell */
.mock-phone-shell {
  width: 260px;
  height: 380px;
  border: 10px solid #1f2937;
  border-bottom: none;
  border-radius: 36px 36px 0 0;
  background: #ffffff;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.mock-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 18px;
  background: #1f2937;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}

.mock-phone-screen {
  padding: 2.5rem 1.5rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.qr-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.qr-code-box {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .better-food-title {
    font-size: 2.6rem;
  }
  .floating-food {
    display: none; /* Hide floating items on tablets/mobiles */
  }
  .stats-floating-card {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stat-col {
    width: 100%;
    padding: 0.5rem 0;
  }
  .stat-col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
  .app-download-card {
    flex-direction: column;
    padding: 3rem 2rem;
    text-align: center;
    gap: 2rem;
  }
  .download-badges {
    justify-content: center;
  }
  .mock-phone-shell {
    height: 320px;
  }
}

/* ========== CAFÉ99 FRANCHISE SECTION ========== */
.cafe99-section {
  position: relative;
  background: #0d0807; /* Rich deep dark red-black */
  padding: 100px 0;
  overflow: hidden;
  border-radius: 50% / 6%;
  margin: 4rem auto;
  border-top: 1px solid rgba(220, 38, 38, 0.2);
  border-bottom: 1px solid rgba(220, 38, 38, 0.2);
  box-shadow:
    inset 0 20px 50px rgba(0,0,0,0.9),
    inset 0 -20px 50px rgba(0,0,0,0.9);
  font-family: 'Gilroy', 'Outfit', sans-serif;
}

.cafe99-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(220, 38, 38, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 88% 50%, rgba(234, 179, 8, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.cafe99-content-wrap {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Logo */
.cafe99-logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.cafe99-brand-prefix {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.8);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.cafe99-brand-title {
  font-family: 'Gilroy', 'Outfit', sans-serif;
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  margin: 0;
  background: linear-gradient(135deg, #fff7ed 0%, #f97316 45%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  filter: drop-shadow(0 4px 14px rgba(220, 38, 38, 0.5));
}

.cafe99-nine-container {
  position: relative;
  display: inline-block;
  color: transparent;
}

.cafe99-flame-inner {
  position: absolute;
  left: 50%;
  top: -15%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  color: #fbbf24 !important;
  stroke-width: 2;
  animation: flameFlicker 1.5s ease-in-out infinite alternate;
}

@keyframes flameFlicker {
  0%   { opacity: 0.9; transform: translateX(-50%) scale(1); }
  100% { opacity: 1;   transform: translateX(-50%) scale(1.15); }
}

.cafe99-tagline {
  font-family: 'Gilroy', 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fbbf24;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.cafe99-subtitle {
  font-size: 1.15rem;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Banner */
.cafe99-banner-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 3rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(220,38,38,0.2);
}

.cafe99-banner-img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* Benefits Title */
.cafe99-benefits-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f97316;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}

/* Benefits Grid — 4-column for Café99 */
.cafe99-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.cafe99-benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(220, 38, 38, 0.12);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: all 0.3s;
}

.cafe99-benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.04);
}

.cafe99-benefit-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
}

.cafe99-benefit-icon i { width: 28px; height: 28px; }

.cafe99-benefit-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.cafe99-benefit-info p {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.4;
}

/* Floating food decorations */
.cafe99-float {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5));
  animation: cafe99Float 7s ease-in-out infinite alternate;
}

@keyframes cafe99Float {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-18px) rotate(12deg); }
}

/* CTA Buttons */
.cafe99-cta-btn {
  display: inline-block;
  padding: 16px 44px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.cafe99-cta-btn.primary {
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: #fff;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}
.cafe99-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(220, 38, 38, 0.5);
}

.cafe99-cta-btn.secondary {
  background: transparent;
  color: #fbbf24;
  border: 2px solid #fbbf24;
}
.cafe99-cta-btn.secondary:hover {
  background: #fbbf24;
  color: #000;
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .cafe99-benefits-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cafe99-brand-title   { font-size: 3.8rem; }
  .cafe99-float         { display: none; }
  .cafe99-section       { border-radius: 50% / 3%; }
}
@media (max-width: 580px) {
  .cafe99-benefits-grid { grid-template-columns: 1fr; }
  .cafe99-brand-title   { font-size: 3rem; }
}

/* ========== NAVBAR OFFER BANNER ========== */
.navbar-bn-link {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
  margin-right: -45px; /* Shift rightward */
  text-decoration: none;
}

.navbar-bn-img {
  height: 72px; /* Bigger size! */
  max-height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-bn-link:hover .navbar-bn-img {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.5));
}

/* ========== CAFÉ99 NAVBAR HOVER GLITTER ========== */
.nav-cafe99 {
  position: relative;
  overflow: visible;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.nav-cafe99:hover,
.nav-cafe99:focus {
  color: #dc2626 !important;
  background: #fbbf24 !important;
  transform: translateY(-1px);
  font-weight: 700 !important;
}

/* === INNER HALO: tight golden ring spinning === */
@keyframes cafe99HaloSpin {
  0% {
    box-shadow:
      -12px -5px 0 2px #fbbf24,
       12px  5px 0 2px #fbbf24,
       -5px 12px 0 2px #dc2626,
        5px -12px 0 2px #dc2626,
      -14px  8px 0 1px #f59e0b,
       14px -8px 0 1px #f59e0b,
       -8px -14px 0 1px #dc2626,
        8px  14px 0 1px #dc2626;
  }
  25% {
    box-shadow:
      -5px -14px 0 2px #fbbf24,
       5px  14px 0 2px #fbbf24,
       14px  5px 0 2px #dc2626,
      -14px -5px 0 2px #dc2626,
        8px -14px 0 1px #f59e0b,
       -8px  14px 0 1px #f59e0b,
       14px   8px 0 1px #dc2626,
      -14px  -8px 0 1px #dc2626;
  }
  50% {
    box-shadow:
       12px  5px 0 2px #fbbf24,
      -12px -5px 0 2px #fbbf24,
        5px -12px 0 2px #dc2626,
       -5px  12px 0 2px #dc2626,
       14px -8px 0 1px #f59e0b,
      -14px  8px 0 1px #f59e0b,
        8px  14px 0 1px #dc2626,
       -8px -14px 0 1px #dc2626;
  }
  75% {
    box-shadow:
        5px  14px 0 2px #fbbf24,
       -5px -14px 0 2px #fbbf24,
      -14px  -5px 0 2px #dc2626,
       14px   5px 0 2px #dc2626,
       -8px  14px 0 1px #f59e0b,
        8px -14px 0 1px #f59e0b,
      -14px  -8px 0 1px #dc2626,
       14px   8px 0 1px #dc2626;
  }
  100% {
    box-shadow:
      -12px -5px 0 2px #fbbf24,
       12px  5px 0 2px #fbbf24,
       -5px 12px 0 2px #dc2626,
        5px -12px 0 2px #dc2626,
      -14px  8px 0 1px #f59e0b,
       14px -8px 0 1px #f59e0b,
       -8px -14px 0 1px #dc2626,
        8px  14px 0 1px #dc2626;
  }
}

/* === OUTER BURST: wide scattered glitter atoms === */
@keyframes cafe99Particles {
  0% {
    box-shadow:
      -28px -12px 6px 1px rgba(251,191,36,0.9),
       28px  12px 5px 1px rgba(251,191,36,0.85),
      -12px  28px 7px 1px rgba(220,38,38,0.9),
       12px -28px 6px 1px rgba(220,38,38,0.85),
      -35px   5px 4px 0px rgba(245,158,11,0.8),
       35px  -5px 5px 0px rgba(220,38,38,0.8),
        0px -35px 4px 0px rgba(251,191,36,0.7),
        0px  35px 4px 0px rgba(220,38,38,0.7),
      -24px -24px 3px 0px rgba(251,191,36,0.6),
       24px  24px 3px 0px rgba(220,38,38,0.6);
  }
  20% {
    box-shadow:
      -18px -30px 7px 1px rgba(220,38,38,0.9),
       18px  30px 6px 1px rgba(220,38,38,0.85),
       30px -18px 8px 1px rgba(251,191,36,0.9),
      -30px  18px 7px 1px rgba(251,191,36,0.85),
        5px -36px 5px 0px rgba(220,38,38,0.75),
       -5px  36px 5px 0px rgba(245,158,11,0.8),
       36px   0px 4px 0px rgba(251,191,36,0.7),
      -36px   0px 4px 0px rgba(220,38,38,0.7),
       28px -28px 3px 0px rgba(251,191,36,0.6),
      -28px  28px 3px 0px rgba(220,38,38,0.6);
  }
  40% {
    box-shadow:
       32px -10px 6px 1px rgba(251,191,36,0.9),
      -32px  10px 5px 1px rgba(251,191,36,0.85),
       10px  32px 7px 1px rgba(220,38,38,0.9),
      -10px -32px 6px 1px rgba(220,38,38,0.85),
       36px  8px  5px 0px rgba(245,158,11,0.8),
      -36px -8px  4px 0px rgba(220,38,38,0.75),
        8px  36px 4px 0px rgba(251,191,36,0.7),
       -8px -36px 4px 0px rgba(220,38,38,0.7),
       22px  30px 3px 0px rgba(251,191,36,0.6),
      -22px -30px 3px 0px rgba(220,38,38,0.6);
  }
  60% {
    box-shadow:
      -28px  18px 6px 1px rgba(220,38,38,0.9),
       28px -18px 5px 1px rgba(220,38,38,0.85),
      -18px -28px 7px 1px rgba(251,191,36,0.9),
       18px  28px 6px 1px rgba(251,191,36,0.85),
      -5px   36px 4px 0px rgba(220,38,38,0.8),
        5px -36px 5px 0px rgba(245,158,11,0.75),
      -36px   0px 4px 0px rgba(251,191,36,0.7),
       36px   0px 4px 0px rgba(220,38,38,0.7),
      -30px -22px 3px 0px rgba(251,191,36,0.6),
       30px  22px 3px 0px rgba(220,38,38,0.6);
  }
  80% {
    box-shadow:
        8px -35px 6px 1px rgba(251,191,36,0.9),
       -8px  35px 5px 1px rgba(251,191,36,0.85),
       35px   8px 7px 1px rgba(220,38,38,0.9),
      -35px  -8px 6px 1px rgba(220,38,38,0.85),
       12px  34px 4px 0px rgba(245,158,11,0.8),
      -12px -34px 5px 0px rgba(220,38,38,0.75),
        0px -36px 4px 0px rgba(251,191,36,0.7),
        0px  36px 4px 0px rgba(220,38,38,0.7),
       30px -22px 3px 0px rgba(251,191,36,0.6),
      -30px  22px 3px 0px rgba(220,38,38,0.6);
  }
  100% {
    box-shadow:
      -28px -12px 6px 1px rgba(251,191,36,0.9),
       28px  12px 5px 1px rgba(251,191,36,0.85),
      -12px  28px 7px 1px rgba(220,38,38,0.9),
       12px -28px 6px 1px rgba(220,38,38,0.85),
      -35px   5px 4px 0px rgba(245,158,11,0.8),
       35px  -5px 5px 0px rgba(220,38,38,0.8),
        0px -35px 4px 0px rgba(251,191,36,0.7),
        0px  35px 4px 0px rgba(220,38,38,0.7),
      -24px -24px 3px 0px rgba(251,191,36,0.6),
       24px  24px 3px 0px rgba(220,38,38,0.6);
  }
}