/* =====================================================
   مطعم الفخامة - CSS
   ===================================================== */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --gold: #c9a227;
  --gold-light: #e5c55a;
  --gold-dark: #a07d10;
  --red: #8b1a1a;
  --red-light: #b22222;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --gray: #888888;
  --border: rgba(201,162,39,0.15);
  --nav-h: 72px;
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'Tajawal', 'Arial', sans-serif;
  background: var(--black);
  color: var(--white);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
ul { list-style: none; }

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

.gold { color: var(--gold); }
.gold-text { color: var(--gold); }
.hidden { display: none !important; }

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 5px; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 999;
  height: var(--nav-h);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-family: 'Amiri', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.logo-icon.small { width: 32px; height: 32px; font-size: 1.1rem; flex-shrink: 0; }
.logo-text { font-size: 1.2rem; font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(201,162,39,0.08);
}
.cart-nav { display: flex; align-items: center; gap: 0.5rem; }
.cart-badge {
  background: var(--red-light);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-badge.bump {
  animation: bump 0.3s ease;
}
@keyframes bump {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

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

/* ============ PAGES ============ */
.page { display: none; }
.page.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ============ PAGE HERO ============ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 340px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero.short { height: 40vh; min-height: 260px; }
.page-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.page-hero:hover img { transform: scale(1); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  padding-right: 3rem;
  padding-left: 3rem;
}
.page-hero-content h1 {
  font-family: 'Amiri', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
}

/* ============ SECTION LABELS ============ */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Amiri', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

/* ============ BUTTONS ============ */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,162,39,0.35);
}
.btn-primary.small { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-primary.full-width { width: 100%; }

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,162,39,0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--gray);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost.small { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-ghost.full-width { width: 100%; margin-top: 0.75rem; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(139,26,26,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(139,26,26,0); }
}
.hero-title {
  font-family: 'Amiri', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollAnim 1.5s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============ WELCOME SECTION ============ */
.welcome-section {
  padding: 6rem 0;
  text-align: center;
  background: var(--dark);
  position: relative;
}
.welcome-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.welcome-text {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
}

/* ============ SHOWCASE SECTION ============ */
.showcase-section {
  padding: 6rem 0;
  background: var(--black);
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin: 2.5rem 0;
}
.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1;
}
.showcase-card.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.showcase-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.showcase-card:hover img { transform: scale(1.08); }
.showcase-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: var(--transition);
}
.showcase-card:hover .showcase-overlay { opacity: 1; }
.showcase-overlay span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
}
.showcase-cta { text-align: center; margin-top: 2rem; }

/* ============ FEATURES ============ */
.features-section {
  padding: 6rem 0;
  background: var(--dark);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--gold);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ============ OFFER BANNER ============ */
.offer-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.offer-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--red) 0%, #3d0000 100%);
}
.offer-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1551782450-a2132b4ba21d?w=1400&q=60') center/cover;
  opacity: 0.08;
}
.offer-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.offer-text { flex: 1; }
.offer-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  color: var(--off-white);
}
.offer-text h2 {
  font-family: 'Amiri', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.offer-text p { font-size: 1rem; margin-bottom: 1.5rem; opacity: 0.85; }
.offer-image {
  flex-shrink: 0;
  width: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.offer-image img { width: 100%; height: 280px; object-fit: cover; }

/* ============ MENU ============ */
.menu-container { padding: 4rem 1.5rem; }
.menu-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}
.menu-tab {
  background: none;
  color: var(--gray);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.menu-tab::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  right: 0; left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.menu-tab.active { color: var(--gold); }
.menu-tab.active::after { transform: scaleX(1); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.menu-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-card-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.menu-card-desc { font-size: 0.83rem; color: var(--gray); margin-bottom: 1rem; line-height: 1.6; flex: 1; }
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.menu-card-price {
  font-family: 'Amiri', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark3);
  border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  width: 30px; height: 30px;
  background: none;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: rgba(201,162,39,0.15); }
.qty-num {
  min-width: 24px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}
.add-to-cart-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 110px;
}
.add-to-cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
}
.add-to-cart-btn svg { width: 14px; height: 14px; }

/* ============ CART ============ */
.cart-container {
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
.cart-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
}
.cart-empty-icon {
  width: 80px; height: 80px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gray);
}
.cart-empty-icon svg { width: 40px; height: 40px; }
.cart-empty h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.cart-empty p { color: var(--gray); margin-bottom: 2rem; }
.cart-item {
  display: flex;
  gap: 1rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  transition: var(--transition);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }
.cart-item-img {
  width: 100px;
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-body {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-item-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.cart-item-price { font-size: 0.9rem; color: var(--gold); font-weight: 600; }
.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
}
.remove-btn {
  background: rgba(139,26,26,0.2);
  color: #e05555;
  border: 1px solid rgba(139,26,26,0.3);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
}
.remove-btn:hover { background: var(--red); color: white; }

.cart-summary {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.summary-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.summary-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.75);
}
.total-row { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 1.5rem; }
.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

/* ============ ABOUT ============ */
.about-container { padding: 5rem 1.5rem; }
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
  line-height: 1.9;
}
.about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.chefs-section { margin-bottom: 5rem; }
.chefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.chef-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.chef-card:hover {
  border-color: rgba(201,162,39,0.4);
  transform: translateY(-6px);
}
.chef-img-wrap { height: 250px; overflow: hidden; }
.chef-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.chef-card:hover .chef-img-wrap img { transform: scale(1.06); }
.chef-card h3 { font-size: 1.05rem; font-weight: 700; padding: 1.2rem 1rem 0.3rem; }
.chef-card span { font-size: 0.82rem; color: var(--gold); font-weight: 600; display: block; margin-bottom: 0.75rem; }
.chef-card p { font-size: 0.85rem; color: var(--gray); padding: 0 1.2rem 1.2rem; line-height: 1.6; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-item {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.value-item:hover { border-color: var(--gold); }
.value-number {
  font-family: 'Amiri', serif;
  font-size: 2.5rem;
  color: rgba(201,162,39,0.2);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.value-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--gold); }
.value-item p { font-size: 0.87rem; color: var(--gray); line-height: 1.7; }

/* ============ CONTACT ============ */
.contact-container { padding: 4rem 1.5rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h2 { font-family: 'Amiri', serif; font-size: 2rem; margin-bottom: 2rem; }
.contact-items { margin-bottom: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.ci-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.ci-icon.whatsapp { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.2); color: #25d366; }
.ci-icon svg { width: 20px; height: 20px; }
.ci-text { display: flex; flex-direction: column; gap: 0.25rem; }
.ci-label { font-size: 0.75rem; color: var(--gray); font-weight: 600; letter-spacing: 1px; }
.ci-text a, .ci-text span { font-size: 0.92rem; transition: var(--transition); }
.ci-text a:hover { color: var(--gold); }

.social-links { display: flex; gap: 0.75rem; margin-bottom: 2rem; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn.fb { background: rgba(24,119,242,0.15); color: #1877f2; border: 1px solid rgba(24,119,242,0.2); }
.social-btn.fb:hover { background: #1877f2; color: white; transform: translateY(-2px); }
.social-btn.ig { background: rgba(225,48,108,0.15); color: #e1306c; border: 1px solid rgba(225,48,108,0.2); }
.social-btn.ig:hover { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); color: white; transform: translateY(-2px); }
.social-btn.tk { background: rgba(0,0,0,0.3); color: white; border: 1px solid rgba(255,255,255,0.15); }
.social-btn.tk:hover { background: #000; transform: translateY(-2px); }

.map-container {
  width: 100%;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* Form */
.form-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-card h2 { font-family: 'Amiri', serif; font-size: 2rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.8);
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--white);
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,162,39,0.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.success-icon {
  width: 64px; height: 64px;
  background: rgba(37,211,102,0.1);
  border: 2px solid rgba(37,211,102,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #25d366;
}
.success-icon svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.3rem; margin-bottom: 0.75rem; color: var(--gold); }
.form-success p { color: var(--gray); font-size: 0.9rem; }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark2);
  border: 1px solid var(--gold);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.footer-links h4, .footer-social h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; color: var(--gold); }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.88rem; color: var(--gray); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-social-links { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.footer-contact a { font-size: 0.88rem; color: var(--gray); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.83rem;
  color: var(--gray);
}

/* ============ INSTALL BANNER ============ */
.install-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 480px;
  margin: 0 auto;
  background: var(--dark2);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  z-index: 9000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  animation: slideUp 0.4s ease;
}
@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: none; opacity: 1; } }
.install-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.install-content > div { flex: 1; }
.install-content strong { font-size: 0.9rem; display: block; }
.install-content p { font-size: 0.78rem; color: var(--gray); margin: 0; }
.install-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* ============ ANIMATIONS ============ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-card.large { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/7; }
  .cart-container { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); right: 0; left: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: all; }
  .nav-link { padding: 0.75rem 1rem; width: 100%; }

  .hero { min-height: 80vh; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
  .chefs-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .offer-content { flex-direction: column; }
  .offer-image { width: 100%; }

  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-card.large { grid-column: span 2; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .chefs-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .page-hero-overlay { padding-right: 1.5rem; padding-left: 1.5rem; }
}

@media (max-width: 480px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card.large { grid-column: span 1; }
  .features-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card-footer { flex-direction: column; align-items: stretch; }
  .add-to-cart-btn { width: 100%; }
  .cart-item-img { width: 80px; }
  .cart-item-controls { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .form-card { padding: 1.5rem; }
  .install-banner { right: 1rem; left: 1rem; }
  .hero-title { font-size: 2.5rem; }
}
