/* ============================================
   مطعم البيت المصري — "Warm Centered" Layout (RTL)
   Unique layout: center-aligned hero, floating stats,
   full-width about overlay, tabbed horizontal menu,
   single-quote testimonials, standalone reservation
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:     #8b1a1a;
  --red2:    #6b1212;
  --red3:    #a52020;
  --gold:    #c9a227;
  --gold2:   #a8881c;
  --gold3:   #e0b830;
  --dark:    #1a1008;
  --dark2:   #241409;
  --white:   #ffffff;
  --cream:   #fdf8f0;
  --offwhite:#faf5eb;
  --text:    #1a1008;
  --muted:   #6b5c40;
  --light:   #9e8d70;
  --border:  #e8dcca;
  --green:   #25d366;
  --radius:  14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
}

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

body {
  font-family: 'Cairo', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
  text-align: right;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 6%;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s ease;
  background: transparent;
  direction: rtl;
}

.navbar.scrolled {
  background: rgba(26,16,8,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 9px;
  display: grid; place-items: center;
}
.nav-logo .logo-icon img { width: 100%; height: 100%; display: block; border-radius: inherit; }
.nav-logo .name { font-size: 1.1rem; font-weight: 900; color: var(--white); letter-spacing: 0; }
.nav-logo .name span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; flex-direction: row-reverse; }
.nav-links a { color: rgba(255,255,255,0.78); font-size: 0.92rem; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  transition: all 0.2s !important;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold2) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; display: block; }

/* ─── HERO (CENTER-ALIGNED) ─────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-bottom: 80px; /* space for floating stats */
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,16,8,0.85) 0%,
    rgba(139,26,26,0.65) 50%,
    rgba(26,16,8,0.90) 100%
  );
}

.hero-content {
  position: relative; z-index: 1;
  padding: 140px 6% 100px;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.18);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold3);
  padding: 7px 18px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Decorative gold ornament divider */
.hero-ornament {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
  opacity: 0.7;
  font-weight: 300;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: 0;
}
.hero h1 em { color: var(--gold); font-style: normal; }

.hero p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.85;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--dark);
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 800; font-size: 0.98rem;
  box-shadow: 0 8px 28px rgba(201,162,39,0.45);
  transition: all 0.25s;
  font-family: 'Cairo', sans-serif;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,162,39,0.5); }
.btn-primary svg { width: 18px; height: 18px; fill: currentColor; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 700; font-size: 0.98rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.25s; backdrop-filter: blur(4px);
  font-family: 'Cairo', sans-serif;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.btn-ghost svg { width: 18px; height: 18px; fill: currentColor; }

.hero-scroll {
  position: absolute; bottom: 110px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45); font-size: 0.7rem; letter-spacing: 1px;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── FLOATING STATS ─────────────────────── */
.floating-stats {
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 90%;
  max-width: 960px;
}

.float-stat-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.float-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

.float-stat-card .stat-num {
  display: block;
  font-size: 2.4rem; font-weight: 900;
  color: var(--gold); letter-spacing: -1px; line-height: 1;
}
.float-stat-card .stat-label {
  font-size: 0.82rem; color: var(--muted);
  letter-spacing: 0.3px; margin-top: 8px; font-weight: 600;
  display: block;
}

/* ─── SECTIONS COMMON ─────────────────────── */
.section { padding: 100px 6%; }
.container { max-width: 1160px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--red3); font-size: 0.8rem; font-weight: 700;
  margin-bottom: 16px; letter-spacing: 0.3px;
}
.section-eyebrow::after {
  content: '';
  width: 28px; height: 2px; background: var(--gold);
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 900; color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem; color: var(--muted); max-width: 560px;
  line-height: 1.85;
}
.header-center { text-align: center; margin-bottom: 64px; }
.header-center .section-eyebrow { margin: 0 auto 16px; display: flex; justify-content: center; }
.header-center .section-eyebrow::after { display: none; }
.header-center .section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.header-center .section-desc { margin: 0 auto; }

/* ─── ABOUT (Full-width overlay) ─────────── */
.about {
  background: var(--cream);
  padding-top: 120px; /* extra space for floating stats overlap */
}

.about-hero-image {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 0;
}
.about-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-overlay-box {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(26,16,8,0.88);
  backdrop-filter: blur(8px);
  padding: 48px 56px;
  border-radius: var(--radius);
  text-align: center;
  max-width: 640px;
  width: 90%;
  border: 1px solid rgba(201,162,39,0.2);
}
.about-overlay-box .section-eyebrow {
  color: var(--gold3);
  justify-content: center;
  display: flex;
}
.about-overlay-box .section-eyebrow::after { display: none; }
.about-overlay-box .section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.about-overlay-box .section-title {
  color: var(--white);
}
.about-overlay-box .section-desc {
  color: rgba(255,255,255,0.7);
  margin: 0 auto;
}

/* About features: horizontal 3-col row */
.about-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.about-feature {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.about-feature:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.about-icon {
  width: 56px; height: 56px;
  background: rgba(139,26,26,0.08); border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.about-icon svg { width: 24px; height: 24px; fill: var(--red); }
.about-feature h4 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.about-feature p { font-size: 0.86rem; color: var(--muted); line-height: 1.7; }

/* ─── MENU (Tabbed + Horizontal cards) ──── */
.menu { background: var(--white); }

.menu-tabs { display: flex; gap: 12px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.menu-tab {
  padding: 10px 28px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 700; cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--muted);
  transition: all 0.2s; background: var(--white);
  font-family: 'Cairo', sans-serif;
}
.menu-tab.active, .menu-tab:hover {
  background: var(--red); color: var(--white); border-color: var(--red);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Horizontal menu card */
.menu-card-h {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  background: var(--white);
}
.menu-card-h:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.menu-thumb-h {
  width: 200px;
  min-width: 200px;
  min-height: 160px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.menu-card-h:nth-child(1) .menu-thumb-h { background: linear-gradient(135deg, #8b1a1a 0%, #c9a227 100%); }
.menu-card-h:nth-child(2) .menu-thumb-h { background: linear-gradient(135deg, #5c2a00 0%, #8b4513 100%); }
.menu-card-h:nth-child(3) .menu-thumb-h { background: linear-gradient(135deg, #1a2a1a 0%, #2d5a2d 100%); }
.menu-card-h:nth-child(4) .menu-thumb-h { background: linear-gradient(135deg, #4a1a00 0%, #8b3a00 100%); }
.menu-card-h:nth-child(5) .menu-thumb-h { background: linear-gradient(135deg, #1a1a4a 0%, #2a2a8b 100%); }
.menu-card-h:nth-child(6) .menu-thumb-h { background: linear-gradient(135deg, #3a1a00 0%, #7a4500 100%); }

.menu-thumb-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%; display: grid; place-items: center;
}
.menu-thumb-icon svg { width: 32px; height: 32px; fill: var(--white); }

.menu-body-h {
  padding: 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-body-h h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.menu-body-h p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.menu-footer-h {
  display: flex; align-items: center; gap: 16px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border);
}
.menu-price { font-size: 1.1rem; font-weight: 900; color: var(--red); }
.menu-badge-tag {
  font-size: 0.65rem; font-weight: 700;
  background: rgba(201,162,39,0.12); color: var(--gold2);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 3px 10px; border-radius: 100px;
}

/* ─── TESTIMONIALS (Single large centered) ─ */
.testimonials {
  background: var(--cream);
  padding: 100px 6%;
}
.testimonials .section-title { color: var(--dark); }
.testimonials .section-eyebrow { color: var(--red3); }
.testimonials .section-eyebrow::before { background: var(--gold); }

.testi-showcase {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testi-slide {
  display: none;
}
.testi-slide.active {
  display: block;
}

.testi-slide blockquote {
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 2;
  margin-bottom: 32px;
  font-weight: 500;
  position: relative;
  padding: 0 40px;
}
.testi-slide blockquote::before {
  content: '\AB';
  position: absolute;
  top: -16px;
  right: -10px;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.35;
  font-weight: 900;
  line-height: 1;
}
.testi-slide blockquote::after {
  content: '\BB';
  position: absolute;
  bottom: -32px;
  left: -10px;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.35;
  font-weight: 900;
  line-height: 1;
}

.testi-author-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: grid; place-items: center;
  font-size: 1.1rem; font-weight: 800; color: var(--white);
  margin-bottom: 8px;
}
.testi-name { font-size: 1rem; font-weight: 800; color: var(--dark); }
.testi-role { font-size: 0.82rem; color: var(--muted); }

.testi-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}
.testi-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.testi-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ─── RESERVATION (Standalone) ───────────── */
.reservation {
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}
.reservation::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,162,39,0.06);
  pointer-events: none;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.reservation-text .section-desc {
  margin-bottom: 32px;
}

.reservation-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.res-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
}
.res-feat svg {
  width: 20px; height: 20px;
  fill: var(--gold);
  min-width: 20px;
}

.reservation-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.reservation-form-box h3 {
  font-size: 1.4rem; font-weight: 900; color: var(--dark); margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 9px;
  font-family: 'Cairo', sans-serif; font-size: 0.92rem;
  line-height: 1.35;
  color: var(--text); background-color: var(--cream);
  transition: all 0.2s; outline: none;
  direction: rtl; text-align: right;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  padding-left: 46px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23261510' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: left 16px center;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--red); background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(139,26,26,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; background: var(--red);
  color: var(--white); border: none; padding: 15px;
  border-radius: 10px; font-family: 'Cairo', sans-serif;
  font-size: 1rem; font-weight: 800; cursor: pointer;
  transition: all 0.25s; margin-top: 8px;
}
.btn-submit:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(139,26,26,0.35); }
.form-msg { margin-top: 14px; padding: 13px 16px; border-radius: 9px; font-size: 0.9rem; font-weight: 600; display: none; }
.form-msg.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; display: block; }
.form-msg.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

/* ─── CONTACT INFO STRIP (Centered row) ──── */
.contact-info-strip {
  background: var(--dark);
  padding: 64px 6%;
}
.contact-row {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
}
.contact-item-icon {
  width: 52px; height: 52px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 6px;
}
.contact-item-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.contact-item-label {
  font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.3px;
}
.contact-item-val {
  font-size: 0.92rem; font-weight: 700;
  color: rgba(255,255,255,0.85);
}

/* ─── FOOTER (3 columns) ────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 56px 6% 28px; direction: rtl; }
.footer-top {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.4); margin-top: 14px; line-height: 1.8; max-width: 270px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.28); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list a { font-size: 0.86rem; color: rgba(255,255,255,0.45); display: flex; gap: 8px; align-items: center; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list svg { width: 14px; height: 14px; fill: var(--gold); min-width: 14px; }
.footer-bottom { max-width: 1160px; margin: 28px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 10px; }

/* ─── FLOATING WHATSAPP ───────────────────── */
.wa-float {
  position: fixed; bottom: 28px; left: 28px;
  width: 58px; height: 58px;
  background: var(--green); border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  z-index: 9999; transition: all 0.25s;
  animation: waFloat 3s ease infinite;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.wa-float:hover { transform: scale(1.12) !important; animation: none; }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ─── MOBILE MENU ─────────────────────────── */
.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--dark); padding: 16px 6% 24px;
  z-index: 999; border-top: 1px solid rgba(255,255,255,0.06);
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.75); padding: 14px 0; font-size: 1.05rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu a:hover { color: var(--gold); }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .floating-stats { grid-template-columns: repeat(2, 1fr); width: 80%; bottom: -80px; }
  .about { padding-top: 140px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-features-row { grid-template-columns: 1fr; gap: 20px; }
  .about-hero-image { height: 360px; }
  .about-overlay-box { padding: 32px 28px; }
  .reservation-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-row { grid-template-columns: repeat(2, 1fr); }
  .menu-thumb-h { width: 160px; min-width: 160px; }
}

@media (max-width: 640px) {
  .section { padding: 72px 5%; }
  .floating-stats { grid-template-columns: 1fr 1fr; width: 92%; gap: 12px; bottom: -90px; }
  .about { padding-top: 150px; }
  .about-hero-image { height: 300px; }
  .about-overlay-box { padding: 24px 20px; }
  .about-overlay-box .section-title { font-size: 1.3rem; }
  .menu-card-h { flex-direction: column; }
  .menu-thumb-h { width: 100%; min-width: 100%; min-height: 120px; }
  .menu-body-h { padding: 20px; }
  .testi-slide blockquote { font-size: 1.05rem; padding: 0 20px; }
  .testi-slide blockquote::before { font-size: 3rem; top: -12px; right: -4px; }
  .testi-slide blockquote::after { font-size: 3rem; bottom: -24px; left: -4px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .reservation-form-box { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
}
