/* ══════════════════════════════════════════
   MOVE BOOTH — Luxury Theme
   Palette: #0a0a0a bg · #c9a84c gold · #f5f0e8 cream
   Fonts: Cormorant Garamond (headings) · Tajawal (Arabic)
══════════════════════════════════════════ */

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

html { scroll-behavior: smooth; }

body {
  background: #0a0a0a;
  color: #f5f0e8;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.7;
  direction: ltr;
}

[dir="rtl"], .ar {
  font-family: 'Tajawal', sans-serif;
}

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

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.80), rgba(0,0,0,.70), #0a0a0a);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  margin: auto;
}

.hero-title {
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 300;
  letter-spacing: .3em;
  color: #f5f0e8;
  line-height: 1;
  margin-bottom: 32px;
}

.gold-divider {
  width: 120px;
  height: 1px;
  background: #c9a84c;
  margin: 0 auto 32px;
}

.hero-sub {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  color: #f5f0e8;
  margin-bottom: 48px;
}

.btn-hero {
  background: transparent;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  padding: 14px 48px;
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  letter-spacing: .25em;
  cursor: pointer;
  transition: background .3s, color .3s, box-shadow .3s;
}

.btn-hero:hover {
  background: #c9a84c;
  color: #0a0a0a;
  box-shadow: 0 0 30px rgba(201,168,76,.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, #c9a84c, transparent);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ── ABOUT STRIP ──────────────────────────── */
.about-strip {
  border-top: 1px solid rgba(201,168,76,.4);
  border-bottom: 1px solid rgba(201,168,76,.4);
  padding: 72px 24px;
}

.about-inner {
  max-width: 860px;
  margin: auto;
  text-align: center;
}

.about-inner h2 {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #c9a84c;
  font-weight: 500;
  margin-bottom: 24px;
}

.about-inner p {
  font-size: 1.1rem;
  color: rgba(245,240,232,.8);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-inner p[dir="rtl"] {
  font-family: 'Tajawal', sans-serif;
}

/* ── SERVICES ─────────────────────────────── */
.services { padding: 96px 24px; }

.services-inner { max-width: 1280px; margin: auto; }

.section-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: .2em;
  color: #c9a84c;
  text-align: center;
  margin-bottom: 80px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

/* Card */
.card {
  background: #000;
  border: 1px solid rgba(201,168,76,.4);
  overflow: hidden;
  transition: transform .5s, box-shadow .5s, border-color .5s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(201,168,76,.3);
  border-color: #c9a84c;
}

.card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}

.card:hover .card-img img { transform: scale(1.08); }

.card-body { padding: 24px; }

.card-label {
  display: block;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 8px;
}

.card-body h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #f5f0e8;
  margin-bottom: 4px;
}

.card-body h3[dir="rtl"] { font-family: 'Tajawal', sans-serif; }

.card-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #c9a84c;
  margin-bottom: 12px;
}

.card-price small {
  font-size: .75rem;
  color: rgba(245,240,232,.5);
  font-weight: 400;
  margin-right: 4px;
}

.promo-badge {
  font-family: 'Tajawal', sans-serif;
  font-size: .78rem;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  padding: 8px 12px;
  color: #c9a84c;
  margin-bottom: 12px;
  line-height: 1.5;
}

.card-body ul {
  list-style: none;
  font-size: .78rem;
  color: rgba(245,240,232,.6);
  margin-bottom: 16px;
  line-height: 1.9;
}

.card-body ul[dir="rtl"] { font-family: 'Tajawal', sans-serif; }

/* Price tier table */
.price-tiers {
  width: 100%;
  border-collapse: collapse;
  font-size: .76rem;
  margin-bottom: 4px;
  border: 1px solid rgba(201,168,76,.3);
}

.price-tiers tr:nth-child(odd)  td { background: rgba(201,168,76,.06); }
.price-tiers tr:nth-child(even) td { background: transparent; }

.price-tiers td {
  padding: 5px 12px;
  color: rgba(245,240,232,.7);
}

.price-tiers td:last-child {
  text-align: left;
  color: #c9a84c;
  font-weight: 600;
}

/* Card action row */
.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-ghost {
  font-size: .8rem;
  color: rgba(245,240,232,.5);
  border-bottom: 1px solid rgba(201,168,76,.3);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}

.btn-ghost:hover { color: #c9a84c; border-color: #c9a84c; }

.btn-book {
  font-family: 'Tajawal', sans-serif;
  background: transparent;
  border: 1px solid rgba(201,168,76,.5);
  color: #c9a84c;
  padding: 7px 18px;
  font-size: .82rem;
  cursor: pointer;
  letter-spacing: .05em;
  transition: background .25s, color .25s;
}

.btn-book:hover { background: #c9a84c; color: #0a0a0a; }

/* ── TESTIMONIALS ─────────────────────────── */
.testimonials {
  padding: 96px 24px;
  border-top: 1px solid rgba(201,168,76,.4);
  background: #050505;
}

.testimonials-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.testimonials-inner h2 {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: #c9a84c;
  letter-spacing: .15em;
  margin-bottom: 24px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.testimonial-card {
  border: 1px solid rgba(201,168,76,.3);
  padding: 40px 32px 32px;
  text-align: right;
  position: relative;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  background: #0a0a0a;
}

.testimonial-card:hover {
  border-color: #c9a84c;
  box-shadow: 0 8px 40px rgba(201,168,76,.15);
  transform: translateY(-3px);
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,168,76,.25);
  margin-bottom: 16px;
  text-align: right;
}

.testimonial-card p {
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  color: rgba(245,240,232,.75);
  line-height: 1.9;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card h4 {
  font-family: 'Tajawal', sans-serif;
  font-size: .85rem;
  color: #c9a84c;
  letter-spacing: .08em;
  font-weight: 500;
}

/* ── DELIVERY STRIP ───────────────────────── */
.delivery-strip {
  font-family: 'Tajawal', sans-serif;
  text-align: center;
  padding: 16px 24px;
  background: rgba(201,168,76,.08);
  border-top: 1px solid rgba(201,168,76,.3);
  border-bottom: 1px solid rgba(201,168,76,.3);
  color: #c9a84c;
  font-size: .95rem;
  letter-spacing: .03em;
}

/* ── BOOKING ──────────────────────────────── */
.booking-section {
  padding: 96px 24px;
  background: rgba(0,0,0,.4);
  border-top: 1px solid rgba(201,168,76,.4);
}

.booking-inner {
  max-width: 640px;
  margin: auto;
}

.booking-inner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: .2em;
  color: #c9a84c;
  text-align: center;
  margin-bottom: 12px;
}

.booking-inner > p {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.15rem;
  color: rgba(245,240,232,.7);
  text-align: center;
  margin-bottom: 48px;
}

.field {
  margin-bottom: 24px;
}

.field label {
  display: block;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 8px;
}

.field input,
.field select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(201,168,76,.4);
  padding: 12px 16px;
  color: #f5f0e8;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color .25s;
}

.field input::placeholder { color: rgba(245,240,232,.3); }

.field input:focus,
.field select:focus { border-color: #c9a84c; }

.field select { background: #0a0a0a; }
.field select option { background: #111; }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: #c9a84c;
  border: none;
  color: #0a0a0a;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s, box-shadow .3s;
  margin-top: 8px;
}

.btn-submit:hover {
  background: #d4b55f;
  box-shadow: 0 0 30px rgba(201,168,76,.5);
}

.btn-submit span {
  font-family: 'Tajawal', sans-serif;
}

.form-note {
  font-family: 'Tajawal', sans-serif;
  text-align: center;
  font-size: .85rem;
  color: rgba(245,240,232,.5);
  margin-top: 16px;
}

/* ── FOOTER ───────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(201,168,76,.4);
  padding: 64px 24px;
  text-align: center;
}

.site-footer h3 {
  font-size: 2.2rem;
  letter-spacing: .3em;
  color: #c9a84c;
  font-weight: 300;
  margin-bottom: 12px;
}

.site-footer > p {
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,.6);
  font-size: 1rem;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 32px;
  color: #c9a84c;
}

.footer-links a { color: #c9a84c; transition: color .2s; }
.footer-links a:hover { color: #d4b55f; }

.copyright {
  font-size: .8rem;
  color: rgba(245,240,232,.3);
  letter-spacing: .05em;
}

/* ── WHATSAPP FLOAT ────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  z-index: 999;
  transition: transform .25s, box-shadow .25s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}

/* ── GALLERY PAGES ─────────────────────────── */
.gallery-nav {
  padding: 16px 30px;
  background: #000;
  border-bottom: 1px solid rgba(201,168,76,.2);
}

.gallery-nav a {
  font-family: 'Tajawal', sans-serif;
  color: #c9a84c;
  font-size: .95rem;
  letter-spacing: 1px;
  transition: color .2s;
}

.gallery-nav a:hover { color: #f5f0e8; }

.gallery-header {
  text-align: center;
  padding: 60px 24px 36px;
  background: #000;
}

.gallery-header h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: .25em;
  font-weight: 300;
  color: #f5f0e8;
  margin-bottom: 12px;
}

.gallery-header p {
  color: rgba(245,240,232,.6);
  font-size: 1rem;
  margin: 6px 0;
}

.gallery-price {
  margin-top: 16px !important;
  font-size: 1.15rem !important;
  color: #c9a84c !important;
}

.gallery-price span { color: rgba(245,240,232,.5); font-size: .85rem; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  padding: 48px 32px;
  max-width: 1200px;
  margin: auto;
}

.photo-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  background: #111;
  transition: transform .3s, box-shadow .3s;
}

.photo-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
}

.booking-callout {
  text-align: center;
  padding: 48px 24px;
  background: rgba(201,168,76,.04);
  border-top: 1px solid rgba(201,168,76,.2);
}

.booking-callout p {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.1rem;
  color: rgba(245,240,232,.7);
  margin-bottom: 20px;
}

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

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 11px 28px;
  font-size: .92rem;
  display: inline-block;
  transition: background .2s;
}

.btn-whatsapp:hover { background: #1ebc5a; }

.gallery-footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: rgba(245,240,232,.3);
  font-size: .82rem;
  border-top: 1px solid rgba(201,168,76,.15);
}

/* Giveaways price table in gallery */
.price-table-header {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.price-table {
  border-collapse: collapse;
  font-size: .9rem;
  min-width: 300px;
}

.price-table th {
  background: #111;
  color: #c9a84c;
  padding: 11px 36px;
  letter-spacing: 1px;
  font-weight: 500;
}

.price-table td {
  padding: 9px 36px;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,.15);
  color: #f5f0e8;
}

.price-table tbody tr:nth-child(odd) td  { background: rgba(201,168,76,.06); }
.price-table tbody tr:nth-child(even) td { background: transparent; }
.price-table tbody tr:hover td           { background: rgba(201,168,76,.14); }

/* Gallery btn */
.btn {
  display: inline-block;
  background: #c9a84c;
  color: #0a0a0a;
  border: none;
  padding: 11px 28px;
  font-family: 'Tajawal', sans-serif;
  font-size: .92rem;
  cursor: pointer;
  transition: background .2s;
}

.btn:hover { background: #d4b55f; }

/* ── CATEGORY HEADERS ─────────────────────── */
.category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}
.category-header-line {
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,.3);
}
.category-header-text {
  text-align: center;
}
.category-num {
  display: block;
  font-size: .7rem;
  letter-spacing: .4em;
  color: rgba(201,168,76,.5);
  margin-bottom: 4px;
}
.category-header-text h3 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #f5f0e8;
  margin: 0 0 4px;
}
.category-en {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(201,168,76,.6);
}
.cards-grid--center {
  max-width: 680px;
  margin-inline: auto;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ── PAYMENT OPTIONS ──────────────────────── */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.pay-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Tajawal', sans-serif;
  font-size: .9rem;
  color: rgba(245,240,232,.8);
  cursor: pointer;
}
.pay-opt input[type="radio"] {
  accent-color: #c9a84c;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* ── BANK DETAILS BOX ─────────────────────── */
.bank-details-box {
  background: rgba(201,168,76,.06);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 4px;
  font-family: 'Tajawal', sans-serif;
  font-size: .88rem;
  line-height: 1.9;
  color: rgba(245,240,232,.85);
}
.bank-details-box .bank-title {
  font-size: 1rem;
  font-weight: 600;
  color: #c9a84c;
  margin-bottom: 10px;
}
.bank-details-box p span {
  color: rgba(201,168,76,.8);
  font-weight: 500;
  margin-left: 6px;
}
.bank-details-box .bank-note {
  margin-top: 10px;
  font-size: .8rem;
  color: rgba(245,240,232,.5);
  border-top: 1px solid rgba(201,168,76,.2);
  padding-top: 8px;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid--center { max-width: 100%; }
  .hero-title  { letter-spacing: .15em; }
  .section-title { letter-spacing: .1em; }
  .category-header { gap: 12px; }
}
