/* ===== VARIABLES ===== */
:root {
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --dark: #1A1A1A;
  --gold: #FFB800;
  --orange: #FF6B00;
  --red: #CC2200;
  --cream: #FFF8E7;
  --text: #E8D9B8;
  --text-muted: #888870;
  --nav-h: 68px;
  --gold-gradient: linear-gradient(135deg, #FFB800, #FF6B00);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

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

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 0 1.25rem; height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 2px solid var(--gold);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(255,184,0,0.2); }
.nav-container {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo img { height: 50px; object-fit: contain; }
.nav-menu { display: flex; gap: 1.75rem; flex: 1; }
.nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem; letter-spacing: 0.08em;
  color: var(--cream); transition: color 0.25s;
  position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 0.7rem; margin-left: auto; }
.btn-nav-order {
  background: var(--gold); color: #000;
  font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.08em;
  padding: 0.45rem 1.1rem; border-radius: 6px;
  transition: background 0.25s, transform 0.2s;
}
.btn-nav-order:hover { background: var(--orange); color: #fff; transform: scale(1.04); }
.btn-nav-call {
  background: var(--red); color: #fff;
  font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.08em;
  padding: 0.45rem 1.1rem; border-radius: 6px;
  transition: background 0.25s, transform 0.2s;
}
.btn-nav-call:hover { background: #aa1a00; transform: scale(1.04); }
.cart-btn {
  position: relative; font-size: 1.35rem; color: var(--cream);
  padding: 0.3rem; transition: transform 0.2s;
}
.cart-btn.bounce { animation: cartBounce 0.4s ease; }
@keyframes cartBounce { 0%,100%{transform:scale(1)} 40%{transform:scale(1.35)} 70%{transform:scale(0.9)} }
.cart-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--red); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.cart-count.hidden { display: none; }
.lang-toggle {
  border: 1.5px solid var(--gold); color: var(--gold);
  font-family: 'Bebas Neue', sans-serif; font-size: 0.85rem; letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem; border-radius: 20px;
  transition: background 0.25s, color 0.25s;
}
.lang-toggle:hover { background: var(--gold); color: #000; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 25px; height: 2px; background: #FFB800; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; margin: 5px 0; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,7px) !important; }
.hamburger.open span:nth-child(2) { opacity: 0 !important; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-7px) !important; }
@media(max-width:768px){ .hamburger{ display:flex; } }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: url('img/hero.png') center/cover no-repeat;
  padding: calc(var(--nav-h) + 2rem) 1.25rem 3rem;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; }
.hero-logo {
  animation: heartbeat 2s ease-in-out infinite !important;
  display: block !important; opacity: 1 !important; visibility: visible !important;
  filter: drop-shadow(0 0 24px rgba(255,184,0,0.5)) !important;
}
@keyframes heartbeat {
  0%,100%{transform:scale(1)} 14%{transform:scale(1.1)}
  28%{transform:scale(1)} 42%{transform:scale(1.06)} 70%{transform:scale(1)}
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,184,0,0.9), rgba(255,107,0,0.9));
  color: #000; font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem; letter-spacing: 0.1em;
  padding: 0.45rem 1.25rem; border-radius: 30px; margin-bottom: 1rem;
  animation: pulsGold 2.5s ease-in-out infinite;
}
@keyframes pulsGold {
  0%,100%{box-shadow:0 0 8px rgba(255,184,0,0.4)}
  50%{box-shadow:0 0 24px rgba(255,184,0,0.8)}
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 8rem); letter-spacing: 0.06em;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(255,184,0,0.5), 2px 4px 12px rgba(0,0,0,0.8);
  line-height: 1; margin-bottom: 0.3rem;
}
.hero-location {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem); letter-spacing: 0.08em;
  color: var(--orange); text-shadow: 1px 2px 8px rgba(0,0,0,0.8);
  margin-bottom: 0.5rem;
}
.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem); color: var(--cream);
  text-shadow: 1px 1px 6px rgba(0,0,0,0.8); margin-bottom: 2rem;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.2rem; }
.hero-phone {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 1.6rem;
  font-weight: 900;
  color: #FFB800;
  text-decoration: none;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  border: 2px solid #FFB800;
  padding: 0.5rem 1.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: 'Bebas Neue', sans-serif;
}
.hero-phone:hover { background: #FFB800; color: #000; }
@media(max-width:768px) {
  .hero-phone { font-size: 1.3rem; padding: 0.45rem 1.2rem; }
}
.hero-stats { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.stat-icon { font-size: 1.5rem; }
.stat-label { font-size: 0.78rem; font-weight: 500; color: #fff; text-shadow: 1px 1px 4px rgba(0,0,0,0.7); text-align: center; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  background: var(--gold-gradient); color: #000;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.08em;
  padding: 0.75rem 2rem; border-radius: 8px;
  transition: filter 0.25s, transform 0.2s;
  position: relative; overflow: hidden; border: none; cursor: pointer; text-align: center;
}
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.5s;
}
.btn-gold:hover { filter: brightness(1.12); transform: translateY(-2px); }
.btn-gold:hover::before { left: 150%; }
.btn-gold.w-full { width: 100%; }
.btn-whatsapp {
  display: inline-block;
  background: #25D366; color: #fff;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.08em;
  padding: 0.75rem 2rem; border-radius: 8px;
  transition: background 0.25s, transform 0.2s; text-align: center;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* ===== INFO BAR ===== */
.info-bar {
  background: linear-gradient(90deg, #1a1000, #0a0800, #1a1000);
  border-bottom: 1px solid rgba(255,184,0,0.3); padding: 0.65rem 1.25rem;
  overflow-x: auto;
}
.info-container {
  display: flex; gap: 2rem; justify-content: center; align-items: center;
  white-space: nowrap; font-size: 0.83rem; flex-wrap: wrap;
}
.info-item { display: flex; align-items: center; gap: 0.4rem; color: var(--cream); }
.info-item a { color: var(--gold); transition: color 0.2s; }
.info-item a:hover { color: var(--orange); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 0.06em;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(255,184,0,0.3);
  margin-bottom: 0.5rem;
}
.section-title::after {
  content: ''; display: block; width: 80px; height: 3px;
  background: var(--gold-gradient); margin: 0.6rem auto 0; border-radius: 2px;
}
.section-sub { color: var(--text-muted); font-size: 0.92rem; margin-top: 0.4rem; }

/* ===== SLIDER ===== */
.specials-section { padding: 4.5rem 1.25rem; background: var(--bg-alt); }
.slider-wrapper {
  position: relative; display: flex; align-items: center; gap: 0.75rem;
}
.slider-viewport { flex: 1; overflow: hidden; border-radius: 16px; }
.slider-track {
  display: flex; gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.25,0.8,0.25,1);
  will-change: transform;
}
.slider-card {
  flex: 0 0 calc(33.333% - 0.84rem);
  background: var(--dark); border-radius: 14px; overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.slider-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.slider-card img { width: 100%; height: 220px; object-fit: cover; }
.slider-info {
  padding: 1rem 1.1rem;
  display: flex; justify-content: space-between; align-items: center;
}
.slider-info h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem;
  letter-spacing: 0.05em; color: var(--cream);
}
.slider-price {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem;
  color: var(--gold); white-space: nowrap;
}
.slider-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,184,0,0.15); border: 2px solid var(--gold);
  color: var(--gold); font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s;
  flex-shrink: 0; cursor: pointer;
}
.slider-arrow:hover { background: var(--gold); color: #000; }
.slider-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.25rem; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,184,0,0.3); transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* ===== MENU ===== */
.menu-section { padding: 4.5rem 1.25rem; background: var(--bg); }
.tabs-wrapper { overflow-x: auto; margin-bottom: 2rem; -webkit-overflow-scrolling: touch; }
.tabs-wrapper::-webkit-scrollbar { height: 3px; }
.tabs-wrapper::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.tabs { display: flex; gap: 0.5rem; padding-bottom: 0.5rem; white-space: nowrap; }
.tab-btn {
  font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 0.07em;
  padding: 0.5rem 1.2rem; border-radius: 30px;
  border: 1.5px solid rgba(255,184,0,0.3); color: var(--text-muted);
  transition: all 0.25s; white-space: nowrap;
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active {
  background: var(--gold-gradient); border-color: transparent; color: #000;
  box-shadow: 0 4px 16px rgba(255,184,0,0.35);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== MENU GRID & CARDS ===== */
.menu-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.menu-card {
  background: var(--dark); border-radius: 14px; overflow: hidden;
  border: 2px solid transparent; position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(255,184,0,0.2);
}
.menu-card img { width: 100%; height: 190px; object-fit: cover; transition: transform 0.4s; }
.menu-card:hover img { transform: scale(1.05); }
.card-body { padding: 1rem 1rem 1.1rem; }
.card-body h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem;
  letter-spacing: 0.04em; color: var(--cream); margin-bottom: 0.3rem;
}
.card-body h3 small { font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 400; color: var(--text-muted); }
.card-price {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem;
  color: var(--gold); margin-bottom: 0.45rem;
}
.card-desc {
  font-size: 0.76rem; color: var(--text-muted); line-height: 1.5;
  margin-bottom: 0.8rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.btn-add-cart {
  width: 100%; background: var(--gold-gradient); color: #000;
  font-family: 'Bebas Neue', sans-serif; font-size: 0.88rem; letter-spacing: 0.06em;
  padding: 0.55rem; border-radius: 8px;
  transition: filter 0.2s, transform 0.15s;
}
.btn-add-cart:hover { filter: brightness(1.12); transform: scale(1.02); }
.btn-ask-price {
  width: 100%; border: 1.5px solid var(--gold); color: var(--gold);
  font-family: 'Bebas Neue', sans-serif; font-size: 0.88rem; letter-spacing: 0.06em;
  padding: 0.55rem; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.btn-ask-price:hover { background: var(--gold); color: #000; }

/* ===== CART ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65);
  z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }
.cart-panel {
  position: fixed; top: 0; right: 0; width: 380px; max-width: 100vw; height: 100%;
  background: var(--bg); border-left: 3px solid var(--gold);
  z-index: 1200; transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(255,184,0,0.15);
}
.cart-panel.open { transform: translateX(0); }
.cart-header {
  padding: 1.25rem; border-bottom: 1px solid rgba(255,184,0,0.2);
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.cart-header h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.06em; color: var(--gold); }
.close-cart { color: var(--text-muted); font-size: 1.1rem; padding: 0.3rem; transition: color 0.2s; }
.close-cart:hover { color: var(--red); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.25rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.cart-empty span { font-size: 3rem; display: block; margin-bottom: 1rem; }
.cart-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-item-name { flex: 1; font-size: 0.84rem; color: var(--cream); font-weight: 500; }
.cart-item-controls { display: flex; align-items: center; gap: 0.4rem; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,184,0,0.15); border: 1px solid var(--gold);
  color: var(--gold); font-size: 1rem; display: flex; align-items: center; justify-content: center;
  font-weight: 600; line-height: 1; transition: background 0.2s;
}
.qty-btn:hover { background: var(--gold); color: #000; }
.qty-val { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; color: var(--cream); min-width: 18px; text-align: center; }
.cart-item-price { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; color: var(--gold); min-width: 52px; text-align: right; }
.cart-footer { padding: 1.25rem; border-top: 1px solid rgba(255,184,0,0.2); flex-shrink: 0; }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--cream);
}
.cart-total span:last-child { color: var(--gold); }

/* ===== REVIEWS ===== */
.reviews-section { padding: 4.5rem 1.25rem; background: var(--bg-alt); }
.google-rating { display: flex; align-items: center; gap: 0.6rem; justify-content: center; margin-bottom: 0.75rem; }
.rating-score { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--gold); }
.stars { font-size: 1rem; }
.rating-label { color: var(--text-muted); font-size: 0.83rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.review-card {
  background: var(--dark); border: 1px solid rgba(255,184,0,0.12);
  border-radius: 14px; padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(255,184,0,0.15); }
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem; }
.review-header img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.review-header strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.04em; color: var(--cream); margin-bottom: 2px; }
.review-card > p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* ===== CATERING ===== */
.catering-section {
  position: relative; padding: 5rem 1.25rem;
  overflow: hidden; min-height: 480px; display: flex; align-items: center;
}
.catering-bg { position: absolute; inset: 0; background: url('img/catering.png') center/cover no-repeat; z-index: 0; }
.catering-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.70); z-index: 1; }
.catering-inner { position: relative; z-index: 2; text-align: center; }
.catering-badge {
  display: inline-block;
  background: var(--gold-gradient); color: #000;
  font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em;
  padding: 0.4rem 1.25rem; border-radius: 30px; margin-bottom: 1.25rem;
}
.catering-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem,5vw,3.5rem);
  letter-spacing: 0.05em; color: var(--gold);
  text-shadow: 0 0 30px rgba(255,184,0,0.4), 2px 4px 12px rgba(0,0,0,0.8);
  margin-bottom: 1rem;
}
.catering-sub { color: var(--cream); font-size: 1rem; margin-bottom: 2rem; opacity: 0.9; }
.catering-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 2.5rem; }
.catering-list li {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,184,0,0.3);
  border-radius: 8px; padding: 0.5rem 1.1rem; font-size: 0.88rem; color: var(--cream);
  display: flex; align-items: center; gap: 0.5rem;
}

/* ===== FORM ===== */
.form-section { padding: 4.5rem 1.25rem; background: var(--bg-alt); }
.catering-form {
  max-width: 860px; margin: 0 auto;
  background: rgba(26,26,26,0.9); border: 1.5px solid rgba(255,184,0,0.25);
  border-radius: 16px; padding: 2.5rem 2rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group.full-width { grid-column: 1/-1; }
.form-group label { font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 0.06em; color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(10,10,10,0.8); border: 1.5px solid rgba(255,184,0,0.2);
  border-radius: 8px; padding: 0.65rem 0.9rem;
  color: var(--cream); font-family: 'Poppins', sans-serif; font-size: 0.88rem;
  transition: border-color 0.25s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,184,0,0.1);
}
.form-group select option { background: #1A1A1A; }
.form-group textarea { resize: vertical; min-height: 110px; }
.catering-form .btn-gold { margin-top: 0.5rem; padding: 0.8rem 2.5rem; font-size: 1rem; }

/* ===== CONTACT ===== */
.contact-section { padding: 4.5rem 1.25rem; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; max-width: 1100px; margin: 0 auto; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.85rem; }
.contact-item > span { font-size: 1.3rem; margin-top: 2px; }
.contact-item strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 0.05em; color: var(--gold); margin-bottom: 2px; }
.contact-item a, .contact-item p { color: var(--cream); font-size: 0.9rem; margin: 0; transition: color 0.2s; }
.contact-item a:hover { color: var(--orange); }
.social-links { display: flex; gap: 0.75rem; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,184,0,0.1); border: 1.5px solid rgba(255,184,0,0.3);
  color: var(--gold); transition: background 0.25s, color 0.25s;
}
.social-icon:hover { background: var(--gold); color: #000; }
.map-wrapper { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.5); }

/* ===== FOOTER ===== */
.footer { background: #050505; border-top: 3px solid var(--gold); }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 2.5rem 1.25rem;
  display: flex; align-items: flex-start; gap: 3rem; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 0.85rem; flex: 1; min-width: 200px; }
.footer-brand img { width: 55px; height: 55px; object-fit: contain; }
.footer-brand h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.08em; color: var(--gold); }
.footer-brand p { font-size: 0.8rem; color: var(--orange); margin-top: 2px; }
.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; min-width: 200px; }
.footer-contact a, .footer-contact p { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.7rem; flex-wrap: wrap; align-items: flex-start; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 1rem 1.25rem;
  text-align: center; font-size: 0.78rem; color: var(--text-muted);
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  background: #25D366; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: waPulse 2.5s ease-in-out infinite; transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
@keyframes waPulse {
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.45)}
  50%{box-shadow:0 4px 32px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.1)}
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .menu-grid { grid-template-columns: repeat(3,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .slider-card { flex: 0 0 calc(50% - 0.625rem); }
}
@media(max-width:768px) {
  :root { --nav-h: 60px; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(10,10,10,0.98);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem; transform: translateX(-100%); transition: transform 0.35s ease; z-index: 1050;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.8rem; }
  .btn-nav-order, .btn-nav-call { display: none; }
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .slider-card { flex: 0 0 100%; }
  .hero-logo { width: 120px !important; max-width: 120px !important; height: 120px !important; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-gold, .hero-buttons .btn-whatsapp { width: 100%; max-width: 300px; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .cart-panel { width: 100vw; }
  .catering-form { padding: 1.75rem 1.25rem; }
}
@media(max-width:480px) {
  .menu-grid { grid-template-columns: repeat(2,1fr) !important; gap: 0.85rem; }
  .menu-card img { height: 150px; }
  .hero-stats { gap: 1rem; }
  .stat-label { font-size: 0.7rem; }
  .info-container { gap: 1rem; font-size: 0.75rem; }
}
