/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #D4930A;
  --gold-lt: #FFF8E6;
  --char: #1A1108;
  --char2: #2A1A0A;
  --ember: #C0410A;
  --ember-lt: #FFF0E8;
  --cream: #FEFAF3;
  --muted: #7A5C3A;
  --border: rgba(180,120,60,0.15);
  --radius: 16px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--char);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 800; color: var(--ember); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; line-height: 1.1; margin-bottom: 14px;
}
.section-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--muted); font-weight: 300;
  line-height: 1.65; max-width: 540px; margin-bottom: 48px;
}

/* ── LAYOUT WRAPPER ── */
.wrap {
  width: 100%; max-width: 1152px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,17,8,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,147,10,0.2);
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: clamp(16px, 4vw, 40px);
}
.nav-logo { color: var(--gold); font-size: 18px; font-weight: 800; letter-spacing: -0.4px; white-space: nowrap; }
.nav-logo span { color: rgba(255,255,255,0.5); font-weight: 300; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: rgba(255,255,255,0.6); font-size: 13px; transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--gold); }
#lang-btn {
  background: rgba(212,147,10,0.15); border: 1px solid rgba(212,147,10,0.4);
  color: var(--gold); padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 700; cursor: pointer;
  transition: background .2s; white-space: nowrap;
}
#lang-btn:hover { background: rgba(212,147,10,0.3); }
.nav-cta {
  background: var(--gold); color: var(--char);
  padding: 8px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 800;
  transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: #E8A80F; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--char);
  padding-top: 56px;
}
.hero-swirl {
  position: absolute; pointer-events: none;
}
.hero-swirl-tl { top: 0; left: 0; transform: translate(-30%,-25%); opacity: .22; }
.hero-swirl-br { bottom: 0; right: 0; transform: translate(22%,22%); opacity: .18; }

/* Floating food images */
.fi {
  position: absolute; object-fit: contain;
  animation: float 4s ease-in-out infinite;
}
.fi-burger {
  width: clamp(120px, 18vw, 280px);
  top: 12%; left: clamp(8px, 3vw, 80px);
  animation-delay: 0s;
}
.fi-dumpling {
  width: clamp(90px, 13vw, 220px);
  top: 10%; right: clamp(8px, 3vw, 80px);
  animation-delay: 0.4s;
}
.fi-pizza {
  width: clamp(100px, 15vw, 260px);
  bottom: 10%; right: clamp(8px, 3vw, 80px);
  animation-delay: 0.8s;
}
.fi-basil {
  width: clamp(30px, 4vw, 60px);
  bottom: 22%; left: clamp(40px, 8vw, 120px);
  animation-delay: 1.2s; opacity: .75;
}
.fi-tomato1 {
  width: clamp(24px, 3vw, 44px);
  top: 42%; right: 30%;
  animation-delay: 1s; opacity: .6;
}
.fi-tomato2 {
  width: clamp(20px, 2.5vw, 38px);
  bottom: 36%; left: 28%;
  animation-delay: 0.6s; opacity: .55;
}
@media (max-width: 480px) {
  .fi-basil, .fi-tomato1, .fi-tomato2 { display: none; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(1.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .fi { animation: none; }
}

/* Hero center text */
.hero-content {
  position: relative; z-index: 20;
  text-align: center;
  max-width: min(680px, 90vw);
  padding: 40px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.hero-tag {
  display: inline-block;
  background: rgba(212,147,10,0.18); border: 1px solid rgba(212,147,10,0.4);
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 20px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800; color: #fff;
  line-height: 1.06; letter-spacing: -1px;
}
.hero p {
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,255,255,0.55); font-weight: 300;
  line-height: 1.7; max-width: 540px;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.btn-gold {
  background: var(--gold); color: var(--char);
  padding: 14px 32px; border-radius: 10px;
  font-size: 15px; font-weight: 800;
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: #E8A80F; transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.25); color: #fff;
  padding: 14px 32px; border-radius: 10px;
  font-size: 15px; font-weight: 500;
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── TICKER ── */
.ticker {
  background: var(--gold); padding: 14px 0;
}
.ticker-inner {
  display: flex; flex-wrap: wrap; gap: 12px 32px;
  justify-content: center; align-items: center;
}
.tick {
  display: flex; align-items: center; gap: 8px;
  color: var(--char); font-size: 13px; font-weight: 700;
}
.tick-e { font-size: 20px; }

/* ── SECTIONS ── */
section { padding-block: clamp(56px, 8vw, 96px); }

/* ── SERVICES ── */
.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform .2s, box-shadow .2s; cursor: default;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(100,50,10,.1); }
.card-badge {
  display: inline-block; font-size: 10px; font-weight: 800;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--ember); background: var(--ember-lt);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 12px;
}
.card-ico { font-size: 28px; margin-bottom: 12px; }
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ── WHO WE SERVE ── */
.serve { background: var(--char2); }
.serve .section-label { color: var(--gold); }
.serve .section-title { color: var(--gold); }
.serve .section-sub { color: rgba(255,255,255,0.5); }
.rest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.rest-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 20px 14px; text-align: center;
  transition: background .2s, border-color .2s, transform .2s; cursor: default;
}
.rest-card:hover {
  background: rgba(212,147,10,.13); border-color: rgba(212,147,10,.45);
  transform: translateY(-4px);
}
.rest-card .be { font-size: 36px; margin-bottom: 10px; }
.rest-card h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.rest-card p { color: rgba(255,255,255,.35); font-size: 11px; }

/* ── PRICING ── */
.pricing { background: #fff; }
.pricing-head { text-align: center; margin-bottom: 52px; }
.pricing-head .section-sub { max-width: 480px; margin-inline: auto; margin-bottom: 0; }
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px; max-width: 980px; margin-inline: auto;
}
.plan {
  border: 1.5px solid var(--border); border-radius: 20px;
  padding: 32px 28px; background: #fff; position: relative;
  transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-7px); box-shadow: 0 22px 56px rgba(100,50,10,.12); }
.plan.feat {
  border-color: var(--gold); background: var(--char);
  box-shadow: 0 10px 48px rgba(212,147,10,.22);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--char);
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 18px; border-radius: 20px; white-space: nowrap;
}
.plan-name { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.feat .plan-name { color: rgba(255,255,255,.45); }
.plan-price { font-size: 52px; font-weight: 800; color: var(--char); line-height: 1; }
.feat .plan-price { color: var(--gold); }
.plan-price sup { font-size: 22px; vertical-align: super; color: var(--ember); font-weight: 600; }
.feat .plan-price sup { color: rgba(212,147,10,.7); }
.plan-period { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.feat .plan-period { color: rgba(255,255,255,.4); }
.plan-tag { font-size: 14px; font-weight: 600; color: var(--char2); margin-bottom: 20px; line-height: 1.35; }
.feat .plan-tag { color: rgba(255,255,255,.85); }
.plan hr { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.feat hr { border-color: rgba(255,255,255,.1); }
.plan ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan ul li { display: flex; gap: 8px; font-size: 13px; color: var(--muted); line-height: 1.45; font-weight: 300; }
.feat ul li { color: rgba(255,255,255,.68); }
.plan ul li::before { content: "✓"; color: var(--gold); font-weight: 800; flex-shrink: 0; }
.plan-btn {
  width: 100%; padding: 13px; border-radius: 10px;
  font-size: 14px; font-weight: 800; cursor: pointer;
  border: 1.5px solid var(--gold); background: transparent; color: var(--gold);
  transition: background .2s, color .2s, transform .1s;
}
.plan-btn:hover { background: var(--gold); color: var(--char); transform: scale(1.02); }
.feat .plan-btn { background: var(--gold); color: var(--char); }
.feat .plan-btn:hover { background: #E8A80F; }

/* ── PROCESS ── */
.process { background: var(--cream); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0 48px; max-width: 900px;
}
.step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-n {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--char);
  font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ── CTA SECTION ── */
.cta-sec { background: var(--ember); }
.cta-inner { text-align: center; }
.cta-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: #fff; font-weight: 800; margin-bottom: 14px;
}
.cta-inner p { color: rgba(255,255,255,.7); font-size: 16px; font-weight: 300; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ember);
  padding: 15px 36px; border-radius: 10px;
  font-size: 15px; font-weight: 800;
  transition: transform .15s, background .2s;
}
.btn-white:hover { transform: translateY(-2px); background: var(--gold-lt); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--char); color: var(--gold);
  border: 2px solid var(--gold);
  padding: 15px 32px; border-radius: 10px;
  font-size: 15px; font-weight: 800;
  transition: transform .15s, background .2s, color .2s;
}
.btn-wa:hover { transform: translateY(-2px); background: var(--gold); color: var(--char); }
.btn-wa svg { flex-shrink: 0; }


/* ── FOOTER ── */
footer { background: var(--char); padding: 22px 16px; text-align: center; }
footer p { color: rgba(255,255,255,.35); font-size: 12px; }
footer span { color: var(--gold); }

/* ── RTL ARABIC ── */
[dir="rtl"] { font-family: 'Segoe UI', Tahoma, Arial, sans-serif; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .hero-btns { flex-direction: row-reverse; }
[dir="rtl"] .step { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .plan ul li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .plan ul li::before { order: 1; }
[dir="rtl"] .section-sub { margin-inline-start: 0; }

/* ── RESPONSIVE NAV ── */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-logo span { display: none; }
}

/* ── UTILITIES ── */
@media (max-width: 540px) {
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-gold, .btn-outline { width: 100%; text-align: center; padding: 14px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-white, .btn-wa { width: 100%; max-width: 320px; justify-content: center; }
}
