:root {
  --gulf-night: #132A2E;
  --gulf-night-2: #1B3A3F;
  --ink: #0B1416;
  --dune: #F6EDDD;
  --dune-2: #EFE3CC;
  --gold: #C89A46;
  --gold-light: #E4C888;
  --teal: #2F6F6B;
  --white: #FFFFFF;
  --radius-lg: 22px;
  --radius-md: 14px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--dune);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===== Toast ===== */
.toast {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 500; padding: 14px 22px; border-radius: 30px; font-size: 14px; font-weight: 600;
  box-shadow: 0 12px 30px rgba(0,0,0,.2); animation: toastIn .4s ease;
}
.toast-success { background: #234E3B; color: #D9F2E3; }
.toast-error { background: #5A2A20; color: #F7DCD5; }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, -12px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(to bottom, rgba(11,20,22,.55), transparent);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { text-decoration: none; color: var(--white); font-family: var(--font-display); font-size: 22px; letter-spacing: .02em; }
.logo span { color: var(--gold-light); }
.logo em { font-style: normal; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin-left: 6px; opacity: .8; vertical-align: middle; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { text-decoration: none; color: rgba(255,255,255,.88); font-size: 14px; font-weight: 500; }
.main-nav a:hover { color: var(--gold-light); }
.btn-pill { text-decoration: none; background: var(--gold); color: var(--ink); padding: 10px 20px; border-radius: 30px; font-size: 13px; font-weight: 700; }

@media (max-width: 820px) {
  .main-nav { display: none; }
}

/* ===== Hero ===== */
.hero { position: relative; height: 100vh; min-height: 560px; overflow: hidden; display: flex; align-items: center; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,20,22,.55) 0%, rgba(11,20,22,.35) 40%, rgba(11,20,22,.85) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 32px; text-align: center; color: var(--white); }
.hero-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); }
.hero-title { font-size: clamp(38px, 6vw, 68px); line-height: 1.05; margin: 18px 0 20px; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-solid { text-decoration: none; background: var(--gold); color: var(--ink); padding: 15px 30px; border-radius: 8px; font-weight: 700; font-size: 14px; border: none; cursor: pointer; }
.btn-outline { text-decoration: none; border: 1.5px solid rgba(255,255,255,.6); color: var(--white); padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 14px; }
.btn-solid.full-width { width: 100%; }

.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-cue span { display: block; width: 1px; height: 40px; background: linear-gradient(rgba(255,255,255,.9), transparent); animation: scrollCue 1.8s infinite; }
@keyframes scrollCue { 0% { transform: scaleY(0); opacity: 0; } 40% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }

/* ===== Horizon banner strip (signature element) ===== */
.banner-strip { background: var(--gulf-night); padding: 70px 0 40px; position: relative; }
.banner-strip-head { max-width: 1280px; margin: 0 auto 30px; padding: 0 32px; color: var(--dune); }
.banner-strip-head h2 { font-size: clamp(26px, 3.4vw, 38px); color: var(--white); }
.banner-strip-head p { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: var(--gold-light); margin-top: 8px; }

.horizon-track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 32px 30px; scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.horizon-track::-webkit-scrollbar { height: 6px; }
.horizon-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

.horizon-slide {
  position: relative; flex: 0 0 78%; max-width: 480px; height: 420px; border-radius: var(--radius-lg);
  background-size: cover; background-position: center; scroll-snap-align: start;
  text-decoration: none; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .35s ease;
}
.horizon-slide:hover { transform: translateY(-6px); }
.horizon-slide-scrim {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,20,22,0) 30%, rgba(11,20,22,.92) 100%);
}
.horizon-index {
  position: relative; z-index: 2; align-self: flex-end; margin: 20px 20px 0 0;
  font-family: var(--font-mono); color: rgba(255,255,255,.7); font-size: 13px;
  border: 1px solid rgba(255,255,255,.4); border-radius: 50%; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
}
.horizon-slide-copy { position: relative; z-index: 2; padding: 26px; color: var(--white); }
.horizon-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); }
.horizon-slide-copy h3 { font-size: 26px; margin: 10px 0 8px; }
.horizon-slide-copy p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.82); margin: 0 0 14px; max-width: 90%; }
.horizon-cta { font-size: 13px; font-weight: 700; color: var(--gold-light); }

.horizon-line { display: block; width: 100%; height: 30px; margin-top: -6px; }

@media (max-width: 700px) {
  .horizon-slide { flex-basis: 86%; height: 360px; }
}

/* ===== Packages ===== */
.section-head { max-width: 640px; margin: 0 auto 46px; padding: 0 32px; text-align: center; }
.section-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 10px; }
.section-eyebrow.light { color: var(--gold-light); }
.section-head h2 { font-size: clamp(26px, 3.6vw, 40px); }
.section-head.light h2 { color: var(--white); }

.packages { padding: 90px 0 60px; }
.package-grid { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.package-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 10px 30px rgba(19,42,46,.07); transition: transform .25s ease; }
.package-card:hover { transform: translateY(-5px); }
.package-media { height: 190px; background-size: cover; background-position: center; position: relative; }
.package-tag { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 800; padding: 5px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .04em; }
.package-body { padding: 22px; }
.package-duration { font-family: var(--font-mono); font-size: 11px; color: var(--teal); text-transform: uppercase; letter-spacing: .06em; }
.package-body h3 { font-size: 22px; margin: 8px 0 10px; }
.package-body p { font-size: 14px; line-height: 1.55; color: #55524a; margin: 0 0 18px; min-height: 66px; }
.package-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #eee2cd; padding-top: 14px; }
.package-price { font-family: var(--font-mono); font-weight: 700; color: var(--gulf-night); font-size: 14px; }
.package-link { text-decoration: none; color: var(--teal); font-weight: 700; font-size: 13px; }

/* ===== Dynamic section ===== */
.dynamic-section { background: var(--gulf-night); padding: 90px 0; }
.dynamic-grid { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.dynamic-card { background: var(--gulf-night-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-md); padding: 30px; color: var(--dune); }
.dynamic-icon { width: 44px; height: 44px; color: var(--gold); margin-bottom: 18px; }
.dynamic-icon svg { width: 100%; height: 100%; }
.dynamic-card h3 { color: var(--white); font-size: 21px; margin-bottom: 10px; }
.dynamic-card p { font-size: 14px; line-height: 1.6; color: rgba(246,237,221,.75); margin: 0 0 20px; }
.dynamic-form { display: flex; flex-direction: column; gap: 10px; }
.dynamic-form input, .dynamic-form textarea {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 8px;
  padding: 11px 13px; color: var(--white); font-family: inherit; font-size: 13px; resize: vertical;
}
.dynamic-form input::placeholder, .dynamic-form textarea::placeholder { color: rgba(246,237,221,.45); }
.dynamic-form button {
  background: var(--gold); color: var(--ink); border: none; padding: 11px; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 13px;
}

/* ===== Enquire ===== */
.enquire { background: var(--dune-2); padding: 90px 0; }
.enquire-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.enquire-copy h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 10px 0 16px; color: var(--gulf-night); }
.enquire-copy p { font-size: 15px; line-height: 1.6; color: #55524a; margin: 0 0 24px; }
.enquire-contact { display: flex; flex-direction: column; gap: 8px; font-family: var(--font-mono); font-size: 14px; }
.enquire-contact a { text-decoration: none; color: var(--teal); font-weight: 600; }
.enquire-form { background: var(--white); padding: 32px; border-radius: var(--radius-md); box-shadow: 0 20px 50px rgba(19,42,46,.1); }
.enquire-form label { display: block; font-size: 12px; font-weight: 700; margin: 14px 0 6px; color: var(--gulf-night); }
.enquire-form label:first-of-type { margin-top: 0; }
.enquire-form input, .enquire-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #e3dacb; border-radius: 8px; font-family: inherit; font-size: 14px;
}
.enquire-form button { margin-top: 22px; }

@media (max-width: 850px) {
  .enquire-inner { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: rgba(246,237,221,.75); padding: 60px 32px 24px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 16px; }
.footer-col a { display: block; text-decoration: none; color: rgba(246,237,221,.65); font-size: 13px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-logo { color: var(--white); }
.footer-tag { font-size: 13px; margin: 12px 0 22px; max-width: 320px; color: rgba(246,237,221,.55); line-height: 1.6; }
.footer-newsletter-label { font-size: 12px; color: rgba(246,237,221,.55); margin: 0 0 10px; }
.footer-newsletter-row { display: flex; gap: 8px; }
.footer-newsletter-row input { flex: 1; padding: 10px 12px; border-radius: 6px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: white; font-size: 13px; }
.footer-newsletter-row button { background: var(--gold); color: var(--ink); border: none; padding: 0 16px; border-radius: 6px; font-weight: 700; font-size: 13px; cursor: pointer; }
.footer-social-label { font-size: 13px; color: rgba(246,237,221,.55); margin: 0 0 14px; line-height: 1.5; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 16px; height: 16px; color: var(--dune); }
.footer-bottom { text-align: center; font-size: 12px; color: rgba(246,237,221,.35); margin: 46px 0 0; max-width: 900px; margin-left: auto; margin-right: auto; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Nav dropdowns */
.nav-dropdown { position: relative; cursor: pointer; }
.nav-dropdown > span { display: flex; align-items: center; gap: 4px; color: rgba(255,255,255,.88); font-size: 14px; font-weight: 500; }
.nav-dropdown > span svg { width: 12px; height: 12px; }
.nav-dropdown-menu {
  position: absolute; top: 26px; left: 50%; transform: translateX(-50%); min-width: 220px;
  background: var(--white); border-radius: 10px; padding: 8px; box-shadow: 0 16px 40px rgba(0,0,0,.2);
  opacity: 0; pointer-events: none; transition: all .15s ease; z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: auto; }
.nav-dropdown-menu a { display: block; padding: 9px 12px; border-radius: 6px; text-decoration: none; color: var(--ink); font-size: 13px; font-weight: 500; }
.nav-dropdown-menu a:hover { background: var(--dune); color: var(--gulf-night); }
.nav-active { color: var(--gold-light) !important; }

.empty-note { padding: 20px; font-size: 13px; color: #8a8072; }

/* ===== Floating WhatsApp (multi-account) ===== */
.whatsapp-widget { position: fixed; left: 22px; bottom: 24px; z-index: 200; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.whatsapp-fab {
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; border: none; color: white;
  display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-menu {
  position: absolute; bottom: 70px; left: 0; display: flex; flex-direction: column; gap: 8px;
  opacity: 0; pointer-events: none; transform: translateY(8px); transition: all .2s ease;
}
.whatsapp-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.whatsapp-option {
  display: flex; align-items: center; gap: 10px; background: var(--white); padding: 10px 16px; border-radius: 30px;
  text-decoration: none; color: var(--ink); font-size: 13px; font-weight: 700; box-shadow: 0 8px 20px rgba(0,0,0,.15); white-space: nowrap;
}
.whatsapp-option svg { width: 18px; height: 18px; color: #25D366; }

/* ===== Scroll to top ===== */
.scroll-top {
  position: fixed; right: 22px; bottom: 24px; z-index: 200; width: 46px; height: 46px; border-radius: 50%;
  background: var(--gulf-night); color: var(--gold-light); border: none; font-size: 18px; cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,.25); opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all .25s ease;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ===== Generic Page Template (view.php) ===== */
.page-hero {
  position: relative; min-height: 46vh; display: flex; align-items: flex-end;
  background: linear-gradient(160deg, var(--gulf-night), var(--gulf-night-2)); background-size: cover; background-position: center;
  padding: 120px 32px 60px; color: white;
}
.page-hero--minimal { min-height: 220px; background: var(--gulf-night); align-items: center; padding: 100px 32px 40px; }
.page-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,20,22,.35) 0%, rgba(11,20,22,.85) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
.page-hero-content h1 { font-size: clamp(30px, 5vw, 50px); color: white; }
.page-hero-content p { font-size: 16px; color: rgba(255,255,255,.82); margin-top: 14px; max-width: 620px; margin-left: auto; margin-right: auto; }

.page-body { max-width: 880px; margin: 0 auto; padding: 60px 32px; }
.page-body--home { max-width: 1000px; padding: 70px 32px 20px; }

.content-section { margin-bottom: 46px; }
.content-heading { font-size: clamp(22px, 3vw, 30px); color: var(--gulf-night); margin-bottom: 16px; }
.content-text { font-size: 15px; line-height: 1.75; color: #3d3a34; margin: 0 0 14px; }
.content-text.lead { font-size: 17px; color: var(--gulf-night); }

.content-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.content-bullets li { font-size: 14px; line-height: 1.6; color: #3d3a34; padding-left: 22px; position: relative; }
.content-bullets li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.content-bullets li strong { color: var(--gulf-night); }

.content-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.tier-card { background: var(--dune-2); border-radius: var(--radius-md); padding: 22px; }
.tier-card h3 { font-size: 18px; color: var(--gulf-night); margin-bottom: 8px; }
.tier-card p { font-size: 13px; line-height: 1.6; color: #55524a; margin: 0; }

.content-faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid #e3dacb; border-radius: 10px; padding: 16px 20px; }
.faq-item summary { cursor: pointer; font-weight: 700; color: var(--gulf-night); font-size: 15px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; color: var(--gold); font-size: 18px; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { font-size: 14px; line-height: 1.6; color: #55524a; margin: 12px 0 0; }

.content-cta { display: inline-block; margin-top: 6px; }

.destination-meta {
  max-width: 880px; margin: -30px auto 40px; padding: 22px 32px; background: var(--white); border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(19,42,46,.1); display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px;
  position: relative; z-index: 3;
}
.destination-meta div { text-align: center; }
.destination-meta span { display: block; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--teal); margin-bottom: 6px; }
.destination-meta strong { font-size: 14px; color: var(--gulf-night); }

.page-final-cta { text-align: center; margin: 40px 0; }

.page-inline-enquire {
  background: var(--dune-2); border-radius: var(--radius-lg); padding: 40px; text-align: center; margin-top: 30px;
}
.page-inline-enquire h2 { font-size: 24px; color: var(--gulf-night); margin-bottom: 8px; }
.page-inline-enquire p { font-size: 14px; color: #55524a; margin: 0 0 22px; }
.page-inline-enquire form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 560px; margin: 0 auto; }
.page-inline-enquire input { flex: 1; min-width: 180px; padding: 12px 14px; border: 1px solid #e3dacb; border-radius: 8px; font-family: inherit; font-size: 14px; }

.contact-panel { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; margin-top: 20px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-details div { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--gulf-night); }
.contact-details svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.contact-details a { text-decoration: none; color: var(--gulf-night); font-weight: 600; }
@media (max-width: 760px) { .contact-panel { grid-template-columns: 1fr; } }

.not-found { max-width: 600px; margin: 160px auto 120px; text-align: center; padding: 0 32px; }
.not-found h1 { font-size: 32px; color: var(--gulf-night); margin-bottom: 12px; }
.not-found a { color: var(--teal); font-weight: 700; }

/* Featured services (home page) */
.featured-services { padding: 30px 0 70px; max-width: 1280px; margin: 0 auto; }
.service-grid { padding: 0 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.service-card {
  background: var(--white); border: 1px solid #eee2cd; border-radius: var(--radius-md); padding: 22px 16px;
  text-decoration: none; color: var(--gulf-night); text-align: center; font-size: 13px; font-weight: 700;
  display: flex; flex-direction: column; align-items: center; gap: 12px; transition: all .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(19,42,46,.1); border-color: var(--gold); }
.service-icon { width: 30px; height: 30px; color: var(--gold); }
.service-icon svg { width: 100%; height: 100%; }

/* ===== Package detail (inner) page ===== */
.pkg-hero { position: relative; min-height: 56vh; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding-top: 110px; }
.pkg-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,20,22,.55) 0%, rgba(11,20,22,.35) 40%, rgba(11,20,22,.9) 100%); }
.pkg-hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 32px 46px; color: var(--white); width: 100%; }
.pkg-back { color: var(--gold-light); text-decoration: none; font-size: 13px; font-weight: 700; display: inline-block; margin-bottom: 18px; }
.pkg-hero-content h1 { font-size: clamp(30px, 5vw, 50px); margin-bottom: 10px; }
.pkg-hero-meta { font-family: var(--font-mono); font-size: 14px; color: rgba(255,255,255,.85); }

.pkg-body { padding: 60px 0 20px; }
.pkg-body-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.pkg-lede { font-size: 16px; line-height: 1.7; color: #4a463d; margin: 0 0 34px; }
.pkg-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-bottom: 40px; }
.pkg-gallery-item { height: 160px; border-radius: var(--radius-md); background-size: cover; background-position: center; }
.pkg-itinerary h2 { font-size: 26px; color: var(--gulf-night); margin-bottom: 18px; }
.pkg-itinerary-list { list-style: none; margin: 0; padding: 0; counter-reset: day; }
.pkg-itinerary-list li {
  counter-increment: day; position: relative; padding: 14px 0 14px 44px; border-bottom: 1px solid #eee2cd; font-size: 14px; color: #4a463d;
}
.pkg-itinerary-list li::before {
  content: counter(day); position: absolute; left: 0; top: 12px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--gulf-night); color: var(--gold-light); font-family: var(--font-mono); font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}

.pkg-sidebar-card { position: sticky; top: 24px; background: var(--white); border: 1px solid #eee2cd; border-radius: var(--radius-md); padding: 26px; box-shadow: 0 14px 34px rgba(19,42,46,.08); }
.pkg-sidebar-card .package-duration { display: block; margin-bottom: 4px; }
.pkg-sidebar-price { display: block; font-family: var(--font-mono); font-weight: 700; font-size: 22px; color: var(--gulf-night); margin-bottom: 18px; }
.pkg-sidebar-card label { display: block; font-size: 12px; font-weight: 700; margin: 12px 0 6px; color: var(--gulf-night); }
.pkg-sidebar-card label:first-of-type { margin-top: 0; }
.pkg-sidebar-card input, .pkg-sidebar-card textarea { width: 100%; padding: 10px 12px; border: 1px solid #e3dacb; border-radius: 8px; font-family: inherit; font-size: 13px; }
.pkg-sidebar-card button { margin-top: 16px; }

.pkg-more { max-width: 1280px; margin: 70px auto 0; padding: 50px 32px 0; border-top: 1px solid #eee2cd; }
.pkg-more h2 { font-size: 24px; color: var(--gulf-night); margin-bottom: 24px; }

@media (max-width: 900px) {
  .pkg-body-inner { grid-template-columns: 1fr; }
  .pkg-sidebar-card { position: static; }
}
