/* =========================================================
   DGS — Nile Dinner Cruise | Shared Stylesheet
   Theme: Deep navy + royal gold (luxury Nile)
   ========================================================= */

:root {
  --navy-900: #030814;
  --navy-800: #081223;
  --navy-700: #0f1d38;
  --navy-600: #1a3166;
  --gold-500: #b88a38;
  --gold-400: #dcb363;
  --gold-300: #f2d58c;
  --cream:    #f7f1e3;
  --white:    #ffffff;
  --muted:    #9aa6bd;
  --danger:   #e74c3c;
  --success:  #27ae60;
  --radius:   14px;
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .35);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, .2);
  --transition: .35s cubic-bezier(.2, .8, .2, 1);
  --container: 1200px;
  --font-ar: "Tajawal", "Cairo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-en: "Playfair Display", "Georgia", serif;
  --font-body-en: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-ar);
  background: var(--navy-900);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[lang="en"] body { font-family: var(--font-body-en); }
html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3 { font-family: var(--font-en); letter-spacing: .5px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Top announcement bar ---------- */
.top-bar {
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  text-align: center;
}
.top-bar .dot { margin: 0 8px; opacity: .6; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 19, 42, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(212, 168, 75, .15);
  transition: background var(--transition);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 48px; height: 48px; object-fit: contain; }
.logo .brand { font-weight: 900; color: var(--gold-400); font-size: 22px; letter-spacing: 2px; }
.logo .tag { font-size: 11px; color: var(--muted); display: block; margin-top: -3px; }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--cream); position: relative; }
.nav-links a:hover { color: var(--gold-400); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px; inset-inline-start: 0;
  width: 0; height: 2px;
  background: var(--gold-400);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(212, 168, 75, .12);
  border: 1px solid rgba(212, 168, 75, .4);
  color: var(--gold-300);
  font-weight: 700;
  font-size: 13px;
}
.lang-switch:hover { background: var(--gold-500); color: var(--navy-900); }

.hamburger { display: none; width: 40px; height: 40px; border-radius: 10px; background: rgba(212, 168, 75, .12); color: var(--gold-400); font-size: 22px; align-items: center; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.18); }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 19, 42, .6) 0%, rgba(7, 19, 42, .85) 60%, var(--navy-900) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(7, 19, 42, .5) 80%);
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 20px 100px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 8px 18px;
  border: 1px solid var(--gold-400);
  border-radius: 999px;
  background: rgba(212, 168, 75, .08);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 900px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}
.hero h1 span { color: var(--gold-400); display: block; }
.hero p.lead {
  font-size: clamp(17px, 1.8vw, 20px);
  max-width: 680px;
  color: #d7dce8;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding: 26px 30px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  margin-bottom: 36px;
  max-width: 820px;
}
.hero-meta .item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .label { font-size: 12px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }
.hero-meta .value { font-size: 18px; font-weight: 800; color: var(--gold-300); }

.cta-group { display: flex; flex-wrap: wrap; gap: 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #dcb363, #b88a38);
  color: var(--navy-900);
  box-shadow: 0 10px 30px rgba(220, 179, 99, .25);
  border: none;
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(220, 179, 99, .4);
  filter: brightness(1.1);
}
.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--white); color: var(--navy-900); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
}
.btn-whatsapp:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* ---------- Section shell ---------- */
section.sec {
  padding: 110px 0;
  position: relative;
}
.sec-head { text-align: center; margin-bottom: 70px; max-width: 800px; margin-inline: auto; padding: 0 20px; }
.sec-head .kicker {
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
  display: inline-block;
}
.sec-head h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 900;
  line-height: 1.2;
}
.sec-head p { color: var(--muted); font-size: 17px; }
.divider {
  width: 80px;
  height: 3px;
  margin: 18px auto;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  border-radius: 3px;
}

/* ---------- About / Why us ---------- */
.features {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.feature {
  background: var(--navy-800);
  padding: 34px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 168, 75, .15);
  transition: all var(--transition);
  text-align: center;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}
.feature .icon {
  width: 64px; height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  font-size: 28px;
  margin-bottom: 18px;
}
.feature h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; font-weight: 800; }
.feature p { color: var(--muted); font-size: 15px; }

/* ---------- Trip times ---------- */
.trips {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.trip {
  background: linear-gradient(145deg, var(--navy-700), var(--navy-800));
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 168, 75, .15);
  position: relative;
  overflow: hidden;
}
.trip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 168, 75, .15), transparent 50%);
  pointer-events: none;
}
.trip-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(212, 168, 75, .2);
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.trip h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; font-weight: 800; }
.trip .time { color: var(--gold-400); font-weight: 700; font-size: 18px; margin-bottom: 18px; }
.trip .price { font-size: 40px; font-weight: 900; color: var(--white); }
.trip .price small { font-size: 16px; color: var(--muted); font-weight: 500; }

/* ---------- Menu / Program two column ---------- */
.two-col {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.info-card {
  background: var(--navy-800);
  padding: 44px 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 168, 75, .15);
}
.info-card h3 {
  color: var(--gold-400);
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-card h3 .i {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(212, 168, 75, .15);
  font-size: 20px;
}
.info-card ul { list-style: none; }
.info-card li {
  padding: 11px 0;
  border-bottom: 1px dashed rgba(212, 168, 75, .15);
  font-size: 16px;
  color: #d7dce8;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card li:last-child { border-bottom: none; }
.info-card li::before { content: "◆"; color: var(--gold-400); font-size: 10px; }

/* ---------- Dinner tiers ---------- */
.tiers {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.tier {
  background: var(--navy-800);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 168, 75, .18);
  text-align: center;
  position: relative;
  transition: transform var(--transition);
}
.tier.featured {
  background: linear-gradient(145deg, #1a3166, #11254d);
  border: 2px solid var(--gold-400);
  transform: translateY(-10px);
}
.tier.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -14px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
}
html[dir="rtl"] .tier.featured::before { transform: translateX(50%); }
.tier h3 { color: var(--white); font-size: 22px; margin-bottom: 10px; font-weight: 800; }
.tier .price-big {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin: 14px 0 6px;
}
.tier .price-big small { font-size: 18px; color: var(--muted); font-weight: 500; }
.tier ul { list-style: none; margin-top: 22px; text-align: start; }
.tier li {
  padding: 8px 0;
  color: #cfd6e6;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tier li::before { content: "✓"; color: var(--gold-400); font-weight: 900; }
.tier li.muted { color: var(--muted); }
.tier li.muted::before { content: "–"; color: var(--muted); }

/* ---------- Pricing tables ---------- */
.table-wrap {
  background: var(--navy-800);
  border-radius: var(--radius);
  border: 1px solid rgba(212, 168, 75, .2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.rate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.rate-table th,
.rate-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(212, 168, 75, .1);
}
.rate-table th {
  background: var(--navy-700);
  color: var(--gold-400);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.rate-table td { color: #e5e9f2; font-size: 15px; }
.rate-table tr:last-child td { border-bottom: none; }
.rate-table tr:hover td { background: rgba(212, 168, 75, .04); }
.rate-table td:first-child { font-weight: 700; color: var(--white); text-align: start; }
.rate-table .pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212, 168, 75, .15);
  border: 1px solid rgba(212, 168, 75, .3);
  border-radius: 999px;
  color: var(--gold-300);
  font-weight: 800;
  font-size: 14px;
}

.note {
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(212, 168, 75, .08);
  border: 1px dashed rgba(212, 168, 75, .4);
  border-radius: 10px;
  color: var(--gold-300);
  font-size: 14px;
  text-align: center;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
}
.gallery-grid .g { position: relative; overflow: hidden; border-radius: var(--radius); cursor: zoom-in; }
.gallery-grid .g img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter var(--transition);
}
.gallery-grid .g::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 19, 42, .5));
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-grid .g:hover img { transform: scale(1.08); }
.gallery-grid .g:hover::after { opacity: 1; }
.gallery-grid .big  { grid-column: span 2; grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

/* ---------- Rooms ---------- */
.rooms {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.room {
  background: var(--navy-800);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 75, .15);
  transition: transform var(--transition);
}
.room:hover { transform: translateY(-6px); }
.room-img { height: 220px; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.room:hover .room-img img { transform: scale(1.08); }
.room-body { padding: 26px; }
.room h3 { color: var(--white); font-size: 20px; margin-bottom: 8px; font-weight: 800; }
.room p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.room .room-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-400);
  font-weight: 800;
  font-size: 14px;
}

/* ---------- Booking form ---------- */
.booking {
  background: linear-gradient(145deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(212, 168, 75, .2);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-weight: 700;
  font-size: 14px;
  color: var(--gold-300);
  letter-spacing: .5px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  transition: all var(--transition);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold-400);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 4px rgba(220, 179, 99, .15);
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row option { background: var(--navy-800); color: var(--white); }

.booking-submit {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.booking-submit .btn { min-width: 220px; }

.booking-hint {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.booking-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
  background: rgba(39, 174, 96, .1);
  border: 1.5px solid rgba(39, 174, 96, .4);
  border-radius: var(--radius);
  margin-top: 28px;
}
.booking-success.show { display: block; animation: fadeUp .6s ease; }
.booking-success .check {
  width: 70px; height: 70px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 16px;
}
.booking-success h3 { color: var(--white); font-size: 24px; margin-bottom: 10px; }
.booking-success .num {
  display: inline-block;
  padding: 10px 22px;
  background: var(--gold-400);
  color: var(--navy-900);
  font-family: "Courier New", monospace;
  font-weight: 900;
  font-size: 22px;
  border-radius: 10px;
  letter-spacing: 2px;
  margin: 12px 0;
}
.booking-success p { color: #d7dce8; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Contact / CTA strip ---------- */
.cta-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  text-align: center;
}
.cta-strip h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; margin-bottom: 14px; color: var(--navy-900); }
.cta-strip p { font-size: 18px; max-width: 600px; margin: 0 auto 28px; }
.cta-strip .btn {
  background: var(--navy-900);
  color: var(--gold-400);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}
.cta-strip .btn:hover { background: var(--navy-800); transform: translateY(-3px); }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-900);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(212, 168, 75, .15);
}
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 2fr 1fr 1fr;
  margin-bottom: 50px;
}
.footer-col h4 { color: var(--gold-400); font-size: 16px; margin-bottom: 18px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.footer-col p, .footer-col a { color: var(--muted); font-size: 15px; display: block; padding: 4px 0; }
.footer-col a:hover { color: var(--gold-400); }
.footer-brand { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.footer-brand img { width: 60px; height: 60px; object-fit: contain; }
.footer-brand .brand-name { font-size: 24px; color: var(--gold-400); font-weight: 900; letter-spacing: 2px; }
.footer-brand .brand-sub { color: var(--muted); font-size: 13px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(212, 168, 75, .1);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Floating action buttons ---------- */
.float-actions {
  position: fixed;
  bottom: 26px;
  inset-inline-end: 26px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .25);
  transition: transform var(--transition);
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.whatsapp {
  background: #25d366;
  box-shadow: 0 14px 40px rgba(37, 211, 102, .5);
  animation: pulse 2.2s infinite;
}
.float-btn.call {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: 0 14px 40px rgba(212, 168, 75, .45);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .7), 0 14px 40px rgba(37, 211, 102, .5); }
  70%  { box-shadow: 0 0 0 22px rgba(37, 211, 102, 0), 0 14px 40px rgba(37, 211, 102, .5); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 14px 40px rgba(37, 211, 102, .5); }
}

/* Inline booking inside a section */
.inline-booking {
  margin-top: 60px;
  scroll-margin-top: 100px;
}
.inline-booking .booking-header {
  text-align: center;
  margin-bottom: 30px;
}
.inline-booking .booking-header .kicker {
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
  display: inline-block;
}
.inline-booking .booking-header h3 {
  color: var(--white);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 900;
  margin-bottom: 8px;
}
.inline-booking .booking-header p {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

/* Section divider for new organization */
.section-split {
  height: 140px;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  position: relative;
}
.section-split::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold-400), transparent);
}

/* Clearer CTA buttons group for hero */
.cta-group .btn-call {
  background: transparent;
  color: var(--gold-300);
  border: 1.5px solid var(--gold-400);
}
.cta-group .btn-call:hover { background: var(--gold-400); color: var(--navy-900); }

/* Section mega heading (chapter) */
.chapter {
  padding: 80px 0 30px;
  text-align: center;
}
.chapter .chapter-num {
  display: inline-block;
  font-family: "Courier New", monospace;
  color: var(--gold-400);
  font-size: 14px;
  letter-spacing: 6px;
  margin-bottom: 10px;
  opacity: .85;
}
.chapter h2 {
  font-size: clamp(34px, 5vw, 56px);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.15;
}
.chapter h2 span {
  display: block;
  color: var(--gold-400);
  font-size: .7em;
}
.chapter p {
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}
.chapter .chapter-line {
  width: 120px;
  height: 2px;
  margin: 26px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 20, .95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 30px;
}
.lightbox.open { display: flex; animation: fadeUp .3s ease; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox .close {
  position: absolute;
  top: 22px;
  inset-inline-end: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .big, .gallery-grid .wide { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 780px) {
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    inset-inline-end: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-800);
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(212, 168, 75, .2);
    min-width: 200px;
  }
  .nav-links.open a { padding: 12px 14px; border-radius: 8px; }
  .nav-links.open a:hover { background: rgba(212, 168, 75, .08); }

  section.sec { padding: 80px 0; }
  .booking { padding: 34px 22px; border-radius: 16px; }
  .tier.featured { transform: none; }
  .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding: 26px 30px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  margin-bottom: 36px;
  max-width: 820px;
}
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-grid .big, .gallery-grid .wide { grid-column: span 1; }
}
@media (max-width: 480px) {
  .cta-group { flex-direction: column; }
  .cta-group .btn { width: 100%; }
  .hero-inner { padding: 60px 18px 80px; }
}

/* ---------- Quick Booking Widget ---------- */
.quick-book-widget {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 179, 99, 0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 16px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  flex-wrap: wrap;
}
.qb-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 140px;
  border-inline-end: 1px solid rgba(255,255,255,0.1);
  padding-inline-end: 16px;
}
.qb-group:last-of-type { border-inline-end: none; padding-inline-end: 0; }
.qb-label {
  font-size: 12px;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 4px;
}
.qb-select, .qb-input {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  appearance: none;
}
.qb-select option { background: var(--navy-800); color: var(--white); }
.qb-btn {
  background: linear-gradient(135deg, #dcb363, #b88a38);
  color: var(--navy-900);
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 10px 20px rgba(220, 179, 99, 0.2);
  white-space: nowrap;
}
.qb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(220, 179, 99, 0.4);
}
@media (max-width: 780px) {
  .quick-book-widget { flex-direction: column; align-items: stretch; padding: 20px; gap: 20px; }
  .qb-group { border-inline-end: none; padding-inline-end: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; }
  .qb-group:last-of-type { border-bottom: none; padding-bottom: 0; }
}
