@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ==========================================================================
   DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
  /* Color Palette */
  --bg-primary: #0a0b0c;
  --bg-secondary: #121416;
  --bg-tertiary: #1a1d20;
  --accent-gold: #d4af37;
  --accent-gold-hover: #aa8c2c;
  --accent-gold-light: rgba(212, 175, 55, 0.1);
  --accent-gold-glow: rgba(212, 175, 55, 0.4);
  
  --text-primary: #ffffff;
  --text-secondary: #a0a5ab;
  --text-muted: #6c7278;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.2);
  
  --glass-bg: rgba(18, 20, 22, 0.6);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: rgba(0, 0, 0, 0.5);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-xxl: 8rem;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  /* Miscellaneous */
  --max-width: 1280px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-gold-blur: 0 0 20px var(--accent-gold-glow);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
}

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

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Selection */
::selection {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.font-serif { font-family: var(--font-heading); }
.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--text-secondary); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

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

.section-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-bottom: var(--space-xs);
  display: inline-block;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-sm);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent-gold);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border: 1px solid var(--accent-gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all var(--transition-normal);
  z-index: -1;
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  box-shadow: var(--shadow-gold-blur);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  left: 100%;
}

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

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 0.8rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition-normal);
}

.header.scrolled .nav-container {
  height: 60px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width var(--transition-normal);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-gold);
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: brightness(0.35);
  transition: transform var(--transition-slow);
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 40%, var(--bg-primary) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 var(--space-md);
  margin-top: 50px;
}

.hero-tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--accent-gold);
  margin-bottom: var(--space-sm);
  display: block;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.2s;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.4s;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.6s;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.8s;
}

/* ==========================================================================
   ABOUT / STORY SECTION
   ========================================================================== */
.about {
  padding: var(--space-xxl) 0;
  background: var(--bg-primary);
}

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

.about-img-container {
  position: relative;
  padding: var(--space-md);
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.about-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-md);
  transform: translate(15px, 15px);
  z-index: -1;
  transition: transform var(--transition-normal);
}

.about-img-container:hover .about-img-wrapper::after {
  transform: translate(0, 0);
}

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

.about-img-container:hover .about-img {
  transform: scale(1.05);
}

.about-content {
  padding-left: var(--space-md);
}

.about-text {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}

.about-signature-box {
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.chef-signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.chef-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* ==========================================================================
   INTERACTIVE MENU SECTION
   ========================================================================== */
.menu-section {
  padding: var(--space-xxl) 0;
  background: var(--bg-secondary);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  list-style: none;
  flex-wrap: wrap;
}

.menu-tab-btn {
  padding: 0.8rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
}

.menu-tab-btn:hover {
  color: var(--text-primary);
}

.menu-tab-btn.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.menu-card {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(212, 175, 55, 0.05);
}

.menu-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--bg-primary);
}

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

.menu-card:hover .menu-img {
  transform: scale(1.08);
}

.menu-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: var(--space-xs);
  z-index: 5;
}

.menu-badge {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  border-radius: var(--radius-full);
  font-weight: 600;
}

.menu-info {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-xs);
  gap: var(--space-sm);
}

.menu-card-title {
  font-size: 1.25rem;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.menu-card:hover .menu-card-title {
  color: var(--accent-gold);
}

.menu-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-gold);
  font-family: var(--font-body);
}

.menu-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: var(--space-md);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-footer {
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-card-action {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition-fast);
}

.menu-card:hover .menu-card-action {
  color: var(--accent-gold);
}

/* ==========================================================================
   CAROUSEL / SPECIALS
   ========================================================================== */
.specials {
  padding: var(--space-xxl) 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.specials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: 450px;
}

.specials-slide {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
  z-index: 1;
}

.specials-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.specials-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.specials-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specials-content {
  padding: var(--space-sm);
}

.specials-tag {
  color: var(--accent-gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  display: block;
}

.specials-title {
  font-size: 2.2rem;
  margin-bottom: var(--space-sm);
}

.specials-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: var(--space-md);
}

.specials-price-box {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.specials-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.specials-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  position: relative;
  z-index: 10;
}

.specials-ctrl-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-primary);
}

.specials-ctrl-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: var(--accent-gold-light);
}

/* ==========================================================================
   RESERVATION WIZARD
   ========================================================================== */
.reservation {
  padding: var(--space-xxl) 0;
  background: var(--bg-secondary);
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
  position: relative;
}

.reservation-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  display: grid;
  grid-template-columns: 1fr;
}

.reserve-content {
  padding: var(--space-xl);
}

/* Wizard Stepper Progress Header */
.stepper-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  position: relative;
}

.stepper-header::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--border-color);
  z-index: 1;
}

.step-indicator {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.step-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition-normal);
}

.step-indicator.active .step-dot {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: var(--shadow-gold-blur);
}

.step-indicator.active .step-label {
  color: var(--accent-gold);
}

.step-indicator.completed .step-dot {
  background: var(--bg-secondary);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.step-indicator.completed .step-label {
  color: var(--text-primary);
}

/* Wizard Steps Containers */
.wizard-form {
  position: relative;
}

.wizard-step {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.wizard-step.active {
  display: block;
}

.step-title {
  font-size: 1.6rem;
  margin-bottom: var(--space-md);
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: span 2;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.input-control {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.input-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

select.input-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
}

.dietary-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-sm);
  margin-top: 5px;
}

.checkbox-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.checkbox-card:hover {
  border-color: var(--border-gold);
}

.checkbox-card input {
  display: none;
}

.checkbox-card .custom-checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-color);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.checkbox-card input:checked + .custom-checkbox {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.checkbox-card input:checked + .custom-checkbox::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid var(--bg-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* Wizard Navigation Row */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-lg);
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-md);
}

/* Review details block in Wizard Step 3 */
.booking-summary-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
}

.summary-val {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* Dynamic ticket result state */
.ticket-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.ticket-container {
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, #17191c 100%);
  border: 2px solid var(--accent-gold);
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.8), var(--shadow-gold-blur);
  position: relative;
  overflow: hidden;
  animation: ticketSlideIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.ticket-container::before,
.ticket-container::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  top: 50%;
  z-index: 10;
}

.ticket-container::before {
  left: -12px;
  border-right: 2px solid var(--accent-gold);
}

.ticket-container::after {
  right: -12px;
  border-left: 2px solid var(--accent-gold);
}

.ticket-header {
  border-bottom: 2px dashed var(--border-gold);
  padding: var(--space-md);
  text-align: center;
}

.ticket-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.ticket-logo span { color: var(--accent-gold); }

.ticket-subheader {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

.ticket-body {
  padding: var(--space-md);
}

.ticket-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.ticket-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticket-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ticket-barcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: var(--space-md);
  gap: 5px;
}

.barcode-lines {
  height: 50px;
  width: 80%;
  background: linear-gradient(90deg, 
    #ffffff 0%, #ffffff 5%, transparent 5%, transparent 8%,
    #ffffff 8%, #ffffff 12%, transparent 12%, transparent 18%,
    #ffffff 18%, #ffffff 20%, transparent 20%, transparent 22%,
    #ffffff 22%, #ffffff 28%, transparent 28%, transparent 30%,
    #ffffff 30%, #ffffff 32%, transparent 32%, transparent 35%,
    #ffffff 35%, #ffffff 42%, transparent 42%, transparent 45%,
    #ffffff 45%, #ffffff 48%, transparent 48%, transparent 50%,
    #ffffff 50%, #ffffff 52%, transparent 52%, transparent 58%,
    #ffffff 58%, #ffffff 62%, transparent 62%, transparent 68%,
    #ffffff 68%, #ffffff 75%, transparent 75%, transparent 80%,
    #ffffff 80%, #ffffff 88%, transparent 88%, transparent 92%,
    #ffffff 92%, #ffffff 95%, transparent 95%, transparent 98%,
    #ffffff 98%, #ffffff 100%
  );
  opacity: 0.7;
}

.barcode-text {
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--text-muted);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
  padding: var(--space-xxl) 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.reviews-slider {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.review-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all var(--transition-normal);
}

.review-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.review-quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-gold-light);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.review-stars {
  color: var(--accent-gold);
  margin-bottom: var(--space-sm);
  display: flex;
  justify-content: center;
  gap: 4px;
}

.review-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.4;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.review-author {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.review-author-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-xl);
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.review-dot.active {
  background: var(--accent-gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--accent-gold);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1.3fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-desc {
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.social-icon:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: var(--accent-gold-light);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-link-item a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-link-item a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   DETAIL MODAL FOR DISHES
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.8), var(--shadow-gold-blur);
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  color: var(--text-primary);
}

.modal-close-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.modal-img-wrapper {
  height: 100%;
  min-height: 350px;
  background: var(--bg-primary);
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-badges {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.modal-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}

.modal-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.modal-section-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 5px;
  font-weight: 600;
}

.modal-ingredients {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.modal-allergens {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes ticketSlideIn {
  from {
    opacity: 0;
    transform: rotateX(-30deg) translateY(50px);
  }
  to {
    opacity: 1;
    transform: rotateX(0deg) translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet (Landscape & Portrait) */
@media (max-width: 1024px) {
  :root {
    --space-xl: 4rem;
    --space-xxl: 6rem;
  }
  
  .about-grid {
    gap: var(--space-lg);
  }
  
  .about-img {
    height: 400px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .modal-container {
    max-width: 650px;
  }
}

/* Mobile & Small Tablets */
@media (max-width: 768px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 3.5rem;
    --space-xxl: 4.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    flex-direction: column;
    padding: var(--space-xl) var(--space-md);
    gap: var(--space-md);
    transition: right var(--transition-normal);
    z-index: 999;
    align-items: flex-start;
  }

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

  .nav-menu .btn {
    width: 100%;
    margin-top: var(--space-sm);
  }

  .mobile-nav-toggle {
    display: block;
    z-index: 1000;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .about-img-container {
    order: 2;
  }
  
  .about-content {
    order: 1;
    padding-left: 0;
  }
  
  .specials-slide {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .specials-img-wrapper {
    height: 250px;
  }

  .specials-slider {
    min-height: 600px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }

  .reservation-card {
    border-radius: var(--radius-md);
  }

  .reserve-content {
    padding: var(--space-md);
  }

  .stepper-header {
    margin-bottom: var(--space-lg);
  }

  .step-label {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-brand {
    grid-column: span 1;
  }

  .modal-container {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-img-wrapper {
    min-height: 200px;
    height: 200px;
  }

  .modal-content {
    padding: var(--space-md);
  }
}

/* Very Small Screen Optimizations */
@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .specials-slider {
    min-height: 650px;
  }
}

/* WhatsApp Floating Action Button */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-fab:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.whatsapp-fab svg {
  transition: transform 0.3s ease;
}

.whatsapp-fab:hover svg {
  transform: rotate(10deg);
}

@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }
}
