:root {
      --primary-color: #e91e63;
      --primary-dark: #c2185b;
      --primary-light: #fce4ec;
      --secondary-color: #2d3436;
      --accent-orange: #ff5722;
      --accent-yellow: #ffc107;
      --bg-color: #fff;
      --text-color: #333;
      --text-light: #666;
      --white: #ffffff;
      --dark-bg: #1a1a1a;
      --gradient: linear-gradient(135deg, #e91e63 0%, #ff5722 100%);
      --gradient-warm: linear-gradient(135deg, #ff5722 0%, #ffc107 100%);
      --gradient-soft: linear-gradient(
            135deg,
            rgba(233, 30, 99, 0.08) 0%,
            rgba(255, 87, 34, 0.08) 100%
      );
      --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      --shadow: 0 10px 40px rgba(233, 30, 99, 0.15);
      --shadow-lg: 0 25px 60px rgba(233, 30, 99, 0.2);
}

/* Lenis Smooth Scroll */
html.lenis {
      height: auto;
}
html {
      overflow-x: hidden;
}

.lenis.lenis-smooth {
      scroll-behavior: auto;
}

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

body {
      font-family: "Poppins", sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--bg-color);
      overflow-x: hidden;
      cursor: none;
}

/* Hide default cursor on interactive elements */
a,
button,
.btn-app,
.menu-category,
.step-card,
.location-card,
input,
textarea {
      cursor: none;
}

/* ========================================
   CUSTOM FOOD CURSOR
   ======================================== */
.cursor-main {
      position: fixed;
      width: 40px;
      height: 40px;
      pointer-events: none;
      z-index: 99999;
      font-size: 28px;
      transition: transform 0.15s ease;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cursor-trail {
      position: fixed;
      width: 60px;
      height: 60px;
      border: 2px solid var(--primary-color);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99998;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      opacity: 0.4;
}

.cursor-trail.hover {
      width: 80px;
      height: 80px;
      border-color: var(--accent-orange);
      background: rgba(255, 87, 34, 0.1);
}

.cursor-main.clicking {
      transform: scale(0.8);
}

/* Cursor sparkles */
.cursor-sparkle {
      position: fixed;
      pointer-events: none;
      z-index: 99997;
      font-size: 16px;
      opacity: 0;
      transition: opacity 0.3s ease;
}

/* Container */
.container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
      /* position: fixed; */
      top: 0;
      width: 100%;
      background: transparent;
      z-index: 1000;
      padding: 20px 0;
      transition: all 0.4s ease;
}

.navbar.scrolled {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      padding: 12px 0;
      box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .nav-links a {
      color: var(--secondary-color);
}

.navbar.scrolled .bar {
      background-color: var(--secondary-color);
}

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

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

.logo img {
      height: 120px;
      transition: var(--transition);
}

.navbar.scrolled .logo img {
      height: 45px;
}

.nav-links {
      display: flex;
      list-style: none;
      gap: 40px;
}

.nav-links a {
      text-decoration: none;
      color: black;
      font-weight: 600;
      font-size: 0.95rem;
      position: relative;
      padding: 8px 16px;
      transition: all 0.3s ease;
      border-radius: 8px;
}

.nav-links a::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      opacity: 0;
      transition: opacity 0.3s ease;
}

.nav-links a:hover::before {
      opacity: 1;
}

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

.navbar.scrolled .nav-links a:hover {
      color: var(--primary-color);
}

.navbar.scrolled .nav-links a::before {
      background: var(--gradient-soft);
}

.hamburger {
      display: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
      min-height: calc(100vh - 150px);
      display: flex;
      align-items: center;
      position: relative;
      padding: 20px 0 20px;
      overflow: hidden;
      background: linear-gradient(180deg, #fff 0%, #fff8f6 100%);
}

/* Floating food elements */
.hero-floating {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
}

.floating-food {
      position: absolute;
      font-size: 3rem;
      opacity: 0.15;
      animation: floatFood 20s infinite ease-in-out;
}

.floating-food:nth-child(1) {
      top: 10%;
      left: 5%;
      animation-delay: 0s;
}
.floating-food:nth-child(2) {
      top: 20%;
      right: 10%;
      animation-delay: -3s;
      font-size: 2.5rem;
}
.floating-food:nth-child(3) {
      top: 60%;
      left: 8%;
      animation-delay: -6s;
}
.floating-food:nth-child(4) {
      top: 70%;
      right: 5%;
      animation-delay: -9s;
      font-size: 2rem;
}
.floating-food:nth-child(5) {
      top: 40%;
      left: 3%;
      animation-delay: -12s;
      font-size: 2.5rem;
}
.floating-food:nth-child(6) {
      top: 80%;
      left: 15%;
      animation-delay: -15s;
}

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

.hero-bg {
      position: absolute;
      top: 0;
      right: 0;
      width: 55%;
      height: 100%;
      background: var(--gradient);
      clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
      z-index: 0;
}

.hero-bg::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
            radial-gradient(
                  circle at 30% 20%,
                  rgba(255, 255, 255, 0.25) 0%,
                  transparent 40%
            ),
            radial-gradient(
                  circle at 70% 80%,
                  rgba(255, 255, 255, 0.15) 0%,
                  transparent 40%
            ),
            radial-gradient(
                  circle at 50% 50%,
                  rgba(255, 193, 7, 0.1) 0%,
                  transparent 60%
            );
}

.hero-bg::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.5;
}

.hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      position: relative;
      z-index: 1;
      gap: 60px;
}

.hero-text {
      flex: 1;
      max-width: 550px;
}

.hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      color: var(--primary-color);
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 25px;
      box-shadow: 0 4px 20px rgba(233, 30, 99, 0.15);
      border: 1px solid var(--primary-light);
}

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

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

.hero-text h1 {
      font-size: 4rem;
      line-height: 1.1;
      margin-bottom: 25px;
      color: var(--secondary-color);
      font-weight: 800;
}

.hero-text h1 .highlight {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
}

.hero-text h1 .food-icon {
      display: inline-block;
      animation: bounce 2s infinite;
}

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

.hero-text p {
      font-size: 1.15rem;
      color: var(--text-light);
      margin-bottom: 35px;
      line-height: 1.8;
}

.hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 40px;
      padding-top: 30px;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
      text-align: center;
}

.stat-number {
      display: block;
      font-size: 2.2rem;
      font-weight: 800;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}

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

.hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      min-height: 550px;
}

/* Phone Mockups - Enhanced */
.phone-container {
      position: relative;
      width: 500px;
      height: 600px;
      perspective: 1500px;
}

.phone-mockup {
      position: absolute;
      width: 360px;
      border-radius: 45px;
      padding: 10px;
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform, z-index;
}

.phone-mockup::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 45px;
      pointer-events: none;
}

.phone-mockup .screen {
      width: 100%;
      border-radius: 38px;
      overflow: hidden;
      position: relative;
}

.phone-mockup .screen img {
      width: 100%;
      display: block;
}

/* Initial state: phones spread apart */
.phone-1 {
      left: 0;
      top: 50%;
      transform: translateY(-50%) rotate(-15deg);
      z-index: 2;
}

.phone-2 {
      right: -20%;
      top: 50%;
      transform: translateY(-45%) rotate(15deg);
      z-index: 1;
}

/* Phone glow effect */
.phone-1::before {
      box-shadow: 0 0 60px 20px rgba(233, 30, 99, 0.2);
}

.phone-2::before {
      box-shadow: 0 0 60px 20px rgba(255, 87, 34, 0.15);
}

/* Collapsed state: phones come together on scroll */
.phone-container.collapsed .phone-1 {
      left: 50%;
      transform: translateX(-50%) translateY(-50%) rotate(-5deg) scale(0.95);
      z-index: 2;
}

.phone-container.collapsed .phone-2 {
      right: auto;
      left: 50%;
      transform: translateX(-40%) translateY(-48%) rotate(5deg) scale(0.9);
      z-index: 1;
}

/* App Buttons */
.app-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
}

.btn-app {
      display: flex;
      align-items: center;
      background: var(--secondary-color);
      color: var(--white);
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 14px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
}

.btn-app::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--gradient);
      transition: left 0.3s ease;
      z-index: 0;
}

.btn-app:hover::before {
      left: 0;
}

.btn-app:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-app i,
.btn-app .btn-text {
      position: relative;
      z-index: 1;
}

.btn-app i {
      font-size: 2rem;
      margin-right: 12px;
}

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

.btn-text span:first-child {
      font-size: 0.65rem;
      text-transform: uppercase;
      opacity: 0.8;
}

.store-name {
      font-size: 1.05rem;
      font-weight: 600;
}

.btn-app-light {
      background: var(--white);
      color: var(--secondary-color);
}

.btn-app-light::before {
      background: var(--primary-light);
}

.btn-app-light:hover {
      color: var(--primary-color);
}

.scroll-down {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      z-index: 10;
}

.scroll-down span {
      color: var(--white);
      font-size: 0.9rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2px;
      background: rgba(0, 0, 0, 0.3);
      padding: 8px 20px;
      border-radius: 30px;
      backdrop-filter: blur(10px);
}

.scroll-down .scroll-icon {
      width: 30px;
      height: 50px;
      border: 2px solid var(--white);
      border-radius: 20px;
      position: relative;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
}

.scroll-down .scroll-icon::before {
      content: "";
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 6px;
      height: 10px;
      background: var(--white);
      border-radius: 3px;
      animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
      0% {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
      }
      100% {
            opacity: 0;
            transform: translateX(-50%) translateY(20px);
      }
}

.scroll-down .scroll-arrows {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
}

.scroll-down .scroll-arrows i {
      color: var(--white);
      font-size: 1rem;
      animation: scrollArrow 1.5s infinite;
      opacity: 0;
}

.scroll-down .scroll-arrows i:nth-child(1) {
      animation-delay: 0s;
}

.scroll-down .scroll-arrows i:nth-child(2) {
      animation-delay: 0.15s;
}

.scroll-down .scroll-arrows i:nth-child(3) {
      animation-delay: 0.3s;
}

@keyframes scrollArrow {
      0% {
            opacity: 0;
            transform: translateY(-5px);
      }
      50% {
            opacity: 1;
      }
      100% {
            opacity: 0;
            transform: translateY(5px);
      }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
      opacity: 0;
      transform: translateY(80px);
      transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
      opacity: 1;
      transform: translateY(0);
}

.reveal-left {
      opacity: 0;
      transform: translateX(-100px);
      transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
      opacity: 1;
      transform: translateX(0);
}

.reveal-right {
      opacity: 0;
      transform: translateX(100px);
      transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
      opacity: 1;
      transform: translateX(0);
}

.reveal-scale {
      opacity: 0;
      transform: scale(1);
      transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
      opacity: 1;
      transform: scale(1);
}

.reveal-rotate {
      opacity: 0;
      transform: perspective(1000px) rotateY(30deg);
      transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-rotate.active {
      opacity: 1;
      transform: perspective(1000px) rotateY(0);
}

/* Stagger animations */
.stagger > * {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger.active > *:nth-child(1) {
      transition-delay: 0.1s;
}
.stagger.active > *:nth-child(2) {
      transition-delay: 0.2s;
}
.stagger.active > *:nth-child(3) {
      transition-delay: 0.3s;
}
.stagger.active > *:nth-child(4) {
      transition-delay: 0.4s;
}
.stagger.active > *:nth-child(5) {
      transition-delay: 0.5s;
}
.stagger.active > *:nth-child(6) {
      transition-delay: 0.6s;
}

.stagger.active > * {
      opacity: 1;
      transform: translateY(0);
}

/* Parallax */
.parallax {
      transition: transform 0.1s linear;
      will-change: transform;
}

/* ========================================
   FEATURED POPUP
   ======================================== */
.featured-popup {
      position: fixed;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8) translateZ(0);
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      max-width: 90vw;
      max-height: 90vh;
      will-change: transform, opacity;
      pointer-events: none;
      /* GPU acceleration for smooth performance */
      backface-visibility: hidden;
      perspective: 1000px;
}

.featured-popup.active {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, -50%) scale(1) translateZ(0);
      pointer-events: auto;
}

.featured-popup.closing {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.9) translateZ(0);
      pointer-events: none;
}

.featured-popup img {
      max-width: 100%;
      max-height: 85vh;
      border-radius: 20px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
      display: block;
      /* GPU acceleration for smooth rendering */
      transform: translateZ(0);
      backface-visibility: hidden;
      image-rendering: -webkit-optimize-contrast;
}

.popup-close {
      position: absolute;
      top: -15px;
      right: -15px;
      width: 50px;
      height: 50px;
      background: var(--white);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--secondary-color);
      cursor: pointer;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
      z-index: 10001;
      will-change: transform;
}

.popup-close:hover {
      background: var(--primary-color);
      color: var(--white);
      transform: rotate(90deg) scale(1.1);
}

@media (max-width: 768px) {
      .featured-popup {
            top: 50%;
            width: 100%;
      }
      .featured-popup img {
            max-width: 100%;
      }
}

/* Popup backdrop - optimized without blur for better performance */
body.popup-open {
      overflow: hidden;
      position: relative;
}

body.popup-open::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9999;
      opacity: 0;
      animation: fadeInBackdrop 0.3s ease forwards;
      will-change: opacity;
      pointer-events: auto;
      /* Use transform instead of opacity for better performance */
      transform: translateZ(0);
      backface-visibility: hidden;
}

body.popup-closing::before {
      animation: fadeOutBackdrop 0.3s ease forwards;
}

@keyframes fadeInBackdrop {
      from {
            opacity: 0;
      }
      to {
            opacity: 1;
      }
}

@keyframes fadeOutBackdrop {
      from {
            opacity: 1;
      }
      to {
            opacity: 0;
      }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
      padding: 120px 0;
      position: relative;
}

.section-header {
      text-align: center;
      margin-bottom: 70px;
}

.section-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gradient-soft);
      color: var(--primary-color);
      padding: 10px 24px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
}

.section-title {
      font-size: 3.2rem;
      color: var(--secondary-color);
      margin-bottom: 20px;
      font-weight: 800;
      line-height: 1.2;
}

.section-subtitle {
      font-size: 1.15rem;
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto;
}

/* ========================================
   APP SHOWCASE
   ======================================== */
.app-showcase {
      background: linear-gradient(180deg, #fff 0%, #fff8f6 50%, #fff 100%);
      overflow: hidden;
}

.app-showcase-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
}

.screens-wrapper {
      position: relative;
      height: 650px;
      perspective: 1000px;
}

.screen-img {
      position: absolute;
      width: 280px;
      border-radius: 35px;
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform, opacity;
}

/* Initial state: only center mockup visible */
.screen-1 {
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) rotate(-8deg) scale(0.85);
      z-index: 1;
      opacity: 0;
}

.screen-2 {
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
      width: 350px;
}

.screen-3 {
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) rotate(8deg) scale(0.85);
      z-index: 2;
      opacity: 0;
}

/* Expanded state when scrolled */
.screens-wrapper.expanded .screen-1 {
      left: -10%;
      transform: translateY(-50%) rotate(-8deg) scale(1);
      opacity: 1;
}

.screens-wrapper.expanded .screen-2 {
      transform: translate(-50%, -50%);
}

.screens-wrapper.expanded .screen-3 {
      left: auto;
      right: -10%;
      transform: translateY(-50%) rotate(8deg) scale(1);
      opacity: 1;
}

/* Hover effects only when expanded */
.screens-wrapper.expanded:hover .screen-1 {
      transform: translateY(-50%) rotate(-12deg) translateX(-15px) scale(1);
}

.screens-wrapper.expanded:hover .screen-2 {
      transform: translate(-50%, -50%) scale(1.05);
      top: 45%;
}

.screens-wrapper.expanded:hover .screen-3 {
      transform: translateY(-50%) rotate(12deg) translateX(15px) scale(1);
}

.app-info h2 {
      font-size: 2.8rem;
      margin-bottom: 25px;
      color: var(--secondary-color);
      line-height: 1.2;
      font-weight: 700;
}

.app-info > p {
      color: var(--text-light);
      margin-bottom: 40px;
      font-size: 1.1rem;
      line-height: 1.8;
}

.feature-list {
      margin-bottom: 40px;
}

.feature-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 25px;
      padding: 20px;
      background: var(--white);
      border-radius: 16px;
      transition: all 0.3s ease;
      border: 1px solid transparent;
}

.feature-item:hover {
      border-color: var(--primary-light);
      box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
      transform: translateX(10px);
}

.feature-icon {
      width: 55px;
      height: 55px;
      background: var(--gradient);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.3rem;
      flex-shrink: 0;
}

.feature-content h4 {
      font-size: 1.1rem;
      margin-bottom: 5px;
      color: var(--secondary-color);
      font-weight: 600;
}

.feature-content p {
      font-size: 0.95rem;
      color: var(--text-light);
}

/* ========================================
   MENU SECTION
   ======================================== */
.menu-section {
      background: var(--white);
      position: relative;
}

.menu-section::before {
      content: "🍽️";
      position: absolute;
      top: 50px;
      right: 10%;
      font-size: 8rem;
      opacity: 0.05;
}

.menu-categories {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 25px;
      margin-bottom: 60px;
}

.menu-category {
      background: var(--white);
      padding: 35px 20px;
      border-radius: 24px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
}

.menu-category::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gradient-soft);
      opacity: 0;
      transition: opacity 0.3s ease;
}

.menu-category:hover {
      transform: translateY(-15px) scale(1.02);
      border-color: var(--primary-color);
      box-shadow: var(--shadow);
}

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

.category-icon {
      font-size: 3rem;
      margin-bottom: 18px;
      display: block;
      position: relative;
      z-index: 1;
      transition: transform 0.3s ease;
}

.menu-category:hover .category-icon {
      transform: scale(1.2) rotate(10deg);
}

.menu-category h3 {
      font-size: 1.05rem;
      margin-bottom: 5px;
      color: var(--secondary-color);
      font-weight: 600;
      position: relative;
      z-index: 1;
}

.menu-category p {
      font-size: 0.85rem;
      color: var(--text-light);
      position: relative;
      z-index: 1;
}

.menu-cta {
      text-align: center;
}

.menu-cta p {
      margin-bottom: 25px;
      color: var(--text-light);
      font-size: 1.1rem;
}

.btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gradient);
      color: var(--white);
      padding: 18px 45px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.05rem;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(233, 30, 99, 0.4);
}

.btn-primary i {
      transition: transform 0.3s ease;
}

.btn-primary:hover i {
      transform: translateX(5px);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
      background: linear-gradient(180deg, #fff8f6 0%, #fff 100%);
      position: relative;
      overflow: hidden;
}

.how-it-works::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
            radial-gradient(
                  circle at 10% 20%,
                  rgba(233, 30, 99, 0.03) 0%,
                  transparent 50%
            ),
            radial-gradient(
                  circle at 90% 80%,
                  rgba(255, 87, 34, 0.03) 0%,
                  transparent 50%
            );
}

.steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      position: relative;
}

.steps-grid::before {
      content: "";
      position: absolute;
      top: 80px;
      left: 15%;
      width: 70%;
      height: 3px;
      background: var(--gradient);
      opacity: 0.2;
      z-index: 0;
}

.step-card {
      background: var(--white);
      padding: 50px 35px;
      border-radius: 30px;
      text-align: center;
      position: relative;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 1;
      border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-card:hover {
      transform: translateY(-15px);
      box-shadow: var(--shadow-lg);
}

.step-number {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gradient);
      color: var(--white);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.1rem;
      box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.step-icon {
      width: 100px;
      height: 100px;
      background: var(--gradient-soft);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 20px auto 30px;
      font-size: 2.8rem;
      transition: all 0.3s ease;
}

.step-card:hover .step-icon {
      transform: scale(1.1) rotate(10deg);
      background: var(--gradient);
}

.step-card:hover .step-icon i {
      color: var(--white);
}

.step-icon i {
      color: var(--primary-color);
      transition: color 0.3s ease;
}

.step-card h3 {
      font-size: 1.3rem;
      margin-bottom: 12px;
      color: var(--secondary-color);
      font-weight: 700;
}

.step-card p {
      color: var(--text-light);
      font-size: 1rem;
      line-height: 1.7;
}

/* ========================================
   LOCATIONS
   ======================================== */
.locations-section {
      background: var(--white);
      position: relative;
}

.locations-grid {
      display: flex;
      justify-content: center;
      gap: 50px;
      flex-wrap: wrap;
      margin-bottom: 50px;
}

.location-card {
      background: var(--white);
      padding: 50px 60px;
      border-radius: 30px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
      border: 2px solid transparent;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      min-width: 300px;
      position: relative;
      overflow: hidden;
}

.location-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--gradient);
      transform: scaleX(0);
      transition: transform 0.3s ease;
}

.location-card:hover {
      border-color: var(--primary-light);
      transform: translateY(-15px);
      box-shadow: var(--shadow-lg);
}

.location-card:hover::before {
      transform: scaleX(1);
}

.location-icon {
      width: 90px;
      height: 90px;
      background: var(--gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      font-size: 2.2rem;
      color: var(--white);
      box-shadow: 0 15px 35px rgba(233, 30, 99, 0.3);
      transition: transform 0.3s ease;
}

.location-card:hover .location-icon {
      transform: scale(1.1);
}

.location-card h3 {
      font-size: 1.6rem;
      margin-bottom: 10px;
      color: var(--secondary-color);
      font-weight: 700;
}

.location-card p {
      color: var(--text-light);
      margin-bottom: 20px;
      font-size: 1rem;
}

.delivery-time {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gradient-soft);
      color: var(--primary-color);
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
}

.coming-soon {
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: var(--text-light);
      font-size: 1.1rem;
}

.coming-soon i {
      color: var(--primary-color);
      font-size: 1.3rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
      position: relative;
      padding: 140px 0;
      overflow: hidden;
}

.cta-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gradient);
      z-index: 0;
}

.cta-bg::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
            radial-gradient(
                  circle at 20% 30%,
                  rgba(255, 255, 255, 0.15) 0%,
                  transparent 40%
            ),
            radial-gradient(
                  circle at 80% 70%,
                  rgba(255, 255, 255, 0.1) 0%,
                  transparent 40%
            );
}

.cta-bg::after {
      content: "🍕🍔🥟";
      position: absolute;
      bottom: 20px;
      right: 5%;
      font-size: 4rem;
      opacity: 0.15;
      letter-spacing: 20px;
}

.cta-content {
      position: relative;
      z-index: 1;
      text-align: center;
      color: var(--white);
}

.cta-logo {
      height: 140px;
      margin-bottom: 35px;
      /* filter: brightness(0) invert(1); */
      animation: float 3s ease-in-out infinite;
}

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

.cta-content h2 {
      font-size: 3.2rem;
      margin-bottom: 25px;
      font-weight: 800;
}

.cta-content p {
      font-size: 1.25rem;
      margin-bottom: 40px;
      opacity: 0.95;
}

.promo-code {
      background: rgba(255, 255, 255, 0.25);
      padding: 8px 20px;
      border-radius: 8px;
      font-family: "Courier New", monospace;
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 2px;
}

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

/* ========================================
   FOOTER
   ======================================== */
footer {
      background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
      color: #fff;
      padding: 100px 0 40px;
      position: relative;
}

footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: var(--gradient);
}

.footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 80px;
      margin-bottom: 60px;
}

.footer-logo {
      height: 80px;
      margin-bottom: 25px;
}

.footer-brand p {
      color: #888;
      margin-bottom: 30px;
      line-height: 1.9;
      font-size: 1rem;
}
.footer-brand img {
      filter: brightness(0) invert(1);
}

.social-links {
      display: flex;
      gap: 15px;
}

.social-links a {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
      background: var(--gradient);
      border-color: transparent;
      transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4 {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: var(--white);
      font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
      list-style: none;
}

.footer-links li,
.footer-contact li {
      margin-bottom: 15px;
}

.footer-links a {
      color: #888;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
}

.footer-links a:hover {
      color: var(--primary-color);
      transform: translateX(5px);
}

.footer-contact li {
      color: #888;
      display: flex;
      align-items: center;
      gap: 12px;
}

.footer-contact i {
      color: var(--primary-color);
      width: 20px;
}

.footer-bottom {
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      justify-content: space-between;
      color: #555;
      font-size: 0.9rem;
}

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

      .app-showcase-grid {
            grid-template-columns: 1fr;
            gap: 80px;
      }

      .app-screens {
            order: 2;
      }

      .screens-wrapper {
            height: 450px;
      }

      .screen-img {
            width: 190px;
      }

      .screen-2 {
            width: 210px;
      }

      /* Expanded state for tablet */
      .screens-wrapper.expanded .screen-1 {
            left: 5%;
      }

      .screens-wrapper.expanded .screen-3 {
            right: 5%;
      }
}

@media (max-width: 768px) {
      body {
            cursor: auto;
      }

      .cursor-main,
      .cursor-trail,
      .cursor-sparkle {
            display: none !important;
      }

      .navbar .container {
            padding: 0 20px;
      }

      .nav-links {
            position: fixed;
            right: 0;
            top: 0;
            height: 100vh;
            width: 75%;
            background: var(--white);
            flex-direction: column;
            align-items: center;
            padding-top: 100px;
            transform: translateX(100%);
            transition: transform 0.4s ease;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
            z-index: 999;
      }

      .nav-links a {
            color: var(--secondary-color);
      }

      .nav-links.active {
            transform: translateX(0);
      }

      .hamburger {
            display: block;
            cursor: pointer;
            z-index: 1001;
      }

      .bar {
            display: block;
            width: 28px;
            height: 3px;
            margin: 6px auto;
            background-color: black;
            transition: all 0.3s ease;
            border-radius: 2px;
      }

      .hamburger.toggle .bar:nth-child(2) {
            opacity: 0;
      }
      .hamburger.toggle .bar:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
      }
      .hamburger.toggle .bar:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
      }

      .hero {
            padding: 0px 0 60px; /* Increased top padding */
            min-height: auto;
      }

      .hero-bg {
            width: 100%;
            height: 100%; /* Cover full height */
            clip-path: none;
            top: 0;
            bottom: 0;
            background: linear-gradient(
                  180deg,
                  #fff 0%,
                  #fff8f6 100%
            ); /* Softer gradient */
            z-index: -1;
      }

      .hero-bg::after {
            display: none; /* Remove pattern overlay on mobile for cleaner look */
      }

      .hero-content {
            flex-direction: column;
            text-align: center;
            gap: 30px;
            margin-top: 20px;
      }

      .hero-text {
            max-width: 100%;
            margin-bottom: 20px;
            padding: 0 10px;
      }

      .hero-text h1 {
            font-size: 2.2rem;
            line-height: 1.2;
      }

      .hero-text p {
            font-size: 1rem;
            margin-bottom: 25px;
            color: var(--text-light); /* Ensure readability */
      }

      .hero-stats {
            justify-content: center;
            gap: 15px; /* Reduced gap to prevent wrapping */
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            display: grid; /* Use grid for better control */
            grid-template-columns: repeat(3, 1fr); /* 3 columns */
      }

      .stat {
            text-align: center;
      }

      .stat-number {
            font-size: 1.4rem; /* Slightly smaller */
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
      }

      .stat-label {
            font-size: 0.7rem;
            color: var(--text-light); /* Ensure good contrast */
            margin-top: 5px;
            display: block;
      }

      .app-buttons {
            justify-content: center;
            flex-direction: column;
            align-items: center;
            gap: 12px;
      }

      .btn-app {
            padding: 12px 24px;
            width: 100%;
            max-width: 220px;
            justify-content: center;
      }

      .btn-app i {
            font-size: 1.6rem;
            margin-right: 10px;
      }

      .store-name {
            font-size: 0.95rem;
      }

      /* Hide hero phone mockups on mobile - cleaner look */
      .hero-image {
            display: none;
      }

      .scroll-down {
            display: none;
      }

      .section {
            padding: 60px 0;
      }

      .section-header {
            margin-bottom: 40px;
      }

      .section-badge {
            font-size: 0.75rem;
            padding: 8px 16px;
      }

      .section-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
      }

      .section-subtitle {
            font-size: 1rem;
      }

      /* Menu Section Mobile */
      .menu-categories {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
      }

      .menu-category {
            padding: 20px 12px;
            border-radius: 18px;
      }

      .category-icon {
            font-size: 2.2rem;
            margin-bottom: 12px;
      }

      .menu-category h3 {
            font-size: 0.9rem;
      }

      .menu-category p {
            font-size: 0.75rem;
      }

      .menu-cta p {
            font-size: 0.95rem;
      }

      .btn-primary {
            padding: 14px 32px;
            font-size: 0.95rem;
      }

      /* App Showcase Section Mobile */
      .app-showcase {
            padding: 60px 0;
      }

      .app-showcase-grid {
            gap: 40px;
      }

      /* Hide app screens mockups on mobile */
      .app-screens {
            display: none;
      }

      .app-info {
            text-align: center;
      }

      .app-info .section-header {
            text-align: center !important;
      }

      .app-info h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
      }

      .app-info > p {
            font-size: 1rem;
            margin-bottom: 30px;
      }

      .feature-list {
            margin-bottom: 30px;
      }

      .feature-item {
            padding: 16px;
            margin-bottom: 15px;
            border-radius: 14px;
      }

      .feature-item:hover {
            transform: none;
      }

      .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            font-size: 1.1rem;
      }

      .feature-content h4 {
            font-size: 1rem;
      }

      .feature-content p {
            font-size: 0.85rem;
      }

      /* How It Works Mobile */
      .how-it-works {
            padding: 60px 0;
      }

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

      .steps-grid::before {
            display: none;
      }

      .step-card {
            padding: 40px 25px;
            border-radius: 24px;
      }

      .step-card:hover {
            transform: none;
      }

      .step-number {
            width: 42px;
            height: 42px;
            font-size: 1rem;
            top: -18px;
      }

      .step-icon {
            width: 80px;
            height: 80px;
            font-size: 2.2rem;
            margin: 15px auto 20px;
      }

      .step-card h3 {
            font-size: 1.15rem;
            margin-bottom: 10px;
      }

      .step-card p {
            font-size: 0.9rem;
      }

      /* Locations Mobile */
      .locations-section {
            padding: 60px 0;
      }

      .locations-grid {
            gap: 20px;
            flex-direction: column;
      }

      .location-card {
            padding: 30px 25px;
            min-width: 100%;
            border-radius: 24px;
      }

      .location-card:hover {
            transform: none;
      }

      .location-icon {
            width: 70px;
            height: 70px;
            font-size: 1.8rem;
            margin-bottom: 20px;
      }

      .location-card h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
      }

      .location-card p {
            font-size: 0.9rem;
            margin-bottom: 15px;
      }

      .delivery-time {
            font-size: 0.8rem;
            padding: 8px 16px;
      }

      .coming-soon {
            font-size: 0.95rem;
            margin-top: 10px;
      }

      /* CTA Section Mobile */
      .cta-section {
            padding: 80px 0;
      }

      .cta-logo {
            width: 100px;
            margin-bottom: 25px;
      }

      .cta-content h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
      }

      .cta-content p {
            font-size: 1rem;
            margin-bottom: 30px;
      }

      .promo-code {
            font-size: 1rem;
            padding: 6px 14px;
      }

      .cta-section .app-buttons {
            flex-direction: column;
            align-items: center;
      }

      .cta-section .btn-app {
            max-width: 220px;
      }

      /* Footer Mobile */
      .footer-grid {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
      }

      .footer-logo {
            height: 60px;
      }

      .footer-brand p {
            font-size: 0.9rem;
      }

      .social-links {
            justify-content: center;
      }

      .social-links a {
            width: 44px;
            height: 44px;
            font-size: 1.1rem;
      }

      .footer-links h4,
      .footer-contact h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
      }

      .footer-links li,
      .footer-contact li {
            margin-bottom: 12px;
            font-size: 0.9rem;
      }

      .footer-contact li {
            justify-content: center;
      }

      .footer-bottom {
            flex-direction: column;
            gap: 10px;
            text-align: center;
            padding-top: 30px;
      }

      .footer-bottom p {
            font-size: 0.8rem;
      }
}
