/* ========================================
   Ni Hao Asian Café - Customer-Focused Styles
   Optimized for conversion and performance
   ======================================== */

/* CSS Variables */
:root {
  --primary-dark: #0A0E2A;
  --accent-gold: #FFD700;
  --secondary-red: #E84545;
  --text-light: #EAEAEA;
  --text-muted: #B0B0B0;
  --border-gold: #FFD700;
  --hover-glow: rgba(255, 215, 0, 0.3);
  --shadow-primary: rgba(10, 14, 42, 0.5);
  --shadow-gold: rgba(255, 215, 0, 0.2);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  background: #0E1A2B;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

p, li, span {
  font-size: clamp(14px, 4vw, 16px);
  line-height: 1.6;
}

.container, .hero-container, section {
  max-width: 100%;
  overflow-x: hidden;
}

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

/* ========================================
   HEADER / NAVBAR
   ======================================== */
/* ========================================
   CLEAN NAVBAR - iPhone & Desktop Friendly
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #000000;
  border-bottom: 2px solid #d4af37;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

.navbar-brand {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  margin-right: 16px !important;
  padding: 8px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.navbar-brand:hover {
  transform: scale(1.05);
  box-shadow: none !important;
}

.navbar-brand:hover .nav-logo,
.navbar-brand:hover .navbar-logo {
  box-shadow: 0 0 20px #ffb700, 0 0 35px rgba(255, 183, 0, 0.6) !important;
}

/* Logo Wrapper - Perfect Circle Mask */
.nav-logo-wrapper {
  overflow: hidden;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.navbar-logo,
nav img.logo,
.nav-logo {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center !important;
  border: 2px solid #FFD700 !important;
  box-shadow: 0 0 15px #ffb700, 0 0 25px rgba(255, 183, 0, 0.4) !important;
  background-color: transparent !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  /* High Definition Rendering - Smooth for iPhone */
  image-rendering: -webkit-optimize-contrast !important;
  image-rendering: auto !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
  -webkit-transform: translateZ(0) !important;
  transform: translateZ(0) !important;
  /* Remove any blur filters */
  filter: none !important;
  -webkit-filter: none !important;
  /* Ensure sharp rendering */
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  /* Prevent subpixel rendering */
  will-change: transform !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* iOS/Safari specific - Better image rendering on touch devices */
@supports (-webkit-overflow-scrolling: touch) {
  .nav-logo,
  .navbar-logo {
    image-rendering: auto !important;
  }
}

.navbar-nav,
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  gap: 10px;
  flex-wrap: nowrap;
  flex-shrink: 0;
  flex: 1;
}

/* Navigation Buttons - Clean & iPhone-Friendly */
.nav-btn,
nav .nav-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  font-weight: 600;
  border: 1.5px solid #FFD700;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  color: #FFD700;
  background: transparent;
}

.nav-btn:hover,
.nav-btn:active,
nav .nav-buttons a:hover {
  background-color: #FFD700;
  color: #000;
}

.nav-call-btn {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
  border-color: #22c55e;
  color: #22c55e;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 8px rgba(34, 197, 94, 0.2);
}

.nav-call-btn:hover {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5), 0 0 25px rgba(34, 197, 94, 0.3);
  transform: translateZ(0) translateY(-2px);
}

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

.nav-call-btn::after {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
}


/* Hamburger Menu Button */
.hamburger-btn {
  display: none; /* Hidden on desktop, shown on mobile */
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  margin: 0 !important;
  position: relative;
}

/* Ensure navbar-nav is visible on desktop */
@media (min-width: 769px) {
  .navbar-nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    flex-direction: row !important;
    padding: 0 !important;
  }
  
  .hamburger-btn {
    display: none !important;
  }
  
  .nav-action-btn,
  .nav-link {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

.hamburger-btn::before,
.hamburger-btn::after {
  display: none !important;
}

.hamburger-btn * {
  background: transparent !important;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #d4af37;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

.nav-link {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid #d4af37;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(212, 175, 55, 0.2);
}

.nav-link:hover {
  background: #d4af37;
  color: #000000;
  transform: translateZ(0) translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.nav-link.active {
  background: #d4af37;
  color: #000000;
}

/* Unified Navigation Action Buttons */
.nav-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #d4af37;
  border: 2px solid #d4af37;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(212, 175, 55, 0.3),
    0 0 20px rgba(212, 175, 55, 0.15),
    inset 0 1px 2px rgba(212, 175, 55, 0.2);
}

.nav-action-btn:hover {
  background: linear-gradient(135deg, #d4af37 0%, #f1c232 100%);
  color: #000000;
  border-color: #d4af37;
  transform: translateZ(0) translateY(-2px) scale(1.05);
  box-shadow: 
    0 0 20px rgba(212, 175, 55, 0.6),
    0 0 40px rgba(212, 175, 55, 0.3),
    inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.nav-action-btn:active {
  transform: scale(0.98);
}

.nav-action-btn span {
  font-size: 18px;
  display: inline-block;
}

/* Phone Button - Special Styling */
.nav-call-btn {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(212, 175, 55, 0.3),
    0 0 20px rgba(212, 175, 55, 0.15),
    inset 0 1px 2px rgba(212, 175, 55, 0.2);
}

.nav-call-btn:hover {
  background: linear-gradient(135deg, #d4af37 0%, #f1c232 100%);
}


/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: linear-gradient(135deg, #0A0E2A 0%, #1A1E3D 50%, #11173A 100%);
  padding: 190px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-ordering-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 15px;
  text-shadow: 0 0 10px var(--hover-glow);
  opacity: 0.9;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 20px;
  text-shadow: 0 0 20px var(--hover-glow);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-established {
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  min-height: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-btn.primary {
  background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%);
  color: var(--primary-dark);
  border: 2px solid var(--accent-gold);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-btn.primary:hover {
  background: linear-gradient(135deg, #FFED4E 0%, #FFD700 100%);
  transform: translateZ(0) translateY(-2px);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3), 0 6px 15px rgba(0, 0, 0, 0.25);
}

.hero-btn.secondary {
  background: #000000;
  color: #FFD700;
  border: 2px solid #FFD700;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-btn.secondary:hover {
  background: #FFD700;
  color: #000000;
  transform: translateZ(0) translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 215, 0, 0.3);
}

.hero-btn.accent {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: white;
  border: 2px solid var(--accent-gold);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-btn.accent:hover {
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
  transform: translateZ(0) translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
  border-color: var(--accent-gold);
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 15px;
}

.hero-ordering-note {
  font-size: 1rem;
  color: var(--accent-gold);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ========================================
   MENU SECTION
   ======================================== */
.menu-section {
  background: linear-gradient(135deg, #0B0F2E 0%, #1A1E3D 100%);
  padding: 70px 0 60px;
  position: relative;
}

#menus,
#explore-kitchens {
  scroll-margin-top: 120px;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 0 0 15px var(--hover-glow);
}

.menu-grid,
.kitchen-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.menu-card,
.kitchen-card {
  background: #000000;
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px var(--shadow-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1 1 300px;
  max-width: 320px;
  min-height: 360px;
  height: auto;
  margin: 0 auto;
  width: 100%;
}

.menu-card:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
  border-color: var(--accent-gold);
  opacity: 0.95;
}

.menu-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.menu-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.menu-card p,
.kitchen-card p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.menu-btn {
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
  margin-top: auto;
}

.menu-btn:hover {
  background: var(--secondary-red);
  color: white;
  box-shadow: 0 6px 20px rgba(232, 69, 69, 0.3);
}
/* ========================================
   CATERING SECTION
   ======================================== */
.catering-section {
  background: linear-gradient(135deg, #1A1E3D 0%, #0A0E2A 100%);
  padding: 60px 0;
}

.kitchen-hours-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hours-card {
  background: #000000;
  border: 2px solid var(--accent-gold);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px var(--shadow-primary);
}

.hours-card:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  border-color: var(--accent-gold);
  opacity: 0.95;
}

.hours-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 15px;
  text-shadow: 0 0 10px var(--hover-glow);
}

.hours-card p {
  color: var(--text-light);
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.hours-card p:last-child {
  margin-bottom: 0;
}

.hours-card strong {
  color: var(--accent-gold);
  font-weight: 600;
}

.hours-note {
  color: var(--text-muted) !important;
  font-style: italic;
  font-size: 0.85rem !important;
  margin-top: 10px !important;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.catering-note {
  font-size: 0.9rem;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 40px;
  padding: 15px 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.catering-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0 auto;
}

.catering-dropdown {
  position: relative;
  display: inline-block;
}

.catering-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  outline: none;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.catering-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  border: 2px solid var(--accent-gold);
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--shadow-primary);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
  min-width: 250px;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.catering-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.catering-option {
  display: block;
  padding: 15px 20px;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.catering-option:last-child {
  border-bottom: none;
}

.catering-option:hover {
  background: var(--secondary-red);
  color: white;
  transform: translateX(5px);
}

.catering-btn {
  background: var(--secondary-red);
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(232, 69, 69, 0.3);
  display: inline-block;
  min-width: 250px;
  text-align: center;
}

.catering-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  /* Simplified hover - no transform for performance */
  box-shadow: 0 8px 25px var(--shadow-gold);
}

.catering-cta {
  font-size: 1rem;
  color: var(--accent-gold);
  text-align: center;
  margin-top: 20px;
  padding: 15px 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* ========================================
   REWARDS SECTION
   ======================================== */
.rewards-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #11173A 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.rewards-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.rewards-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.rewards-btn {
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.rewards-btn:hover {
  background: var(--secondary-red);
  color: white;
  box-shadow: 0 8px 25px rgba(232, 69, 69, 0.3);
}

/* ========================================
   FIND US SECTION
   ======================================== */
.find-us-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0A0E2A 100%);
  padding: 80px 0;
}

.map-container {
  opacity: 1 !important;
  transform: translateY(0);
  transition: all 0.8s ease;
  width: 100%;
  max-width: 100%;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  display: block !important;
  position: relative;
  padding: 6px;
  background: #d4af37;
  border: 3px solid #d4af37;
  box-shadow: 
    0 0 0 2px rgba(0, 0, 0, 0.3),
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(212, 175, 55, 0.6);
  visibility: visible !important;
}

.map-container iframe,
.map-container #map {
  width: 100% !important;
  height: 450px !important;
  min-height: 350px !important;
  border: 0 !important;
  border-radius: 8px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .map-container {
    margin: 16px auto;
    padding: 5px;
    border-width: 2px;
  }
  
  .map-container iframe,
  .map-container #map {
    height: 350px !important;
    min-height: 300px !important;
    border-radius: 7px;
  }
}

/* iPhone-specific optimizations for map container */
@media (max-width: 480px) {
  .map-container {
    margin: 12px auto;
    padding: 4px;
    border-width: 2px;
    border-radius: 10px;
  }
  
  .map-container iframe,
  .map-container #map {
    height: 300px !important;
    min-height: 250px !important;
    border-radius: 6px;
  }
}

@media (min-width: 769px) {
  .map-container #map {
    height: 500px !important;
  }
}

.map-container.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.location-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.address-block {
  background: #000000;
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.address-block p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 500;
}

.address-block p:last-child {
  margin-bottom: 0;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-btn {
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.contact-btn:hover {
  background: var(--secondary-red);
  color: white;
  box-shadow: 0 6px 20px rgba(232, 69, 69, 0.3);
}

.mobile-only {
  display: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #000818;
  padding: 30px 0;
  text-align: center;
  border-top: 2px solid var(--accent-gold);
  position: relative;
  z-index: 1;
}

.footer-ordering {
  color: var(--text-light) !important;
  font-size: 14px !important;
  margin: 10px 0 !important;
}

.footer-toast-link {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-toast-link:hover {
  color: var(--secondary-red);
}

.footer p {
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 500;
  margin: 5px 0;
}

.footer a {
  color: #FFD700 !important;
  text-decoration: underline !important;
  font-weight: bold !important;
  font-size: 18px !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
  margin: 0 4px !important;
  padding: 2px 4px !important;
  background: rgba(255, 215, 0, 0.1) !important;
  border-radius: 4px !important;
}

.footer a:hover {
  color: #FFA500 !important;
  text-decoration: underline !important;
  transform: scale(1.05);
  background: rgba(255, 215, 0, 0.2) !important;
}

.footer-logo-banner {
  margin: 0 auto 20px auto;
  text-align: center;
  max-width: 100%;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-logo-banner:hover {
  opacity: 1;
}

.footer-banner-img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  filter: brightness(0.95) contrast(1.05);
}

.footer-visitor-count {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-visitor-count p {
  color: var(--accent-gold);
  font-size: 14px;
  margin: 5px 0;
}

#visitorCount {
  color: #FFD700;
  font-weight: bold;
  font-size: 16px;
}

.visitor-count {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  opacity: 0.8;
}



/* ========================================
   RESPONSIVE DESIGN - iPhone & Mobile
   ======================================== */

/* Tablet & Small Desktop */
@media (max-width: 768px) {
  /* Navbar */
  .navbar-container {
    padding: 8px 14px;
    gap: 12px;
    min-height: 60px;
  }
  
  .navbar-brand {
    margin-right: 12px;
    padding: 6px 10px;
    border-radius: 10px;
  }
  
  .nav-logo-wrapper {
    width: 62px !important;
    height: 62px !important;
  }
  
  .navbar-logo,
  .nav-logo {
    width: 62px !important;
    height: 62px !important;
    border-radius: 50% !important;
    border: 2px solid #FFD700 !important;
    box-shadow: 0 0 12px #ffb700, 0 0 20px rgba(255, 183, 0, 0.4) !important;
  }
  
  .navbar-nav {
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: center;
    flex: 1;
  }
  
  .nav-btn {
    padding: 8px 14px;
    font-size: 15px;
    min-height: 38px;
    min-width: 55px;
    border-radius: 6px;
  }
  
  
  
  /* Hero Section */
  .hero {
    padding: 150px 15px 50px;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.4rem);
    margin-bottom: 15px;
  }
  
  .hero-buttons {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 100%;
    padding: 0 10px;
  }
  
  .hero-btn {
    min-height: 52px;
    padding: 14px 20px;
    font-size: 16px;
    width: 100%;
  }
  
  .pickup-time-notice {
    padding: 15px 12px;
    margin: 20px 10px;
    width: calc(100% - 20px);
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .pickup-time-text {
    font-size: clamp(15px, 3.5vw, 16px) !important;
  }
  
  /* Sections */
  .menu-section,
  .catering-section,
  .rewards-section,
  .find-us-section {
    padding: 50px 15px;
  }
  
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    font-size: clamp(14px, 4vw, 18px);
    margin-bottom: 30px;
  }
  
  /* Menu Cards */
  .menu-grid,
  .kitchen-cards {
    flex-direction: column;
    padding: 0 10px;
    align-items: center;
    gap: 20px;
  }
  
  .menu-card,
  .kitchen-card {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    min-height: 320px;
    padding: 24px 20px;
  }
  
  .menu-icon {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  .menu-card h3 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    margin-bottom: 10px;
  }
  
  .menu-card p {
    font-size: clamp(14px, 3.5vw, 16px);
    margin-bottom: 20px;
  }
  
  .menu-btn {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 15px;
    width: 100%;
  }
  
  /* Kitchen Hours */
  .kitchen-hours-info {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .hours-card {
    padding: 20px 15px;
  }
  
  .hours-card h3 {
    font-size: clamp(1.2rem, 4.5vw, 1.4rem);
    margin-bottom: 12px;
  }
  
  .hours-card p {
    font-size: clamp(15px, 3.5vw, 16px);
    margin-bottom: 8px;
  }
  
  /* Catering */
  .catering-note {
    font-size: clamp(13px, 3.5vw, 15px);
    padding: 15px;
    margin: 20px 10px;
  }
  
  .catering-buttons,
  .rewards-buttons {
    gap: 18px;
    max-width: 100%;
  }
  
  .catering-btn {
    min-height: 48px;
    padding: 14px 20px;
    font-size: 15px;
    width: 100%;
    max-width: 100%;
  }
  
  /* Rewards */
  .rewards-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 10px;
  }
  
  .rewards-btn {
    min-height: 48px;
    padding: 14px 20px;
    font-size: 15px;
    width: 100%;
  }
  
  /* Map */
  .map-container {
    margin: 20px 10px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .map-container iframe {
    height: 350px !important;
    min-height: 300px !important;
  }
  
  /* Contact Buttons */
  .contact-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 10px;
    margin-top: 25px;
  }
  
  .contact-btn {
    min-height: 48px;
    padding: 14px 20px;
    font-size: 15px;
    width: 100%;
  }
  
  /* Contact Info */
  .contact-info-section {
    padding: 20px 15px;
    margin: 25px 10px;
  }
  
  .contact-title {
    font-size: clamp(1.2rem, 4.5vw, 1.4rem);
    margin-bottom: 15px;
  }
  
  .address-line,
  .phone-number {
    font-size: clamp(15px, 3.5vw, 16px);
  }
  
  .sms-notice-text {
    font-size: clamp(15px, 3vw, 16px);
    line-height: 1.5;
  }
}

/* iPhone Small Screens */
@media (max-width: 480px) {
  /* Navbar */
  .navbar-container {
    padding: 8px 12px;
    gap: 10px;
    min-height: 56px;
  }
  
  .navbar-brand {
    margin-right: 10px;
    padding: 6px !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .nav-logo-wrapper {
    width: 55px !important;
    height: 55px !important;
  }
  
  .navbar-logo,
  .nav-logo {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    border: 2px solid #FFD700 !important;
    box-shadow: 0 0 10px #ffb700, 0 0 18px rgba(255, 183, 0, 0.4) !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .navbar-nav {
    gap: 6px;
    justify-content: center;
    flex: 1;
  }
  
  .nav-btn {
    padding: 8px 12px;
    font-size: 15px;
    min-height: 36px;
    min-width: 50px;
    border-radius: 6px;
  }
  
  
  
  /* Hero */
  .hero {
    padding: 150px 10px 50px;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    font-size: clamp(0.9rem, 4.5vw, 1.2rem);
    margin-bottom: 12px;
  }
  
  .hero-tagline,
  .hero-ordering-note {
    font-size: clamp(15px, 3.5vw, 16px);
    padding: 0 5px;
  }
  
  .hero-buttons {
    gap: 12px;
    padding: 0 5px;
  }
  
  .hero-btn {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 15px;
  }
  
  .pickup-time-notice {
    padding: 12px 10px;
    margin: 15px 5px;
    width: calc(100% - 10px);
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .pickup-time-text {
    font-size: clamp(15px, 3vw, 16px) !important;
  }
  
  /* Sections */
  .menu-section,
  .catering-section,
  .rewards-section,
  .find-us-section {
    padding: 40px 10px;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
    margin-bottom: 12px;
  }
  
  .section-subtitle {
    font-size: clamp(15px, 3.5vw, 16px);
    margin-bottom: 25px;
  }
  
  /* Menu Cards */
  .menu-grid,
  .kitchen-cards {
    gap: 18px;
  }
  
  .menu-card,
  .kitchen-card {
    min-height: 300px;
    padding: 22px 18px;
    max-width: 100%;
  }
  
  .rewards-buttons,
  .catering-buttons {
    gap: 16px;
  }
  
  .menu-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }
  
  .menu-card h3 {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    margin-bottom: 8px;
  }
  
  .menu-card p {
    font-size: clamp(15px, 3vw, 16px);
    margin-bottom: 15px;
  }
  
  /* Kitchen Hours */
  .hours-card {
    padding: 18px 12px;
  }
  
  .hours-card h3 {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    margin-bottom: 10px;
  }
  
  /* Map */
  .map-container {
    margin: 15px 5px;
  }
  
  .map-container iframe {
    height: 300px !important;
    min-height: 250px !important;
  }
  
  /* Footer */
  .footer {
    padding: 20px 10px;
    font-size: clamp(12px, 3vw, 14px);
  }
  
  .footer-banner-img {
    max-height: 150px;
  }
}

/* iPhone X and newer safe area support */
@supports (padding: max(0px)) {
    .navbar {
      padding-top: max(8px, env(safe-area-inset-top));
      padding-left: max(0px, env(safe-area-inset-left));
      padding-right: max(0px, env(safe-area-inset-right));
    }
    
    .navbar-nav {
      padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
    
    body {
      padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
    
    .hero {
      padding-top: max(190px, calc(190px + env(safe-area-inset-top)));
    }
  }
  

/* Better form inputs on mobile */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-size: 16px !important; /* Prevents iOS zoom on focus */
  min-height: 48px;
  padding: 12px 16px;
  width: 100%;
  touch-action: manipulation;
}


/* Prevent text selection issues on mobile */
button, a {
  -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
  touch-action: manipulation;
}

/* Better scrolling on mobile */
body {
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

/* Optimize for Android Chrome */
@supports (-webkit-appearance: none) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Enhanced mobile styles for small screens */
@media (max-width: 480px) {
  /* Base typography scaling */
  html {
    font-size: 14px;
  }
  
  /* Navbar for small screens */
  .navbar-container {
    padding: 8px 12px;
    min-height: 56px;
    gap: 10px;
  }
  
  .hamburger-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 38px !important;
    height: 38px !important;
    padding: 8px !important;
    z-index: 1002 !important;
  }
  
  .navbar-brand {
    padding: 6px 10px !important;
    border-radius: 10px !important;
  }
  
  .navbar-logo {
    height: 55px !important;
    max-width: 180px !important;
    width: auto !important;
    min-width: 50px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    object-fit: contain !important;
  }
  
  /* Hero section mobile optimization */
  .hero {
    padding: 140px 12px 55px;
    margin-top: 0;
  }
  
  .hero-container {
    padding: 0 12px;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
    margin-bottom: 15px;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: clamp(0.9rem, 4.5vw, 1.2rem);
    margin-bottom: 15px;
  }
  
  .hero-established {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 10px;
  }
  
  .hero-btn {
    padding: 14px 20px;
    font-size: 16px;
    min-height: 50px;
    width: 100%;
  }
  
  /* Section spacing */
  .menu-section,
  .catering-section,
  .rewards-section,
  .find-us-section {
    padding: 50px 12px;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
    margin-bottom: 30px;
  }
  
  /* Cards mobile optimization */
  .menu-card,
  .kitchen-card {
    padding: 22px 18px;
    margin-bottom: 20px;
    max-width: 100%;
  }
  
  .menu-icon {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }
  
  .menu-card h3,
  .kitchen-card h3 {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    margin-bottom: 10px;
  }
  
  .menu-card p,
  .kitchen-card p {
    font-size: clamp(0.875rem, 3.5vw, 1rem);
    line-height: 1.5;
  }
  
  /* Address and contact blocks */
  .address-block {
    padding: 18px 15px;
  }
  
  .address-block p {
    font-size: clamp(0.875rem, 3.5vw, 1rem);
    line-height: 1.6;
  }
  
  /* Grid layouts single column on mobile */
  .menu-grid,
  .catering-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Button stacks on mobile */
  .catering-buttons,
  .rewards-buttons,
  .contact-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .catering-btn,
  .rewards-btn,
  .contact-btn {
    width: 100%;
    min-height: 50px;
    font-size: 16px;
  }
  
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   IPHONE SAFARI & CHROME FIXES
   ======================================== */
@supports (-webkit-touch-callout: none) {
  body {
    background: #0A0E2A !important;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
  }
  
  .navbar {
    background: #0A0E2A !important;
  }
  
  .hero {
    background: #11173A !important;
  }
  
  .menu-section {
    background: #0B0F2E !important;
  }
  
  .catering-section {
    background: #1A1E3D !important;
  }
  
  .rewards-section {
    background: #0A0E2A !important;
  }
  
  .find-us-section {
    background: #0A0E2A !important;
  }
  
  .footer {
    background: #000818 !important;
  }
}



/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--text-muted); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Pickup Time Information Styles */
.pickup-time-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    margin: 24px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.pickup-time-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 12px;
}

.pickup-time-description {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #f3f4f6;
}

.pickup-time-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pickup-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pickup-badge.slow {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.pickup-badge.normal {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.pickup-badge.busy {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.pickup-time-note {
    font-size: 0.9rem;
    color: #d1d5db;
    font-style: italic;
    margin-top: 12px;
}

/* Concise Pickup Time Notice */
.pickup-time-notice {
    margin: 20px auto;
    padding: 15px 20px;
    background: #000000;
    border-radius: 12px;
    border: 2px solid var(--accent-gold);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.pickup-time-text {
    font-size: clamp(15px, 3.5vw, 16px);
    color: #f3f4f6;
    margin: 0;
    line-height: 1.5;
}

.pickup-time-text strong {
    color: var(--accent-gold);
}

/* Responsive adjustments for concise pickup time */
@media (max-width: 768px) {
    .pickup-time-notice {
        margin: 16px auto;
        padding: 12px 15px;
        width: calc(100% - 32px);
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .pickup-time-text {
        font-size: clamp(15px, 3.5vw, 16px) !important;
    }
}

/* Community Message Card - Always Visible (Similar to Pickup Times) */
.community-box-card {
    margin: 20px auto;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    background: #000000 !important;
    border: 2px solid var(--accent-gold) !important;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    overflow: hidden;
}

.community-card-title {
    color: var(--accent-gold);
    font-size: clamp(18px, 4vw, 20px);
    font-weight: 700;
    text-align: center;
    margin: 0 0 16px 0;
    text-shadow: none;
}

.community-card-text {
    color: #f3f4f6;
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.6;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* ========================================
   CATERING DEPOSIT CTA
   ======================================== */
.catering-deposit-card {
  background: #000000;
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  padding: 32px 28px;
  margin: 40px auto;
  width: min(100%, 640px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(212, 175, 55, 0.2);
}

.catering-deposit-card .deposit-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.catering-deposit-card h3.deposit-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--accent-gold);
  margin-bottom: 12px;
  text-align: center;
}

.catering-deposit-card p.deposit-intro {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 24px;
  font-size: 1rem;
}

.deposit-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
  width: 100%;
}

.deposit-form-grid label {
  display: block;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.deposit-form-grid input,
.deposit-form-grid select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  font-size: 1rem;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.deposit-form-grid input:focus,
.deposit-form-grid select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.35);
}

.deposit-policy-text {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 14px;
  padding: 14px 18px;
  color: var(--accent-gold);
  font-size: 0.95rem;
  margin: 18px 0;
  text-align: center;
}

.deposit-note {
  color: var(--text-light);
  text-align: center;
  font-size: 0.95rem;
  margin: -6px 0 12px;
}

.deposit-submit-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.deposit-btn {
  background: linear-gradient(135deg, #FFD700 0%, #f9c922 100%);
  color: #000000;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 14px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.deposit-btn:hover {
  transform: translateZ(0) translateY(-2px);
  box-shadow: 0 0 18px #FFD700;
}

.deposit-btn.deposit-btn-confirmed,
.deposit-btn-confirmed {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  border-color: rgba(21, 128, 61, 0.6);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.45);
}

.deposit-btn.deposit-btn-confirmed:hover,
.deposit-btn-confirmed:hover {
  transform: none;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.45);
}

.deposit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.deposit-status {
  margin-top: 16px;
  text-align: center;
  font-size: 0.95rem;
  min-height: 1.2em;
}

.deposit-status[data-status="success"] {
  color: #22c55e;
}

.deposit-status[data-status="error"] {
  color: #ef4444;
}

.deposit-status[data-status="info"] {
  color: var(--accent-gold);
}

.deposit-followup-note {
  margin-top: 16px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.deposit-followup-note br {
  display: block;
  content: "";
}

.deposit-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 18px;
  background: rgba(34, 197, 94, 0.95);
  color: #0a0e2a;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

.deposit-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
  .catering-deposit-card {
    padding: 24px 18px;
    margin: 30px auto;
    border-radius: 16px;
    width: calc(100% - 24px);
  }

  .deposit-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .deposit-btn {
    width: 100%;
    justify-content: center;
  }

  .deposit-followup-note {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .catering-deposit-card {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .deposit-toast {
    left: 50%;
    right: auto;
    width: calc(100% - 40px);
    max-width: 320px;
    bottom: 24px;
  }
}

.nav-btn,
.hero-btn,
.deposit-btn {
  transform: translateZ(0);
  will-change: transform;
}

.nav-btn:hover,
.hero-btn:hover {
  transform: translateZ(0) translateY(-2px);
}

@media (max-width: 480px) {
  .hero {
    padding: 140px 14px 55px !important;
  }

  .hero-buttons {
    gap: 10px !important;
  }

  .hero-btn {
    padding: 12px 18px !important;
  }

  .nav-btn {
    padding: 8px 12px !important;
  }
}

/* Responsive adjustments for community card */
@media (max-width: 768px) {
    .community-box-card {
        margin: 16px auto;
        width: calc(100% - 32px);
        padding: 16px 18px;
        background: #000000 !important;
    }
    
    .community-card-title {
        font-size: clamp(16px, 3.5vw, 18px);
        margin-bottom: 14px;
    }
    
    .community-card-text {
        font-size: clamp(14px, 3vw, 15px);
    }
}

/* iPhone-specific optimizations for community card */
@media (max-width: 480px) {
    .community-box-card {
        margin: 12px auto;
        width: calc(100% - 24px);
        padding: 15px;
        border-width: 2px;
        background: #000000 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        box-sizing: border-box;
    }
    
    .community-card-title {
        font-size: clamp(15px, 3.5vw, 16px);
        margin-bottom: 12px;
        display: block !important;
        visibility: visible !important;
    }
    
    .community-card-text {
        font-size: clamp(13px, 3.5vw, 14px);
        line-height: 1.5;
        display: block !important;
        visibility: visible !important;
    }
}

/* Contact Information & SMS Consent Styles */
.contact-info-section {
    margin-top: 32px;
    padding: 24px;
    background: #000000;
    border-radius: 16px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-details {
    text-align: center;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.contact-address {
    margin-bottom: 12px;
}

.address-line {
    font-size: 1.1rem;
    color: #f3f4f6;
    margin: 4px 0;
    font-weight: 500;
}

.contact-phone {
    margin-bottom: 16px;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin: 0;
}

.sms-consent-notice {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.sms-notice-text {
    font-size: 0.9rem;
    color: #f3f4f6;
    margin: 0;
    line-height: 1.5;
}

.sms-notice-text strong {
    color: var(--accent-gold);
}

/* Chef Miso AI Floating Button - Professional Red Ring Design */
.chef-miso-floating-btn {
    position: fixed !important;
    bottom: max(20px, env(safe-area-inset-bottom, 20px)) !important;
    right: max(20px, env(safe-area-inset-right, 20px)) !important;
    z-index: 10000 !important;
    background: #000 !important;
    color: #FFD700 !important;
    border: 3px solid #DC2626 !important;
    border-radius: 50px !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5), 0 0 30px rgba(220, 38, 38, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.8) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    align-items: center !important;
    gap: 8px !important;
    min-width: 140px !important;
    justify-content: center !important;
    font-family: 'Inter', sans-serif !important;
    backdrop-filter: blur(10px);
}

.chef-miso-floating-btn:hover {
    background: #111;
    border-color: #EF4444;
    transform: translateZ(0) translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.7), 0 0 40px rgba(220, 38, 38, 0.5), inset 0 0 25px rgba(0, 0, 0, 0.9);
}

.chef-miso-floating-btn:active {
    transform: translateY(0);
}

.chef-miso-floating-btn.minimized {
    right: 10px;
    bottom: 50%;
    transform: translateY(50%);
    min-width: 60px;
    padding: 12px;
    border-radius: 50%;
    flex-direction: column;
    gap: 4px;
}

.chef-miso-floating-btn.minimized .chef-miso-text {
    display: none;
}

/* iPhone-specific Chef Miso button fixes */
@media (max-width: 480px) {
    .chef-miso-floating-btn {
        bottom: max(15px, env(safe-area-inset-bottom, 15px)) !important;
        right: max(15px, env(safe-area-inset-right, 15px)) !important;
        min-width: 120px !important;
        padding: 10px 16px !important;
        font-size: 14px !important;
    }
    
    .chatbot-window {
        bottom: max(80px, calc(env(safe-area-inset-bottom, 80px) + 60px)) !important;
        right: max(15px, env(safe-area-inset-right, 15px)) !important;
        width: calc(100vw - 30px) !important;
        max-width: calc(100vw - 30px) !important;
    }
}

.chef-miso-icon {
    font-size: 24px;
    line-height: 1;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.8));
}

.chef-miso-text {
    font-size: 15px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* Chef Miso AI Chatbot Window */
.chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 500px;
    max-height: calc(100vh - 120px);
    background: #000;
    border: 2px solid #FFD700;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.3);
    z-index: 9999 !important;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    overflow: hidden;
}

.chatbot-window.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chatbot-window.minimized {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%) scale(0.8);
}

.chatbot-header {
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%);
    color: #000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #FFD700;
}

.chatbot-header-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.minimize-chatbot {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #000;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    line-height: 1;
}

.minimize-chatbot:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.chatbot-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.close-chatbot {
    background: transparent;
    border: none;
    color: #000;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-chatbot:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #0E1A2B;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 8px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}

.user-message {
    align-self: flex-end;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%);
    color: #000;
    padding: 12px 16px;
    border-radius: 18px 18px 4px 18px;
    max-width: 80%;
    word-wrap: break-word;
}

.user-message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.user-message strong {
    color: #000;
}

.bot-message {
    align-self: flex-start;
    background: #1a1a1a;
    color: #fff;
    padding: 12px 16px;
    border-radius: 18px 18px 18px 4px;
    max-width: 80%;
    word-wrap: break-word;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.bot-message p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.bot-message p:last-child {
    margin-bottom: 0;
}

.bot-message strong {
    color: #FFD700;
}

.bot-message ul {
    margin: 8px 0;
    padding-left: 20px;
}

.bot-message li {
    margin: 4px 0;
    font-size: 13px;
}

.typing-indicator {
    background: #1a1a1a;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.typing-dots {
    display: inline-block;
    animation: typing 1.4s infinite;
}

@keyframes typing {
    0%, 60%, 100% { opacity: 0.3; }
    30% { opacity: 1; }
}

.chatbot-input {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: #000;
    border-top: 2px solid #FFD700;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 16px;
    background: #1a1a1a;
    border: 1px solid #FFD700;
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.chatbot-input input:focus {
    border-color: #FFED4E;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.chatbot-input input::placeholder {
    color: #999;
}

.chatbot-input button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%);
    color: #000;
    border: 2px solid #FFD700;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.chatbot-input button:hover {
    background: linear-gradient(135deg, #FFED4E 0%, #FFD700 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.chatbot-input button:active {
    transform: translateY(0);
}

/* Responsive Styles for iPhone and Android */
@media (max-width: 768px) {
    .chef-miso-floating-btn {
        bottom: 15px;
        right: 15px;
        padding: 14px 18px;
        min-width: 130px;
        font-size: 15px;
        border-width: 3px;
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.6), 0 0 30px rgba(220, 38, 38, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.8);
    }

    .chef-miso-floating-btn.minimized {
        right: 8px;
        bottom: 50%;
        min-width: 55px;
        padding: 12px;
        transform: translateY(50%);
    }

    .chef-miso-icon {
        font-size: 22px;
    }

    .chef-miso-text {
        font-size: 14px;
    }

    .chatbot-window {
        bottom: 75px;
        right: 15px;
        left: 15px;
        width: auto;
        height: 450px;
        max-height: calc(100vh - 100px);
    }

    .chatbot-header {
        padding: 12px 16px;
    }

    .chatbot-header h3 {
        font-size: 16px;
    }

    .chatbot-messages {
        padding: 15px;
    }

    .user-message,
    .bot-message {
        max-width: 85%;
        padding: 10px 14px;
        font-size: 13px;
    }

    .chatbot-input {
        padding: 12px;
    }

    .chatbot-input input {
        padding: 10px 14px;
        font-size: 13px;
    }

    .chatbot-input button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    /* Catering dropdown menu - iPhone optimization */
    .catering-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        margin-top: 8px;
        z-index: 1002;
    }
    
    .catering-option {
        padding: 14px 16px;
        font-size: 15px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .chef-miso-floating-btn {
        bottom: 12px;
        right: 12px;
        padding: 12px 16px;
        min-width: 120px;
        font-size: 14px;
        border-width: 3px;
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.6), 0 0 30px rgba(220, 38, 38, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.8);
        z-index: 9999 !important;
    }
    
    /* Safe area support for iPhone with notch */
    @supports (padding: max(0px)) {
        .chef-miso-floating-btn {
            bottom: max(12px, env(safe-area-inset-bottom));
            right: max(12px, env(safe-area-inset-right));
        }
    }

    .chef-miso-floating-btn.minimized {
        right: 6px;
        bottom: 50%;
        min-width: 50px;
        padding: 10px;
        transform: translateY(50%);
    }
    
    @supports (padding: max(0px)) {
        .chef-miso-floating-btn.minimized {
            right: max(6px, env(safe-area-inset-right));
        }
    }

    .chef-miso-icon {
        font-size: 20px;
    }

    .chef-miso-text {
        font-size: 13px;
    }

    .chatbot-window {
        bottom: 70px;
        right: 10px;
        left: 10px;
        height: 400px;
        max-height: calc(100vh - 90px);
        border-radius: 16px;
        z-index: 9998 !important;
    }
    
    @supports (padding: max(0px)) {
        .chatbot-window {
            bottom: max(70px, calc(70px + env(safe-area-inset-bottom)));
            right: max(10px, env(safe-area-inset-right));
            left: max(10px, env(safe-area-inset-left));
            max-height: calc(100vh - 90px - env(safe-area-inset-bottom));
        }
    }

    .chatbot-header {
        padding: 10px 14px;
    }

    .chatbot-header h3 {
        font-size: 15px;
    }

    .chatbot-messages {
        padding: 12px;
        gap: 12px;
    }

    .user-message,
    .bot-message {
        max-width: 90%;
        padding: 10px 12px;
        font-size: 12px;
    }

    .chatbot-input {
        padding: 10px;
    }

    .chatbot-input input {
        padding: 10px 12px;
        font-size: 12px;
    }

    .chatbot-input button {
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* Reviews Page Styles */
.reviews-hero {
  background: linear-gradient(135deg, #0A0E2A 0%, #1A1E3D 100%);
  padding-top: 160px;
  padding-bottom: 80px;
}

.reviews-hero .hero-title {
  color: var(--accent-gold);
}

.reviews-hero .hero-subtitle {
  color: var(--text-light);
}

.reviews-hero .hero-tagline {
  color: var(--text-muted);
}

.reviews-why,
.reviews-guide,
.reviews-extra,
.reviews-stats {
  padding: 60px 0;
}

.reviews-why {
  background: linear-gradient(135deg, #0A112F 0%, #101B3A 100%);
}

.reviews-card {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  margin-bottom: 40px;
}

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

.reviews-highlight {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
}

.reviews-highlight h3 {
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.reviews-highlight p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.reviews-emoji {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.review-card {
  background: rgba(0, 0, 0, 0.7);
  border-left: 4px solid var(--accent-gold);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
}

.review-stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-quote {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

.reviews-cta .hero-btn {
  margin-bottom: 12px;
}

.cta-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.reviews-stats {
  background: linear-gradient(135deg, #0F1636 0%, #070B21 100%);
}

.reviews-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.reviews-stat-card {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.reviews-stat-value {
  font-size: 2.5rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.reviews-stat-label {
  color: var(--text-light);
  font-size: 1rem;
}

.reviews-guide {
  background: linear-gradient(135deg, #0A0E2A 0%, #111C3D 100%);
}

.reviews-guide-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.reviews-guide-card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.reviews-guide-card h3 {
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.reviews-guide-card ol,
.reviews-guide-card ul {
  color: var(--text-light);
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.reviews-guide-card li {
  margin-bottom: 8px;
}

.reviews-extra {
  background: #050814;
}

.reviews-extra-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.extra-card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.extra-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.extra-card h3 {
  color: var(--accent-gold);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.extra-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.extra-card .menu-btn {
  margin-top: auto;
}

@media (max-width: 768px) {
  .reviews-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .reviews-card {
    padding: 28px;
  }

  .reviews-guide-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .reviews-hero {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .review-card,
  .reviews-guide-card,
  .extra-card {
    padding: 20px;
  }
}

