/* ═══════════════════════════════════════════════════
   SHAWARMA STATION — Premium Dark Restaurant CSS
   Palette: Volcanic Glass + Orange/Yellow Glow
   Fonts: Bebas Neue (display) + Outfit (body) + Syne (accent)
═══════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --black:       #0A0A0A;
  --black-2:     #111111;
  --black-3:     #1A1A1A;
  --black-4:     #222222;
  --charcoal:    #2A2A2A;
  --orange:      #FF6B2B;
  --orange-glow: #FF6B2B;
  --orange-dark: #CC4A10;
  --yellow:      #FFB800;
  --yellow-soft: #FFD166;
  --white:       #FFFFFF;
  --white-80:    rgba(255,255,255,0.8);
  --white-50:    rgba(255,255,255,0.5);
  --white-20:    rgba(255,255,255,0.2);
  --white-10:    rgba(255,255,255,0.1);
  --white-05:    rgba(255,255,255,0.05);
  --orange-10:   rgba(255,107,43,0.1);
  --orange-20:   rgba(255,107,43,0.2);
  --orange-30:   rgba(255,107,43,0.3);
  --font-display: 'Bebas Neue', sans-serif;
  --font-accent:  'Syne', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --nav-h:        72px;
  --radius:       16px;
  --radius-sm:    10px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── Selection ── */
::selection { background: var(--orange); color: var(--white); }

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,107,43,0.15), 0 8px 32px rgba(0,0,0,0.6);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; }
.logo-icon { font-size: 1.4rem; }
.logo-text { color: var(--white); }
.logo-accent { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-80);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--orange); background: var(--orange-10); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  padding: 9px 20px;
  border-radius: 50px;
  margin-left: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 20px rgba(255,107,43,0.4);
}
.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(255,107,43,0.6);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 30px rgba(255,107,43,0.5), 0 4px 20px rgba(255,107,43,0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255,107,43,0.7), 0 8px 30px rgba(255,107,43,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white-20);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-10);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════ */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-10);
  border: 1px solid var(--orange-20);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.text-orange { color: var(--orange); }

.section-sub {
  font-size: 1.05rem;
  color: var(--white-50);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.35) 40%,
    rgba(10,10,10,0.75) 80%,
    rgba(10,10,10,1.0)  100%
  );
  z-index: 1;
}

/* Smoke effects */
.smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
  pointer-events: none;
  animation: smokeDrift 12s ease-in-out infinite;
}
.smoke-1 {
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,107,43,0.12) 0%, transparent 70%);
  top: 20%; left: -10%;
  animation-delay: 0s;
}
.smoke-2 {
  width: 500px; height: 350px;
  background: radial-gradient(ellipse, rgba(255,184,0,0.08) 0%, transparent 70%);
  top: 10%; right: -5%;
  animation-delay: -4s;
}
.smoke-3 {
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,107,43,0.07) 0%, transparent 70%);
  bottom: 20%; left: 20%;
  animation-delay: -8s;
}

@keyframes smokeDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  33%       { transform: translate(30px, -20px) scale(1.05); opacity: 0.8; }
  66%       { transform: translate(-20px, 15px) scale(0.95); opacity: 0.9; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 60px 24px 80px;
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-80);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px var(--orange); }
  50%       { box-shadow: 0 0 20px var(--orange), 0 0 40px rgba(255,107,43,0.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.title-highlight {
  color: var(--orange);
  text-shadow: 0 0 60px rgba(255,107,43,0.6), 0 0 120px rgba(255,107,43,0.3);
}

.title-emoji { font-size: 0.7em; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-80);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}
.br-desktop { display: block; }

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 20px 40px;
  max-width: 520px;
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.stat-num {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--white-50);
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  margin: 0 20px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-50);
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════
   MENU SECTION
═══════════════════════════════════════════════════ */
.menu-section {
  padding: 120px 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--orange-20), transparent);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

/* Menu Card */
.menu-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.menu-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange-20);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,107,43,0.1);
}

.menu-card-featured {
  border-color: rgba(255,107,43,0.25);
  box-shadow: 0 0 40px rgba(255,107,43,0.08);
}
.menu-card-featured:hover {
  border-color: var(--orange);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 60px rgba(255,107,43,0.2);
}

.menu-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.menu-card-image img {
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-image img {
  transform: scale(1.06);
}

.card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
}

.menu-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 0 16px rgba(255,107,43,0.5);
}
.menu-badge-gold {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 0 16px rgba(255,184,0,0.5);
}

.menu-card-body {
  padding: 24px;
}

.menu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.menu-name {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.menu-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.menu-price-gold {
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(255,184,0,0.4);
}

.menu-desc {
  font-size: 0.9rem;
  color: var(--white-50);
  line-height: 1.6;
  margin-bottom: 16px;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white-80);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  padding: 4px 12px;
  border-radius: 50px;
}

.menu-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  border: 1.5px solid var(--orange-20);
  padding: 10px 20px;
  border-radius: 50px;
  transition: all var(--transition);
  background: var(--orange-10);
}
.menu-order-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(255,107,43,0.4);
  gap: 12px;
}

.menu-order-btn-gold {
  color: var(--yellow);
  border-color: rgba(255,184,0,0.3);
  background: rgba(255,184,0,0.08);
}
.menu-order-btn-gold:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: 0 0 20px rgba(255,184,0,0.4);
}

/* Ingredients Strip */
.ingredients-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 32px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
}
.ingredient-item {
  font-size: 0.88rem;
  color: var(--white-80);
  font-weight: 500;
}
.ingredient-sep {
  color: var(--orange);
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════ */
.about-section {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.about-bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,43,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* About Image */
.about-image-col { position: relative; }

.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.about-img-wrapper img {
  border-radius: 20px;
  height: 520px;
  object-position: center;
  filter: brightness(0.9);
  transition: filter var(--transition);
}
.about-img-wrapper:hover img { filter: brightness(1); }

.about-img-frame {
  position: absolute;
  inset: -12px;
  border: 1.5px solid var(--orange-20);
  border-radius: 24px;
  pointer-events: none;
  z-index: -1;
}

.about-float-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--black-3);
  border: 1px solid var(--orange-20);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(255,107,43,0.1);
}
.float-icon { font-size: 2rem; }
.about-float-badge strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--white);
}
.about-float-badge span {
  font-size: 0.78rem;
  color: var(--orange);
}

/* About Text */
.about-text-col .section-title { text-align: left; }
.about-text-col .section-tag { display: inline-block; }

.about-para {
  font-size: 1rem;
  color: var(--white-50);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: border-color var(--transition), background var(--transition);
}
.pillar:hover {
  border-color: var(--orange-20);
  background: var(--orange-10);
}
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; }
.pillar strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.pillar span {
  font-size: 0.78rem;
  color: var(--white-50);
}

/* ═══════════════════════════════════════════════════
   REVIEW SECTION
═══════════════════════════════════════════════════ */
.review-section {
  padding: 120px 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.review-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(255,107,43,0.05) 0%, transparent 100%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255,184,0,0.04) 0%, transparent 100%);
  pointer-events: none;
}

.review-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--black-3);
  border: 1px solid rgba(255,107,43,0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255,107,43,0.08), 0 20px 60px rgba(0,0,0,0.4);
  max-width: 860px;
  margin: 0 auto;
}

.review-left {
  flex: 1;
  padding: 56px 48px;
}

.review-stars {
  font-size: 1.8rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.review-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.review-cta-sub {
  font-size: 0.95rem;
  color: var(--white-50);
  line-height: 1.6;
  margin-bottom: 32px;
}

.review-btn {
  font-size: 0.95rem;
  padding: 13px 28px;
}

.review-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(255,107,43,0.3), transparent);
  margin: 40px 0;
}

.review-right {
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.qr-frame {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 0 40px rgba(255,107,43,0.2), 0 8px 32px rgba(0,0,0,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.qr-frame:hover {
  transform: scale(1.04);
  box-shadow: 0 0 60px rgba(255,107,43,0.35), 0 12px 40px rgba(0,0,0,0.4);
}

.qr-placeholder { display: flex; align-items: center; justify-content: center; }

.qr-label {
  font-size: 0.8rem;
  color: var(--white-50);
  text-align: center;
}

.qr-google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white-80);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  padding: 6px 14px;
  border-radius: 50px;
}

/* ═══════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════ */
.contact-section {
  padding: 120px 0;
  background: var(--black);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--orange-20), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: border-color var(--transition), background var(--transition);
}
.contact-card:hover {
  border-color: var(--orange-20);
  background: var(--orange-10);
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.contact-card span {
  font-size: 0.88rem;
  color: var(--white-50);
}

.social-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  transition: all var(--transition);
}

.social-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 0 20px rgba(37,211,102,0.3);
}
.social-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(37,211,102,0.5);
}

.social-icons-row {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  transition: all var(--transition);
}
.social-icon-btn:nth-child(1):hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220,39,67,0.4);
}
.social-icon-btn:nth-child(2):hover {
  background: #1877F2;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24,119,242,0.4);
}

/* Map */
.map-col { position: relative; }

.map-wrapper {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,107,43,0.15);
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.map-wrapper iframe {
  filter: invert(90%) hue-rotate(180deg) saturate(0.8) brightness(0.85);
}

.map-overlay-pin {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--orange-20);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--black-2);
  border-top: 1px solid rgba(255,107,43,0.12);
  padding: 56px 24px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(255,107,43,0.06) 0%, transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--white-50);
  margin-bottom: 8px;
}

.footer-location {
  font-size: 0.88rem;
  color: var(--orange);
  margin-bottom: 24px;
}

.footer-divider {
  height: 1px;
  background: var(--white-10);
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--white-50);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrapper img { height: 380px; }
  .about-float-badge { right: 16px; bottom: -16px; }
  .about-text-col .section-title { text-align: center; }
  .about-text-col .section-tag { display: block; text-align: center; }
  .about-para { text-align: center; }
  .about-pillars { max-width: 500px; margin: 36px auto 0; }

  .contact-grid { grid-template-columns: 1fr; }
  .map-wrapper { height: 320px; }

  .review-card { flex-direction: column; }
  .review-divider { width: 80%; height: 1px; align-self: center; margin: 0; background: linear-gradient(to right, transparent, rgba(255,107,43,0.3), transparent); }
  .review-right { padding: 0 48px 48px; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav */
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 32px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    border-bottom: 1px solid rgba(255,107,43,0.15);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 12px 16px; font-size: 1rem; }
  .nav-cta { margin: 8px 0 0; text-align: center; padding: 13px; border-radius: var(--radius-sm); }
  .hamburger { display: flex; }

  /* Hero */
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-sub { font-size: 0.95rem; }
  .br-desktop { display: none; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .hero-stats { padding: 16px 20px; gap: 0; }
  .stat-num { font-size: 1rem; }
  .stat-divider { margin: 0 12px; }

  /* Menu */
  .menu-section { padding: 80px 0; }
  .menu-grid { grid-template-columns: 1fr; gap: 20px; }
  .menu-card-image { height: 220px; }

  /* About */
  .about-section { padding: 80px 0; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-float-badge { display: none; }

  /* Review */
  .review-section { padding: 80px 0; }
  .review-left { padding: 36px 28px; }
  .review-right { padding: 0 28px 36px; }

  /* Contact */
  .contact-section { padding: 80px 0; }

  /* Section */
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  /* Ingredients */
  .ingredients-strip { padding: 16px 20px; gap: 8px; }
  .ingredient-sep { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60%; height: 1px; margin: 0; }
  .review-card { border-radius: 16px; }
  .about-img-wrapper img { height: 280px; }
}