/* ===========================
   CSS VARIABLES & THEMING
   =========================== */
:root {
  --primary: #C41E3A;
  --primary-light: #E63A52;
  --primary-dark: #9D172D;
  --primary-glow: rgba(196, 30, 58, 0.15);
  --accent: #D4A843;
  --accent-light: #E6C273;
  --accent-dark: #B89032;
  --accent-glow: rgba(212, 168, 67, 0.15);
  --cream: #FFF8F0;
  --cream-dark: #F5E6D3;
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #595959;
  --white: #FFFFFF;
  --off-white: #FAFAF5;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 4px 20px rgba(212, 168, 67, 0.25);
  --shadow-red: 0 4px 20px rgba(196, 30, 58, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   RESET & BASE STYLES
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--text-medium);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-medium);
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-light);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

section {
  padding: 5rem 2rem;
}

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

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.35);
  color: var(--white);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--text-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
}

.btn-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--text-dark);
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
  color: var(--text-dark);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

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

.btn-large {
  padding: 1.1rem 3rem;
  font-size: 1.1rem;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes hvFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes hvPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes hvSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatItem {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes spinRing {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(196, 30, 58, 0.2); }
  50% { box-shadow: 0 0 40px rgba(196, 30, 58, 0.4); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

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

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-glow);
}

.cta-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white) !important;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-red);
  min-height: 44px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(196, 30, 58, 0.35);
  color: var(--white) !important;
}

/* Nav CTA Group — dual buttons */
.nav-cta-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.cta-button-gold {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%) !important;
  color: var(--text-dark) !important;
  box-shadow: var(--shadow-gold) !important;
}

.cta-button-gold:hover {
  box-shadow: 0 6px 25px rgba(212, 168, 67, 0.45) !important;
  color: var(--text-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===========================
   PAGE HEADER (Inner Pages)
   =========================== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #7A1124 100%);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.page-header .subtitle {
  font-size: 1.15rem;
  opacity: 0.92;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
}

.header-content {
  position: relative;
  z-index: 1;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 50%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

.hero-tagline {
  text-transform: uppercase;
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
  display: inline-block;
  background: var(--accent-glow);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--accent-light);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.12rem;
  margin-bottom: 2.5rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-out;
}

.orbit-container {
  position: relative;
  width: 400px;
  height: 400px;
  animation: hvSpin 30s linear infinite;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 40px rgba(196, 30, 58, 0.3), 0 0 80px rgba(196, 30, 58, 0.1);
  z-index: 10;
  animation: hvSpin 30s linear infinite reverse, hvPulse 4s ease-in-out infinite;
}

.center-text-large {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
}

.center-text-small {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 370px;
  height: 370px;
  border: 2px dashed var(--accent-light);
  border-radius: 50%;
  opacity: 0.6;
}

.food-emoji {
  position: absolute;
  font-size: 2.5rem;
  animation: hvSpin 30s linear infinite reverse;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  z-index: 5;
}

/* Position emojis evenly around the orbit circle (6 items, 60deg apart) */
.food-emoji.emoji-1 { top: 2%;   left: 50%;  transform: translate(-50%, -50%); }
.food-emoji.emoji-2 { top: 25%;  left: 93%;  transform: translate(-50%, -50%); }
.food-emoji.emoji-3 { top: 75%;  left: 93%;  transform: translate(-50%, -50%); }
.food-emoji.emoji-4 { top: 98%;  left: 50%;  transform: translate(-50%, -50%); }
.food-emoji.emoji-5 { top: 75%;  left: 7%;   transform: translate(-50%, -50%); }
.food-emoji.emoji-6 { top: 25%;  left: 7%;   transform: translate(-50%, -50%); }

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: hvSparkle 2.5s ease-in-out infinite;
}

.hero-visual > .sparkle:nth-of-type(1) { top: 30px; right: 40px; animation-delay: 0s; }
.hero-visual > .sparkle:nth-of-type(2) { bottom: 40px; left: 60px; animation-delay: 0.8s; }
.hero-visual > .sparkle:nth-of-type(3) { top: 45%; right: 15px; animation-delay: 1.6s; }

/* ===========================
   STATS SECTION
   =========================== */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #7A1124 100%);
  color: var(--white);
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   REVIEWS WIDGET
   =========================== */
.reviews-widget-section {
  padding: 4rem 2rem;
  background: var(--off-white);
  text-align: center;
}

.reviews-widget-section h2 {
  margin-bottom: 0.75rem;
}

.reviews-widget-alt {
  background: var(--cream);
}

.feedspace-embed {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===========================
   SECTION SHARED STYLES
   =========================== */
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* ===========================
   MENU PREVIEW (Homepage)
   =========================== */
.menu-preview-section {
  padding: 5rem 2rem;
  background: var(--off-white);
  position: relative;
}

.menu-preview-section h2 {
  text-align: center;
}

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

.menu-card {
  background: var(--white);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

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

.menu-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: hvFloat 4s ease-in-out infinite;
}

.menu-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

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

.explore-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
}

.explore-link:hover {
  color: var(--accent-dark);
  gap: 0.6rem;
}

.menu-preview-section > .container > .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ===========================
   WHY CHOOSE / FEATURES
   =========================== */
.why-choose-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.why-choose-section h2 {
  text-align: center;
}

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

.feature-card {
  background: linear-gradient(145deg, var(--cream) 0%, var(--white) 100%);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(212, 168, 67, 0.15);
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: width 0.4s ease;
}

.feature-card:hover::after {
  width: 100px;
}

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

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-size: 1.2rem;
}

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

/* ===========================
   FAQ ACCORDION
   =========================== */
.faq-section {
  padding: 5rem 2rem;
  background: var(--off-white);
}

.faq-section h2 {
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: var(--shadow);
  text-align: left;
}

.faq-question:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-md);
}

.faq-question.open {
  border-color: var(--accent);
  background: var(--cream);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-left: 4px solid var(--accent);
  margin-top: 0.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  color: var(--text-medium);
  line-height: 1.8;
}

.faq-answer[hidden] {
  display: none;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #7A1124 100%);
  color: var(--white);
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* Override btn-primary inside CTA banner to use gold */
.cta-banner .btn,
.cta-banner .btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--text-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

.cta-banner .btn:hover,
.cta-banner .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
  color: var(--text-dark);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: linear-gradient(180deg, var(--text-dark) 0%, #111 100%);
  color: var(--white);
  padding: 4rem 2rem 1.5rem;
}

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

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-column h4 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-column a {
  display: inline-block;
  transition: var(--transition);
}

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

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-nap {
  line-height: 1.8;
}

.footer-phone {
  font-weight: 600;
  color: var(--accent) !important;
}

.footer-hours {
  margin-top: 1rem;
}

.footer-socials {
  margin-top: 1rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 1rem;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* ===========================
   PAGE: MENU
   =========================== */
.menu-page {
  padding: 4rem 2rem;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  min-height: 44px;
}

.filter-tab:hover {
  background: var(--primary-glow);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-red);
}

.menu-categories {
  max-width: 1100px;
  margin: 0 auto;
}

.menu-category {
  display: none;
  margin-bottom: 3rem;
}

.menu-category[data-category-active] {
  display: block;
}

.menu-category h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.menu-category h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.menu-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.menu-item:hover::before {
  transform: scaleY(1);
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.menu-item h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-family: 'Poppins', sans-serif;
}

.menu-price {
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1.15rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.menu-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ===========================
   PAGE: ABOUT
   =========================== */
.about-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.highlight-card {
  background: linear-gradient(145deg, var(--cream) 0%, var(--white) 100%);
  padding: 1.5rem 1.2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(212, 168, 67, 0.15);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}

.highlight-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.highlight-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-medium);
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* About animation */
.about-anim {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-item {
  position: absolute;
  font-size: 2.8rem;
  animation: floatItem 3.5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  z-index: 5;
}

.floating-item:nth-child(1) { top: 15px; left: 25%; }
.floating-item:nth-child(2) { top: 40%; right: 10%; }
.floating-item:nth-child(3) { bottom: 20px; left: 40%; }

.rotating-ring {
  position: absolute;
  border: 2px solid var(--accent-light);
  border-radius: 50%;
  animation: spinRing 18s linear infinite;
  opacity: 0.5;
}

.rotating-ring.ring-1 {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
}

.rotating-ring.ring-2 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  animation-direction: reverse;
  border-style: dashed;
}

.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--accent-light);
}

.center-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.2rem;
}

.center-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.center-content p {
  color: var(--text-medium);
  font-size: 0.8rem;
  margin: 0;
}

/* Values Section */
.values-section {
  padding: 5rem 2rem;
  background: var(--off-white);
}

.values-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.value-card p {
  color: var(--text-medium);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ===========================
   PAGE: CONTACT
   =========================== */
.contact-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.contact-intro h2 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.contact-intro p {
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--cream);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid rgba(212, 168, 67, 0.1);
}

.contact-detail-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}

.detail-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.detail-text h4 {
  color: var(--primary);
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.detail-text p {
  color: var(--text-medium);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.detail-text a {
  color: var(--primary);
  font-weight: 600;
}

.contact-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Contact Cards Section */
.contact-cards-section {
  padding: 4rem 2rem;
  background: var(--off-white);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.contact-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.contact-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Maps Section */
.maps-section {
  padding: 4rem 2rem;
  background: var(--white);
}

.maps-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.maps-section iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ===========================
   PAGE: BLOG
   =========================== */
.blog-section {
  padding: 4rem 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card-content {
  padding: 1.75rem;
}

.blog-date {
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  line-height: 1.4;
}

.blog-card h3 a {
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--accent-dark);
  gap: 0.6rem;
}

/* ===========================
   BLOG POST PAGE
   =========================== */
.post-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 3rem 2rem;
}

.post-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.post-content p {
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.post-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent-light);
}

.post-sidebar {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
}

.post-sidebar h4 {
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.sidebar-item {
  margin-bottom: 1.5rem;
}

.sidebar-item a {
  color: var(--text-medium);
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.sidebar-item a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 2rem;
}

.sidebar-cta h4 {
  color: var(--white) !important;
  margin-bottom: 0.75rem;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ===========================
   SEO LANDING PAGES
   =========================== */
.landing-hero {
  padding: 5rem 2rem;
  background: var(--cream);
  margin-top: 72px;
}

.landing-content {
  max-width: 900px;
  margin: 0 auto;
}

.landing-content h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.landing-content p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

/* Blog post layout (Lal Qila-style blog posts used in Ajwa too) */
.blog-container {
  padding: 3rem 2rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-post p {
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.sidebar-widget h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.recent-posts {
  list-style: none;
  padding: 0;
}

.recent-posts li {
  margin-bottom: 0.75rem;
}

.recent-posts li a {
  color: var(--text-medium);
  font-size: 0.9rem;
  transition: var(--transition);
}

.recent-posts li a:hover {
  color: var(--primary);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.cta-card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.cta-card a {
  color: var(--accent) !important;
  font-weight: 600;
}

/* ===========================
   PAGE: LEGAL (Privacy & Terms)
   =========================== */
.legal-content {
  padding: 4rem 2rem;
  max-width: 850px;
  margin: 0 auto;
}

.legal-container {
  line-height: 1.8;
  color: var(--text-medium);
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.legal-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.legal-content a {
  color: var(--primary);
  font-weight: 500;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ===========================
   PAGE: ORDER ONLINE
   =========================== */
.order-hero {
  padding: 8rem 2rem 5rem;
  margin-top: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #7A1124 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.order-hero .hero-tagline {
  color: var(--accent-light);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
}

.order-hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.2rem;
}

.order-hero-desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.order-hero-desc strong {
  color: var(--accent);
}

.order-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-order-uber {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--text-dark);
  padding: 1.1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 25px rgba(212, 168, 67, 0.45);
  animation: hvPulse 3s ease-in-out infinite;
}

.btn-order-uber:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 35px rgba(212, 168, 67, 0.55);
  color: var(--text-dark);
}

.btn-order-call {
  background: var(--white);
  color: var(--primary);
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid var(--white);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-order-call:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Order Steps */
.order-steps-section {
  padding: 5rem 2rem;
  background: var(--off-white);
}

.order-steps-section h2 {
  text-align: center;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.order-step {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.order-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.order-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: var(--primary-glow);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.order-step h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.order-step p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Delivery Areas */
.delivery-areas-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.delivery-areas-section h2 {
  text-align: center;
}

.delivery-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.delivery-area-card {
  background: var(--cream);
  padding: 1.75rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(212, 168, 67, 0.1);
}

.delivery-area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}

.area-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.delivery-area-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.delivery-area-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Order Menu Preview */
.order-menu-preview {
  padding: 5rem 2rem;
  background: var(--off-white);
}

.order-menu-preview h2 {
  text-align: center;
}

.order-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.order-menu-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.order-menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.order-menu-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.order-menu-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.price-from {
  color: var(--accent-dark);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.order-menu-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.order-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
}

.animate-on-scroll.visible {
  animation: fadeInUp 0.8s ease-out forwards;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ===========================
   RESPONSIVE: 1024px
   =========================== */
@media (max-width: 1024px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-text { text-align: center; }

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

  .hero-visual {
    height: 380px;
  }

  .orbit-container {
    width: 340px;
    height: 340px;
  }

  .orbit-ring {
    width: 320px;
    height: 320px;
  }

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

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

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-visual {
    order: -1;
  }

  .about-anim {
    height: 320px;
  }

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

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

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .post-container {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    position: static;
  }

  /* Order Page - 1024px */
  .order-hero h1 {
    font-size: 2.4rem;
  }

  .order-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

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

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

  section {
    padding: 4rem 1.5rem;
  }
}

/* ===========================
   RESPONSIVE: 768px
   =========================== */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.3rem; }

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

  .hero-description {
    font-size: 1rem;
  }

  .navbar-container {
    padding: 0.8rem 1rem;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

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

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

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

  /* Order Page - 768px */
  .order-hero h1 {
    font-size: 2rem;
  }

  .order-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .order-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  section {
    padding: 3.5rem 1.5rem;
  }
}

/* ===========================
   RESPONSIVE: 640px
   =========================== */
@media (max-width: 640px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }

  .navbar {
    padding: 0;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 64px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    padding: 1.5rem 0;
    gap: 0;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    padding: 0.9rem 1.5rem;
    display: block;
    font-size: 1rem;
    border-radius: 0;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--cream);
  }

  .hamburger {
    display: flex;
  }

  .cta-button {
    display: none;
  }

  .hero {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 1.85rem;
    -webkit-text-fill-color: var(--text-dark);
    background: none;
  }

  .hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-visual {
    height: 280px;
    margin-top: 1rem;
  }

  .orbit-container {
    width: 250px;
    height: 250px;
  }

  .orbit-ring {
    width: 235px;
    height: 235px;
  }

  .orbit-center {
    width: 110px;
    height: 110px;
  }

  .center-text-large {
    font-size: 1.8rem;
  }

  .center-text-small {
    font-size: 0.8rem;
  }

  .food-emoji {
    font-size: 1.8rem;
  }

  .stats-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .menu-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    padding: 1.8rem 1.5rem;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    gap: 0.5rem;
  }

  .filter-tab {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .highlights {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .highlight-card {
    padding: 1.2rem 0.8rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-header {
    padding: 3.5rem 1.5rem 3rem;
    margin-top: 64px;
  }

  .faq-question {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 1rem 1.2rem;
  }

  .post-container {
    padding: 2rem 1rem;
  }

  .about-anim {
    height: 260px;
  }

  .rotating-ring.ring-1 {
    width: 220px;
    height: 220px;
  }

  .rotating-ring.ring-2 {
    width: 140px;
    height: 140px;
  }

  .center-content {
    width: 100px;
    height: 100px;
  }

  .center-icon {
    font-size: 1.8rem;
  }

  .center-number {
    font-size: 1.3rem;
  }

  .floating-item {
    font-size: 2rem;
  }

  /* Order Page - 640px */
  .nav-cta-group {
    display: none;
  }

  .order-hero {
    padding: 6rem 1rem 3rem;
  }

  .order-hero h1 {
    font-size: 1.7rem;
  }

  .order-hero-desc {
    font-size: 1rem;
  }

  .order-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-order-uber {
    font-size: 1.05rem;
    padding: 1rem 2rem;
  }

  .order-steps {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 1.2rem;
  }

  .delivery-areas-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .order-menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .order-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .maps-section iframe {
    height: 280px;
  }

  section {
    padding: 2.5rem 1rem;
  }
}
