/* ============================================================
   MYLOCAL.TOURS — Shared Stylesheet
   Colors: Navy #0D1B3E | Amber #E8930A | Off-white #FAF8F5
   Fonts: Playfair Display (headings) | Inter (body)
   ============================================================ */

:root {
  --navy:     #0D1B3E;
  --navy-mid: #162852;
  --amber:    #E8930A;
  --amber-dk: #C47A08;
  --off-white:#FAF8F5;
  --cream:    #F2EDE6;
  --grey:     #8A8A8A;
  --grey-lt:  #E8E4DF;
  --dark:     #1A1A1A;
  --heading:  'Playfair Display', Georgia, serif;
  --body:     'Inter', system-ui, sans-serif;
  --radius:   8px;
  --shadow:   0 4px 24px rgba(13,27,62,.10);
  --shadow-lg:0 12px 48px rgba(13,27,62,.18);
  --max:      1200px;
  --nav-h:    88px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--off-white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.65;
  padding-top: var(--nav-h);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--body); }
input, select, textarea { font-family: var(--body); }

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--heading); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber);
}
.section-intro {
  max-width: 600px; color: #555; font-size: 1.05rem; line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; letter-spacing: .5px;
  border: none; transition: all .2s ease; white-space: nowrap;
}
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-dk); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,147,10,.35); }
.btn-navy  { background: var(--navy); color: #fff; }
.btn-navy:hover  { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-amber { background: transparent; border: 1.5px solid var(--amber); color: var(--amber); }
.btn-outline-amber:hover { background: var(--amber); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-logo {
  display: flex; align-items: center; justify-self: start; flex-shrink: 0;
}
.nav-logo img { height: 72px; width: auto; }
.nav-logo-text {
  font-family: var(--heading); font-size: 1.25rem; color: #fff; font-weight: 700;
}
.nav-logo-text span { color: var(--amber); }
.nav-links {
  display: flex; align-items: center; gap: 32px; justify-self: center;
}
.nav-links a {
  color: rgba(255,255,255,.80); font-size: 14px; font-weight: 500;
  transition: color .2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content:''; position: absolute; bottom:-4px; left:0; right:0;
  height: 2px; background: var(--amber); border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 16px; justify-self: end; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: #fff;
  transition: all .3s ease; border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO (homepage) ── */
.hero {
  background: var(--navy); color: #fff;
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(13,27,62,.95) 0%, rgba(13,27,62,.70) 100%);
  z-index:1;
}
.hero-bg {
  position:absolute; inset:0;
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
}
.hero-inner {
  position: relative; z-index:2;
  max-width: var(--max); margin: 0 auto; padding: 80px 24px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,147,10,.15); border: 1px solid rgba(232,147,10,.4);
  padding: 6px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 28px;
}
.hero h1 { max-width: 680px; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub {
  max-width: 520px; color: rgba(255,255,255,.78);
  font-size: 1.1rem; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px; margin-top: 64px; flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--heading); font-size: 2.2rem; font-weight: 700; color: var(--amber);
}
.hero-stat-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy); color: #fff; padding: 56px 24px 64px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:4px;
  background: linear-gradient(90deg, var(--amber), transparent);
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.page-hero .label { color: var(--amber); margin-bottom: 12px; display:block; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 580px; font-size: 1.05rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--cream); border-bottom: 1px solid var(--grey-lt);
  padding: 12px 24px;
}
.breadcrumb-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--grey);
}
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span.sep { color: var(--grey-lt); }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-dark .label { color: var(--amber); }
.section-dark .section-intro { color: rgba(255,255,255,.70); }
.section-cream { background: var(--cream); }
.section-header { margin-bottom: 48px; }
.section-header .label { margin-bottom: 10px; display:block; }
.section-header h2 { margin-bottom: 14px; }

/* ── EXPERIENCE CARDS ── */
.exp-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 28px;
}
.exp-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); transition: all .25s ease;
  display: flex; flex-direction: column;
  border: 1px solid var(--grey-lt);
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.exp-card-img {
  height: 200px; background: var(--navy);
  display: flex; align-items: flex-end; padding: 16px;
  position: relative; overflow: hidden;
}
.exp-card-img-bg {
  position:absolute; inset:0;
  background: none;
}
.exp-card-cat {
  position: relative; z-index:1;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber);
  background: rgba(0,0,0,.35); padding: 4px 10px; border-radius: 4px;
}
.exp-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.exp-card-body h3 { margin-bottom: 8px; font-size: 1.15rem; }
.exp-card-body p { font-size: 14px; color: #555; flex: 1; margin-bottom: 16px; }
.exp-card-locs {
  font-size: 12px; color: var(--grey); margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 6px;
}
.exp-card-locs::before { content:'📍'; font-size: 12px; margin-top:1px; flex-shrink:0; }
.exp-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--grey-lt);
}
.exp-price { font-family: var(--heading); font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.exp-price small { font-family: var(--body); font-size: 11px; color: var(--grey); display:block; font-weight:400; }

/* ── FILTER BAR ── */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; align-items: center;
}
.filter-btn {
  padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 500;
  border: 1.5px solid var(--grey-lt); background: #fff; color: var(--dark);
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.filter-count {
  font-size: 13px; color: var(--grey); margin-left: auto;
}

/* ── EXPERIENCE DETAIL PAGE ── */
.exp-detail-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 48px;
  max-width: var(--max); margin: 0 auto; padding: 48px 24px;
  align-items: start;
}
.exp-detail-main {}
.exp-detail-main h2 { font-size: 1.5rem; margin: 32px 0 16px; }
.exp-detail-main p { color: #444; line-height: 1.75; }
.exp-hero-banner {
  background: var(--navy); border-radius: 12px;
  min-height: 320px; display:flex; align-items:flex-end; padding:24px;
  margin-bottom:32px; position:relative; overflow:hidden;
}
.exp-hero-banner-overlay {
  position:absolute; inset:0;
  background: linear-gradient(160deg, rgba(13,27,62,.3) 0%, rgba(13,27,62,.88) 100%);
}
.exp-hero-banner-content { position:relative; z-index:1; color:#fff; }
.exp-hero-banner-content .label { color: var(--amber); margin-bottom:8px; display:block; }
.exp-hero-banner-content h1 { font-size: clamp(1.4rem,3vw,2.2rem); margin-bottom:8px; }
.exp-hero-banner-content p { color: rgba(255,255,255,.75); font-size:.95rem; }

/* TIMELINE */
.timeline { margin: 8px 0 32px; }
.timeline-row {
  display: flex; gap: 20px; padding: 16px 0;
  border-bottom: 1px solid var(--grey-lt);
}
.timeline-row:last-child { border-bottom: none; }
.timeline-time {
  min-width: 110px; font-size: 12px; font-weight: 600;
  color: var(--amber); padding-top: 3px; flex-shrink:0;
  letter-spacing:.5px;
}
.timeline-dot {
  width: 10px; height:10px; border-radius:50%; margin-top:6px; flex-shrink:0;
  background: var(--navy);
}
.timeline-body h4 { font-size:.95rem; margin-bottom:4px; }
.timeline-body p { font-size:13px; color:#555; }
.timeline-row.commute {
  background: rgba(13,27,62,.04);
  border-left: 3px solid var(--amber);
  padding-left: 12px; border-radius:0 var(--radius) var(--radius) 0;
  margin: 4px 0;
}
.timeline-row.commute .timeline-dot { background: var(--amber); }
.timeline-row.commute .timeline-body h4 { color: var(--grey); font-style: italic; font-weight:500; }
.timeline-row.commute .timeline-body p { color: #888; }

/* INCLUDED / GIFTS */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 16px 0; }
.included-item {
  display:flex; align-items:flex-start; gap:10px;
  font-size:14px; padding:10px; background:#fff;
  border-radius:var(--radius); border:1px solid var(--grey-lt);
}
.included-item::before { content:'✓'; color:var(--amber); font-weight:700; flex-shrink:0; }
.audience-list { display:flex; flex-wrap:wrap; gap:8px; margin:16px 0; }
.audience-tag {
  background:var(--cream); border:1px solid var(--grey-lt);
  padding:6px 14px; border-radius:50px; font-size:13px; color:var(--navy);
}

/* BOOKING CARD (sticky sidebar) */
.booking-card {
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
  overflow: hidden; position: sticky; top: 90px;
  border: 1px solid var(--grey-lt);
}
.booking-card-header {
  background: var(--navy); color: #fff; padding: 20px 24px;
}
.booking-card-header h3 { font-size:1.1rem; margin-bottom:4px; }
.booking-card-header p { font-size:12px; color:rgba(255,255,255,.65); }
.booking-card-body { padding: 24px; }

/* BOOKING TABS */
.booking-type-tabs { display:flex; border-radius:var(--radius); overflow:hidden; border:1px solid var(--grey-lt); margin-bottom:4px; }
.booking-tab {
  flex:1; padding:9px 6px; font-size:13px; font-weight:500; text-align:center;
  background:#fff; border:none; color:var(--grey); transition:all .2s;
}
.booking-tab.active { background:var(--navy); color:#fff; }
.booking-tab:hover:not(.active) { background:var(--cream); color:var(--navy); }

/* PRICE DISPLAY */
.price-display {
  background:var(--cream); border-radius:var(--radius); padding:14px 16px; margin:12px 0;
  text-align:center;
}
.price-from { font-size:10px; letter-spacing:2px; text-transform:uppercase; color:var(--grey); }
.price-amount { font-family:var(--heading); font-size:1.8rem; font-weight:700; color:var(--navy); display:block; }
.price-note { font-size:12px; color:var(--grey); margin-top:2px; }

/* TIER INFO */
.tier-info {
  display:none; background:rgba(232,147,10,.08); border-left:3px solid var(--amber);
  padding:12px 14px; border-radius:0 var(--radius) var(--radius) 0;
  font-size:13px; color:#444; margin-bottom:12px; line-height:1.6;
}
.tier-info.show { display:block; }

/* FORM ELEMENTS */
.form-group { margin-bottom:16px; }
.form-group label {
  display:block; font-size:12px; font-weight:600; color:var(--navy);
  margin-bottom:6px; letter-spacing:.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:10px 14px; border:1.5px solid var(--grey-lt);
  border-radius:var(--radius); font-size:14px; color:var(--dark);
  background:#fff; transition:border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline:none; border-color:var(--amber);
}
.form-group textarea { resize:vertical; min-height:80px; }
.form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.form-section-label {
  font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  color:var(--amber); margin:20px 0 12px; padding-bottom:6px;
  border-bottom:1px solid var(--grey-lt);
}

/* EXTRA FIELDS (hidden by default) */
.extra-fields { display:none; }
.extra-fields.show { display:block; }
.extra-fields {
  background:var(--cream); border-radius:var(--radius); padding:16px;
  margin-bottom:16px;
}
.extra-fields h4 {
  font-size:13px; font-weight:700; color:var(--navy); margin-bottom:14px;
  padding-bottom:8px; border-bottom:1px solid var(--grey-lt);
}
.extra-info-panel {
  display:none; background:#fff; border:1px solid var(--grey-lt);
  border-radius:var(--radius); padding:16px; margin-bottom:12px;
}
.extra-info-panel.show { display:block; }
.extra-info-panel h4 { font-size:14px; color:var(--navy); margin-bottom:8px; font-weight:600; }
.extra-info-panel ul { list-style:none; padding:0; }
.extra-info-panel ul li {
  font-size:13px; color:#444; padding:5px 0; border-bottom:1px solid var(--grey-lt);
  display:flex; align-items:center; gap:8px;
}
.extra-info-panel ul li:last-child { border-bottom:none; }
.extra-info-panel ul li::before { content:'✦'; color:var(--amber); font-size:10px; flex-shrink:0; }

/* SUCCESS BOX */
.success-box {
  display:none; text-align:center; padding:40px 24px;
}
.success-box.show { display:block; }
.success-icon { font-size:3rem; margin-bottom:16px; }
.success-box h3 { margin-bottom:10px; color:var(--navy); }
.success-box p { color:#555; margin-bottom:24px; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy); padding: 48px 0;
}
.stats-grid {
  display:grid; grid-template-columns: repeat(4, 1fr); gap:32px; text-align:center;
}
.stat-num {
  font-family:var(--heading); font-size:2.4rem; font-weight:700; color:var(--amber);
}
.stat-label { font-size:13px; color:rgba(255,255,255,.6); margin-top:4px; letter-spacing:.5px; }

/* ── SERVICES GRID ── */
.service-grid {
  display:grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap:28px;
}
.service-card {
  background:#fff; border-radius:12px; padding:32px; box-shadow:var(--shadow);
  border:1px solid var(--grey-lt); transition:all .25s;
  display:flex; flex-direction:column;
}
.service-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.service-icon {
  width:52px; height:52px; background:rgba(232,147,10,.1); border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; margin-bottom:20px;
}
.service-card h3 { margin-bottom:12px; font-size:1.1rem; }
.service-card p { font-size:14px; color:#555; flex:1; margin-bottom:20px; }
.service-card .btn { align-self:flex-start; }

/* ── CONSULTING DETAIL ── */
.consult-detail-grid {
  display:grid; grid-template-columns:1fr 340px; gap:48px;
  max-width:var(--max); margin:0 auto; padding:48px 24px; align-items:start;
}
.consult-detail-main p { color:#444; line-height:1.75; margin-bottom:16px; }
.consult-detail-main h2 { font-size:1.4rem; margin:32px 0 12px; color:var(--navy); }
.feature-list { list-style:none; padding:0; margin:16px 0; }
.feature-list li {
  display:flex; align-items:flex-start; gap:12px;
  padding:10px 0; border-bottom:1px solid var(--grey-lt); font-size:15px;
}
.feature-list li:last-child { border-bottom:none; }
.feature-list li::before { content:'→'; color:var(--amber); font-weight:700; flex-shrink:0; }
.consult-cta-card {
  background:var(--navy); color:#fff; border-radius:14px;
  padding:32px; position:sticky; top:90px;
}
.consult-cta-card h3 { margin-bottom:12px; }
.consult-cta-card p { color:rgba(255,255,255,.70); font-size:14px; margin-bottom:20px; }
.consult-cta-card .btn { width:100%; justify-content:center; margin-bottom:12px; }

/* ── EVENTS ── */
.event-grid {
  display:grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap:28px;
}
.event-card {
  background:#fff; border-radius:12px; overflow:hidden;
  box-shadow:var(--shadow); border:1px solid var(--grey-lt); transition:all .25s;
}
.event-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.event-card-header {
  background:var(--navy); padding:28px 24px;
  display:flex; align-items:center; gap:20px;
}
.event-date-badge {
  background:var(--amber); color:#fff; border-radius:10px;
  padding:10px 14px; text-align:center; flex-shrink:0; min-width:64px;
}
.event-date-badge .day { font-family:var(--heading); font-size:1.8rem; font-weight:700; line-height:1; }
.event-date-badge .month { font-size:11px; letter-spacing:1.5px; text-transform:uppercase; margin-top:2px; }
.event-card-header h3 { color:#fff; font-size:1.1rem; }
.event-card-header p { color:rgba(255,255,255,.65); font-size:13px; margin-top:4px; }
.event-card-body { padding:20px 24px; }
.event-card-body p { font-size:14px; color:#555; margin-bottom:16px; }

.event-detail-grid {
  display:grid; grid-template-columns:1fr 360px; gap:48px;
  max-width:var(--max); margin:0 auto; padding:48px 24px; align-items:start;
}
.event-detail-main p { color:#444; line-height:1.75; margin-bottom:20px; }
.event-detail-main h2 { font-size:1.4rem; margin:32px 0 12px; color:var(--navy); }
.event-highlight-box {
  background:var(--cream); border-left:4px solid var(--amber);
  padding:20px 24px; border-radius:0 var(--radius) var(--radius) 0;
  margin:24px 0;
}
.event-highlight-box p { color:var(--navy); font-style:italic; font-size:1.05rem; margin:0; }
.event-register-card {
  background:var(--navy); color:#fff; border-radius:14px;
  padding:32px; position:sticky; top:90px;
}
.event-register-card h3 { margin-bottom:8px; }
.event-register-card .price-tag {
  font-family:var(--heading); font-size:2rem; color:var(--amber); margin:12px 0;
}
.event-register-card p { color:rgba(255,255,255,.70); font-size:14px; margin-bottom:20px; }
.event-register-card .btn { width:100%; justify-content:center; margin-bottom:10px; }
.event-info-row {
  display:flex; align-items:center; gap:10px;
  font-size:13px; color:rgba(255,255,255,.65);
  padding:8px 0; border-bottom:1px solid rgba(255,255,255,.1);
}
.event-info-row:last-child { border-bottom:none; }
.event-info-row span:first-child { width:18px; text-align:center; flex-shrink:0; }

/* ── MEDIA PAGE ── */
.media-grid {
  display:grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap:28px;
}
.media-card {
  background:#fff; border-radius:12px; overflow:hidden;
  box-shadow:var(--shadow); border:1px solid var(--grey-lt);
}
.media-card-header { background:var(--navy); padding:24px; }
.media-card-header .media-icon { font-size:2rem; margin-bottom:12px; }
.media-card-header h3 { color:#fff; margin-bottom:6px; }
.media-card-header p { color:rgba(255,255,255,.65); font-size:13px; }
.media-card-body { padding:20px 24px; }
.media-card-body p { font-size:14px; color:#555; margin-bottom:16px; }

/* ── TESTIMONIALS ── */
.testimonial-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:24px; }
.testimonial-card {
  background:#fff; border-radius:12px; padding:28px; box-shadow:var(--shadow);
  border:1px solid var(--grey-lt);
}
.testimonial-text { font-size:15px; line-height:1.7; color:#444; margin-bottom:20px; font-style:italic; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.testimonial-avatar {
  width:40px; height:40px; border-radius:50%; background:var(--navy);
  display:flex; align-items:center; justify-content:center; color:var(--amber);
  font-weight:700; font-size:14px; flex-shrink:0;
}
.testimonial-name { font-weight:600; font-size:14px; }
.testimonial-origin { font-size:12px; color:var(--grey); }

/* ── FEATURED STRIP ── */
.featured-exp {
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  border-radius:14px; overflow:hidden; box-shadow:var(--shadow-lg); margin-bottom:48px;
}
.featured-exp-img {
  background:var(--navy); min-height:380px;
  display:flex; align-items:flex-end; padding:32px;
  position:relative; overflow:hidden;
}
.featured-exp-img::before {
  content:''; position:absolute; inset:0;
  background: none;
}
.featured-exp-content {
  background:#fff; padding:48px; display:flex;
  flex-direction:column; justify-content:center;
}
.featured-exp-content .label { margin-bottom:12px; display:block; }
.featured-exp-content h3 { font-size:1.6rem; margin-bottom:12px; }
.featured-exp-content p { color:#555; margin-bottom:24px; line-height:1.7; }
.featured-exp-price { font-family:var(--heading); font-size:1.5rem; color:var(--amber); margin-bottom:20px; }

/* ── CONTACT SECTION ── */
.contact-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start;
}
.contact-info h2 { margin-bottom:16px; }
.contact-info p { color:rgba(255,255,255,.70); margin-bottom:32px; line-height:1.75; }
.contact-detail {
  display:flex; align-items:flex-start; gap:14px; margin-bottom:20px;
}
.contact-icon {
  width:42px; height:42px; background:rgba(232,147,10,.15);
  border-radius:8px; display:flex; align-items:center; justify-content:center;
  flex-shrink:0; font-size:1.1rem;
}
.contact-detail h4 { font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color:var(--amber); margin-bottom:4px; }
.contact-detail p { color:rgba(255,255,255,.80); font-size:15px; }

/* CONTACT FORM */
.contact-form { background:rgba(255,255,255,.06); border-radius:14px; padding:32px; }
.contact-form .form-group label { color:rgba(255,255,255,.80); }
.contact-form input, .contact-form select, .contact-form textarea {
  background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.15); color:#fff;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color:rgba(255,255,255,.4); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color:var(--amber); background:rgba(255,255,255,.12);
}
.contact-form select option { background: var(--navy); color:#fff; }


.footer-social { display:flex; gap:14px; margin-top:20px; }
.footer-social a {
  display:flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:8px;
  background:rgba(255,255,255,.08); color:rgba(255,255,255,.60);
  transition:all .2s;
}
.footer-social a:hover { background:var(--amber); color:#fff; }

/* ── FOOTER ── */
footer {
  background:var(--dark); color:#fff; padding:64px 0 0;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:48px; margin-bottom:48px;
}
.footer-logo {
  font-family:var(--heading); font-size:1.5rem; font-weight:700; margin-bottom:14px;
}
.footer-logo span { color:var(--amber); }
.footer-brand p { font-size:14px; color:rgba(255,255,255,.50); line-height:1.75; }
.footer-col h4 { font-size:12px; letter-spacing:2px; text-transform:uppercase; color:var(--amber); margin-bottom:16px; }
.footer-col a { display:block; font-size:14px; color:rgba(255,255,255,.55); margin-bottom:10px; transition:color .2s; }
.footer-col a:hover { color:#fff; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08); padding:20px 0;
  display:flex; justify-content:space-between; align-items:center;
  font-size:13px; color:rgba(255,255,255,.35);
}

/* ── FLATPICKR THEME ── */
.flatpickr-calendar { font-family:var(--body) !important; border-radius:10px !important; box-shadow:var(--shadow-lg) !important; }
.flatpickr-day.selected, .flatpickr-day.selected:hover { background:var(--amber) !important; border-color:var(--amber) !important; }
.flatpickr-day:hover { background:rgba(232,147,10,.15) !important; }

/* ── NIGERIA STATES FIELD ── */
#stateRow { display:none; }
#stateRow.show { display:block; }

/* ── MISC ── */
.amber-text { color:var(--amber); }
.navy-text  { color:var(--navy);  }
.text-center { text-align:center; }
.mt-8  { margin-top:8px;  }
.mt-16 { margin-top:16px; }
.mt-32 { margin-top:32px; }
.mb-16 { margin-bottom:16px; }
.mb-32 { margin-bottom:32px; }
.divider { border:none; border-top:1px solid var(--grey-lt); margin:32px 0; }

/* ── RESPONSIVE ── */
@media (max-width:960px) {
  .exp-detail-grid   { grid-template-columns:1fr; }
  .consult-detail-grid{ grid-template-columns:1fr; }
  .event-detail-grid { grid-template-columns:1fr; }
  .contact-grid      { grid-template-columns:1fr; }
  .footer-grid       { grid-template-columns:1fr 1fr; }
  .stats-grid        { grid-template-columns:1fr 1fr; }
  .featured-exp      { grid-template-columns:1fr; }
  .featured-exp-img  { min-height:240px; }
  .booking-card      { position:static; }
  .consult-cta-card  { position:static; }
  .event-register-card { position:static; }
  .included-grid     { grid-template-columns:1fr; }
}

@media (max-width:680px) {
  body { font-size:15px; }
  .section { padding:56px 0; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links {
    display:none; flex-direction:column; position:absolute;
    top:var(--nav-h); left:0; right:0; background:var(--navy);
    padding:24px; gap:20px; box-shadow:0 12px 32px rgba(0,0,0,.25);
    justify-self:unset;
  }
  .nav-links.open { display:flex; }
  .nav-toggle { display:flex; }
  .nav-right .btn { display:none; }
  .hero-stats { gap:28px; }
  .stats-grid { grid-template-columns:1fr 1fr; gap:20px; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .hero-actions { flex-direction:column; }
  .form-row-2 { grid-template-columns:1fr; }
  .exp-grid { 