/* ============================================================
   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); }

.nav-dropdown { position: relative; display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown-link {
  color: rgba(255,255,255,.80); font-size: 14px; font-weight: 500;
  transition: color .2s; position: relative;
}
.nav-dropdown-link:hover, .nav-dropdown-link.active { color: #fff; }
.nav-dropdown-link.active::after {
  content:''; position: absolute; bottom:-4px; left:0; right:0;
  height: 2px; background: var(--amber); border-radius: 2px;
}
.nav-dropdown-caret {
  background: none; border: none; font-family: inherit; cursor: pointer;
  color: rgba(255,255,255,.80); display: inline-flex; align-items: center;
  justify-content: center; width: 24px; height: 24px; margin-left: -2px;
  border-radius: 50%; transition: all .2s;
}
.nav-dropdown-caret:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav-dropdown.open .nav-dropdown-link,
.nav-dropdown.open .nav-dropdown-caret { color: #fff; }
.nav-dropdown.open .nav-dropdown-caret { background: rgba(255,255,255,.12); }
.nav-dropdown:has(.nav-dropdown-menu a.active) .nav-dropdown-link { color: #fff; }
.nav-dropdown:has(.nav-dropdown-menu a.active) .nav-dropdown-link::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0;
  height:2px; background:var(--amber); border-radius:2px;
}
.nav-caret { font-size: 11px; transition: transform .2s; display: inline-block; }
.nav-dropdown:hover .nav-caret, .nav-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 20px; /* invisible hover bridge -- keeps the menu open while the
                        cursor crosses the visual gap between the nav and the card */
  min-width: 170px; display: none; flex-direction: column; gap: 2px;
  z-index: 1001;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: 20px; left: 0; right: 0; bottom: 0;
  background: var(--navy); border-radius: 10px; box-shadow: 0 14px 32px rgba(0,0,0,.35);
  z-index: -1;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  color: rgba(255,255,255,.80); font-size: 14px; font-weight: 500;
  padding: 10px 14px; margin: 0 8px; border-radius: 6px; white-space: nowrap; transition: all .15s;
}
.nav-dropdown-menu a:first-child { margin-top: 8px; }
.nav-dropdown-menu a:last-child { margin-bottom: 8px; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a.active { color: #fff; background: rgba(255,255,255,.08); }

/* ── 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; }
.time-badge {
  display:inline-flex; align-items:center; gap:7px; margin-top:18px;
  background:rgba(232,147,10,.15); border:1px solid rgba(232,147,10,.4);
  color:#fff; font-size:12.5px; font-weight:600; letter-spacing:.3px;
  padding:7px 14px; border-radius:20px;
}
.time-badge .dot { width:7px; height:7px; border-radius:50%; background:var(--amber); flex-shrink:0; }
.section-header .time-badge {
  background:rgba(232,147,10,.1); border:1px solid rgba(232,147,10,.35);
  color:var(--navy); margin-top:14px;
}

/* ── 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; }

/* ── CURATE SHOWCASE (homepage) ── */
.curate-showcase { background: #fff; border-top: 1px solid var(--grey-lt); border-bottom: 1px solid var(--grey-lt); }
.curate-showcase-header { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.curate-showcase-icon { width: 42px; height: 42px; margin: 0 auto 20px; display: block; color: var(--amber); }
.curate-showcase-header .label { display: block; margin-bottom: 10px; }
.curate-showcase-header h2 { margin-bottom: 10px; }
.curate-showcase-subtitle {
  font-family: var(--heading); font-style: italic; font-size: 1.15rem;
  color: var(--navy); margin-bottom: 18px;
}
.curate-showcase-header .section-intro { margin: 0 auto 20px; }
.curate-showcase-header .time-badge {
  background: rgba(232,147,10,.1); border: 1px solid rgba(232,147,10,.35);
  color: var(--navy); margin-top: 0;
}
.curate-showcase-cta {
  display: inline-flex; text-transform: uppercase; letter-spacing: 1.2px;
  font-size: 12.5px; font-weight: 700; padding: 15px 32px; border-radius: 4px;
}

.curate-carousel { position: relative; display: flex; align-items: center; gap: 18px; }
.curate-carousel-track {
  display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 4px 4px 14px; flex: 1;
}
.curate-carousel-track::-webkit-scrollbar { height: 6px; }
.curate-carousel-track::-webkit-scrollbar-thumb { background: var(--grey-lt); border-radius: 3px; }
.curate-carousel-card { flex: 0 0 320px; scroll-snap-align: start; }
@media (max-width: 680px) { .curate-carousel-card { flex-basis: 80vw; } }
.curate-carousel-img {
  height: 230px; border-radius: 10px; background: var(--navy);
  background-size: cover; background-position: center; margin-bottom: 18px;
  box-shadow: var(--shadow); transition: transform .3s;
}
.curate-carousel-card:hover .curate-carousel-img { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.curate-carousel-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.curate-carousel-card p { font-size: 13.5px; color: #666; line-height: 1.7; margin-bottom: 10px; }
.curate-carousel-link {
  font-size: 13px; font-weight: 600; color: var(--navy);
  text-decoration: underline; text-underline-offset: 3px;
}
.curate-carousel-link:hover { color: var(--amber); }
.carousel-arrow {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--grey-lt); background: #fff; display: flex;
  align-items: center; justify-content: center; font-size: 15px; color: var(--navy);
  transition: all .2s; box-shadow: var(--shadow);
}
.carousel-arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
@media (max-width: 680px) { .carousel-arrow { display: none; } }

/* ── 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);
  display:flex; flex-direction:column; height:100%;
}
.media-card-header { background:var(--navy); padding:24px; min-height:176px; box-sizing:border-box; }
.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; flex:1; display:flex; flex-direction:column; }
.media-card-body p { font-size:14px; color:#555; margin-bottom:16px; }
.media-card-actions { margin-top:auto; padding-top:4px; display:flex; flex-wrap:wrap; gap:8px; }
.media-card-actions > div { width:100%; }

/* ── 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-dropdown { flex-direction:column; align-items:flex-start; gap:0; }
  .nav-dropdown-caret { display:none; }
  .nav-caret { display:none; }
  .nav-dropdown-menu {
    position:static; transform:none; background:none; box-shadow:none;
    padding:4px 0 4px 16px; display:flex; min-width:0;
  }
  .nav-dropdown-menu::before { display:none; }
  .nav-dropdown-menu a { padding:8px 0; margin:0; }
  .nav-dropdown-menu a:first-child, .nav-dropdown-menu a:last-child { margin:0; }
  .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 { grid-template-columns:1fr; }
}
/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUBBLE  (injected on every page by main.js)
   ══════════════════════════════════════════════════════════ */
.wa-float{
  position:fixed; right:22px; bottom:22px; z-index:950;
  display:flex; align-items:center; gap:10px;
  text-decoration:none; font-family:inherit;
}
.wa-float-label{
  background:#fff; color:var(--navy); font-size:13px; font-weight:600;
  padding:9px 15px; border-radius:24px; white-space:nowrap;
  border:1px solid var(--grey-lt); box-shadow:0 6px 20px rgba(13,27,62,.18);
  opacity:0; transform:translateX(10px); pointer-events:none;
  transition:opacity .25s, transform .25s;
}
.wa-float:hover .wa-float-label,
.wa-float:focus-visible .wa-float-label{ opacity:1; transform:translateX(0); }
.wa-float-btn{
  position:relative; flex:none;
  width:58px; height:58px; border-radius:50%;
  background:var(--amber); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 24px rgba(232,147,10,.42);
  transition:transform .25s, background .25s, box-shadow .25s;
}
.wa-float-btn svg{ width:31px; height:31px; display:block; fill:currentColor; position:relative; z-index:1; }
.wa-float:hover .wa-float-btn{
  background:var(--amber-dk); transform:scale(1.07);
  box-shadow:0 10px 30px rgba(232,147,10,.55);
}
.wa-float-btn::before{
  content:''; position:absolute; inset:0; border-radius:50%;
  border:2px solid var(--amber); animation:waPulse 2.6s ease-out infinite;
}
@keyframes waPulse{
  0%{ transform:scale(1); opacity:.65 }
  70%{ transform:scale(1.55); opacity:0 }
  100%{ opacity:0 }
}
@media (prefers-reduced-motion:reduce){ .wa-float-btn::before{ display:none } }
@media (max-width:680px){
  .wa-float{ right:16px; bottom:16px; }
  .wa-float-btn{ width:52px; height:52px; }
  .wa-float-btn svg{ width:28px; height:28px; }
  .wa-float-label{ display:none; }
}

/* ══════════════════════════════════════════════════════════
   SOCIAL SHARE ROW
   ══════════════════════════════════════════════════════════ */
.share-row{ display:flex; align-items:center; gap:9px; flex-wrap:wrap; }
.share-row-label{
  font-size:11px; font-weight:700; letter-spacing:1.4px;
  text-transform:uppercase; color:var(--grey); margin-right:2px;
}
.share-btn{
  width:38px; height:38px; border-radius:50%; padding:0;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid var(--grey-lt); background:#fff; color:var(--navy);
  cursor:pointer; text-decoration:none; font-family:inherit;
  transition:background .22s, border-color .22s, color .22s, transform .22s;
}
.share-btn svg{ width:17px; height:17px; display:block; fill:currentColor; }
.share-btn:hover{ background:var(--navy); border-color:var(--navy); color:#fff; transform:translateY(-2px); }
.share-btn.share-whatsapp:hover{ background:#25D366; border-color:#25D366; color:#fff; }
.share-btn.share-facebook:hover{ background:#1877F2; border-color:#1877F2; color:#fff; }
.share-btn.share-linkedin:hover{ background:#0A66C2; border-color:#0A66C2; color:#fff; }
.share-btn.share-x:hover{ background:#000; border-color:#000; color:#fff; }
.share-btn.share-copy:hover{ background:var(--amber); border-color:var(--amber); color:#fff; }

/* dark-background variant (navy heroes, navy cards) */
.share-row.on-dark .share-row-label{ color:rgba(255,255,255,.62); }
.share-row.on-dark .share-btn{
  background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.28); color:#fff;
}
.share-row.on-dark .share-btn:hover{ background:#fff; border-color:#fff; color:var(--navy); }
.share-row.on-dark .share-btn.share-whatsapp:hover{ background:#25D366; border-color:#25D366; color:#fff; }
.share-row.on-dark .share-btn.share-facebook:hover{ background:#1877F2; border-color:#1877F2; color:#fff; }
.share-row.on-dark .share-btn.share-linkedin:hover{ background:#0A66C2; border-color:#0A66C2; color:#fff; }
.share-row.on-dark .share-btn.share-x:hover{ background:#000; border-color:#000; color:#fff; }
.share-row.on-dark .share-btn.share-copy:hover{ background:var(--amber); border-color:var(--amber); color:#fff; }

/* native OS share sheet — phones only, when the browser supports it */
.share-btn.share-native{
  display:none; width:auto; border-radius:22px; padding:0 16px; height:38px;
  gap:8px; font-size:13px; font-weight:600;
}
@media (max-width:680px){
  .share-row.has-native > .share-btn{ display:none; }
  .share-row.has-native > .share-btn.share-native{ display:inline-flex; }
}

/* share block used on event / detail pages */
.share-block{
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  padding:18px 0; margin:0 0 32px;
  border-top:1px solid var(--grey-lt); border-bottom:1px solid var(--grey-lt);
}
.share-block .share-row-label{ margin-right:0; }

/* compact share button + popover, used on listing cards */
.share-mini-wrap{ position:relative; display:inline-flex; }
.share-mini{
  width:40px; height:40px; border-radius:50%; padding:0;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid var(--grey-lt); background:#fff; color:var(--navy);
  cursor:pointer; transition:background .22s, border-color .22s, color .22s;
}
.share-mini svg{ width:16px; height:16px; display:block; fill:currentColor; }
.share-mini:hover, .share-mini.open{ background:var(--navy); border-color:var(--navy); color:#fff; }
.share-pop{
  position:absolute; bottom:calc(100% + 12px); right:0; z-index:70;
  background:#fff; border:1px solid var(--grey-lt); border-radius:12px;
  box-shadow:var(--shadow-lg); padding:10px; display:none;
}
.share-pop.open{ display:block; }
.share-pop .share-row{ flex-wrap:nowrap; gap:8px; }
.share-pop::after{
  content:''; position:absolute; top:100%; right:16px;
  border:7px solid transparent; border-top-color:#fff;
}
.tile-cta-row{ display:flex; align-items:center; gap:10px; }
.tile-cta-row .btn{ flex:1; }
.tile-cta-row .share-mini{ flex:none; }
.event-card-cta{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.event-card-cta .share-mini-wrap{ margin-left:auto; }

/* "link copied" toast */
.share-toast{
  position:fixed; left:50%; bottom:96px; z-index:1000;
  transform:translateX(-50%) translateY(12px);
  background:var(--navy); color:#fff; font-size:13px; font-weight:500;
  padding:11px 20px; border-radius:24px; box-shadow:var(--shadow-lg);
  opacity:0; pointer-events:none; transition:opacity .25s, transform .25s;
}
.share-toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }

.share-strip{ max-width:var(--max); margin:0 auto; padding:0 24px; }
.share-strip .share-block{ margin:0; border-top:none; }
