/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', 'Inter', 'Poppins', sans-serif;
  color: #1a1a2e;
  background: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 15, 50, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: #ffffff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-align: center;
}

.btn-order {
  background: #E23744;
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
}

.btn-order:hover {
  background: #c9303b;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(226, 55, 68, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #000d2b 0%, #001845 30%, #002d6e 60%, #0047ab 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0, 121, 242, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 121, 242, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(0, 200, 255, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: #fff;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #5ba8ff;
  background: rgba(0, 121, 242, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #b8d4f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.btn-platform {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}

.btn-swiggy {
  background: #FC8019;
}

.btn-swiggy:hover {
  background: #e5720f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 128, 25, 0.4);
}

.btn-zomato {
  background: #E23744;
}

.btn-zomato:hover {
  background: #c9303b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 55, 68, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.platform-icon {
  width: 20px;
  height: 20px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #FFD700;
}

.stat-stars {
  display: flex;
  gap: 2px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 121, 242, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-food-img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
  animation: floatFood 6s ease-in-out infinite;
}

@keyframes floatFood {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: #0079F2;
  color: #fff;
  padding: 16px 0;
}

.stats-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.stats-locations {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.stats-divider {
  opacity: 0.4;
}

.stats-cities {
  opacity: 0.85;
}

.stats-rating-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, #f0f6ff 0%, #f8fafc 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 121, 242, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 121, 242, 0.12);
}

.testimonial-quote {
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: rgba(0, 121, 242, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a1a2e;
  display: block;
  margin-bottom: 4px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #0079F2;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.section-description {
  text-align: center;
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ===== MENU SECTION ===== */
.menu-section {
  padding: 80px 0;
  background: #fff;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid #e2e8f0;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.25s;
}

.menu-tab:hover {
  border-color: #0079F2;
  color: #0079F2;
}

.menu-tab.active {
  background: #0079F2;
  border-color: #0079F2;
  color: #fff;
}

.menu-tab-content {
  display: none;
}

.menu-tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.menu-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 121, 242, 0.12);
}

.menu-card-image {
  height: 220px;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.05);
}

.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f0fe, #f0f6ff);
}

.placeholder-icon {
  opacity: 0.5;
}

.menu-card-body {
  padding: 24px;
}

.menu-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0079F2;
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.85rem;
  background: #0079F2;
  color: #fff;
  border-radius: 8px;
}

.btn-small:hover {
  background: #0064cc;
  transform: translateY(-1px);
}

/* ===== LOCATIONS ===== */
.locations-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f0f6ff 0%, #f8fafc 100%);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.location-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 121, 242, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 121, 242, 0.12);
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.location-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 121, 242, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
}

.location-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #0079F2;
  background: rgba(0, 121, 242, 0.1);
  padding: 2px 10px;
  border-radius: 50px;
  margin-top: 4px;
}

.location-brand {
  font-weight: 600;
  color: #334155;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.location-address {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 8px;
}

.location-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #334155;
  font-weight: 500;
  margin-bottom: 16px;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(0, 121, 242, 0.08);
  color: #0079F2;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.25s;
  margin-top: 8px;
}

.btn-directions:hover {
  background: #0079F2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 121, 242, 0.3);
}

/* ===== SOCIAL SECTION ===== */
.social-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #001845 0%, #002d6e 50%, #0047ab 100%);
}

.social-inner {
  text-align: center;
  color: #fff;
}

.social-icon-wrap {
  margin-bottom: 24px;
}

.social-ig-icon {
  display: inline-block;
  opacity: 0.9;
}

.social-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.social-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.social-link {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #5ba8ff;
  padding: 12px 32px;
  border: 2px solid rgba(91, 168, 255, 0.4);
  border-radius: 50px;
  transition: all 0.25s;
}

.social-link:hover {
  background: rgba(91, 168, 255, 0.15);
  border-color: #5ba8ff;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: #000d2b;
  padding: 48px 0 32px;
  color: #fff;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #b8d4f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: rgba(0, 121, 242, 0.5);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-food-img {
    max-width: 360px;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(0, 15, 50, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    backdrop-filter: blur(16px);
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 40px;
  }

  .hero-inner {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .stats-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .stats-locations {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-platform,
  .btn-outline {
    justify-content: center;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .social-title {
    font-size: 1.6rem;
  }
}
