/*
  Elliot Africa Safaris — Static Site CSS
  Exact match to the WordPress theme style.css
*/

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --color-primary:       #0F372F;
  --color-primary-dark:  #0a2420;
  --color-primary-light: rgba(15,55,47,0.10);
  --color-gold:          #ECBC6B;
  --color-gold-dark:     #d4a85a;
  --color-dark:          #0A2B24;
  --color-surface:       #F8F6F2;
  --color-white:         #ffffff;
  --color-text:          #1A1A1A;
  --color-text-muted:    #6B7280;
  --color-border:        rgba(0,0,0,0.10);
  --color-border-light:  rgba(0,0,0,0.06);
  --color-bg-alt:        #F8F6F2;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-xs:   0.6875rem;
  --text-sm:   0.8125rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 6px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08), 0 3px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.10), 0 6px 12px rgba(0,0,0,.05);
  --space-1:  0.25rem; --space-2:  0.5rem;  --space-3:  0.75rem;
  --space-4:  1rem;    --space-5:  1.25rem; --space-6:  1.5rem;
  --space-8:  2rem;    --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;
  --radius-sm: 4px; --radius: 8px; --radius-lg: 12px;
  --transition: 0.25s cubic-bezier(0.22,1,0.36,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-size: var(--text-base); font-weight: 400; color: var(--color-text); background: var(--color-surface); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.1; letter-spacing: -0.03em; color: var(--color-text); font-weight: 800; }
h3, h4, h5 { font-weight: 700; letter-spacing: -0.02em; }
.label-tag { display: inline-block; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-gold); }
.section-heading { font-family: var(--font-heading); font-size: clamp(2.1rem, 4.5vw, 3.75rem); line-height: 1.06; letter-spacing: -0.035em; font-weight: 900; }
.section-heading em { display: block; font-style: italic; font-weight: 400; color: var(--color-gold); }
.section-subtext { font-size: clamp(1rem, 1.4vw, 1.125rem); color: var(--color-text-muted); line-height: 1.75; max-width: 560px; font-weight: 400; }

/* ─── LAYOUT ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3.5rem); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--sm { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--dark { background: var(--color-dark); }
.section--primary { background: var(--color-primary); }
.section--surface { background: var(--color-surface); }
.section--white { background: var(--color-white); }
.section-header { text-align: center; margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.section-header .label-tag { margin-bottom: var(--space-4); }
.section-header .section-heading { margin-bottom: var(--space-5); }
.section-header .section-subtext { margin: 0 auto; }
.divider-gold { display: flex; align-items: center; gap: var(--space-3); margin: var(--space-5) 0; }
.divider-gold span { display: block; height: 2px; background: var(--color-gold); }
.divider-gold .long { width: 56px; }
.divider-gold .short { width: 14px; opacity: 0.4; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 2rem; font-family: var(--font-body); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; position: relative; overflow: hidden; border: none; border-radius: 0; }
.btn svg { flex-shrink: 0; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-hero-primary { background: var(--color-gold); color: var(--color-primary); overflow: hidden; }
.btn-hero-primary::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.25); transform: translateX(-100%) skewX(12deg); transition: transform 0.3s ease; }
.btn-hero-primary:hover::after { transform: translateX(0) skewX(12deg); }
.btn-hero-primary:hover { box-shadow: 0 4px 32px rgba(236,188,107,0.45); }
.btn-hero-outline { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(4px); }
.btn-hero-outline:hover { border-color: var(--color-gold); color: var(--color-gold); }
.btn-primary { background: var(--color-gold); color: var(--color-primary); }
.btn-primary:hover { background: var(--color-gold-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(236,188,107,0.4); }
.btn-outline-gold { background: transparent; color: var(--color-gold); border: 1px solid rgba(236,188,107,0.5); }
.btn-outline-gold:hover { background: var(--color-gold); color: var(--color-primary); border-color: var(--color-gold); }
.btn-dark { background: var(--color-primary); color: white; }
.btn-dark:hover { background: var(--color-gold); color: var(--color-primary); }
.btn-white { background: white; color: var(--color-primary); }
.btn-white:hover { background: var(--color-surface); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ─── HEADER / NAV ─── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.5s ease, box-shadow 0.5s ease; }
.header-top-line { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, rgba(236,188,107,0.6), transparent); transition: opacity 0.4s ease; }
.site-header.scrolled .header-top-line { opacity: 0; }
.site-header.scrolled { background: #0F372F; box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.nav-inner { max-width: 1340px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(1.5rem, 4vw, 3.5rem); height: 90px; gap: 1.5rem; }
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 114px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; flex: 1; justify-content: center; }
.nav-link { position: relative; color: rgba(255,255,255,0.80); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; transition: color 0.2s ease; padding-bottom: 4px; }
.nav-link:hover, .nav-link.active { color: var(--color-gold); }
.nav-link-underline { display: block; position: absolute; bottom: 0; left: 0; height: 1px; width: 0; background: var(--color-gold); transition: width 0.3s ease; }
.nav-link:hover .nav-link-underline, .nav-link.active .nav-link-underline { width: 100%; }
.nav-payment-link { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.65rem 1.25rem; border: 1px solid rgba(236,188,107,0.4); color: var(--color-gold); font-size: 0.625rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; transition: background 0.3s ease, color 0.3s ease; margin-right: 1rem; white-space: nowrap; flex-shrink: 0; }
.nav-payment-link:hover { background: var(--color-gold); color: var(--color-primary); }
.nav-payment-link svg { flex-shrink: 0; }
.nav-cta { position: relative; display: inline-block; padding: 0.9rem 1.75rem; border: 1px solid rgba(236,188,107,0.7); color: var(--color-gold); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; overflow: hidden; transition: color 0.3s ease; white-space: nowrap; flex-shrink: 0; }
.nav-cta-fill { display: block; position: absolute; inset: 0; background: var(--color-gold); transform: translateY(-100%); transition: transform 0.3s ease; }
.nav-cta-text { position: relative; z-index: 1; }
.nav-cta:hover { color: var(--color-primary); }
.nav-cta:hover .nav-cta-fill { transform: translateY(0); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; cursor: pointer; color: white; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; transition: all 0.3s; transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #0F372F; border-top: 1px solid rgba(236,188,107,0.2); z-index: 99; overflow-y: auto; transform: translateY(-100%); opacity: 0; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease; pointer-events: none; }
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu-logo { display: flex; justify-content: center; padding: 2.5rem 1.5rem 1rem; }
.mobile-menu-logo img { height: 117px; width: auto; }
.mobile-menu-links { padding: 1.25rem 1.5rem 2rem; }
.mobile-menu-links a { display: flex; align-items: center; padding: 1rem 0; color: rgba(255,255,255,0.85); font-family: var(--font-heading); font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.1); transition: color 0.2s; }
.mobile-menu-links a:hover { color: var(--color-gold); }
.mobile-menu-links .mobile-cta { display: block; margin-top: 1rem; text-align: center; padding: 1rem; background: var(--color-gold); color: var(--color-primary); font-family: var(--font-body); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; border: none; border-bottom: none !important; }
.mobile-menu-links .mobile-payment-link { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.75rem; background: transparent; border: 1px solid var(--color-gold) !important; color: var(--color-gold); }
.mobile-menu-links a.sub-link { padding-left: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,.55); border-bottom-color: rgba(255,255,255,.06); }
.mobile-menu-links a.sub-link:hover { color: var(--color-gold); }
.mobile-menu-section-label { padding: 0.75rem 0 0.25rem; font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-gold); opacity: 0.6; border-bottom: none !important; display: block; }

/* ─── DROPDOWN NAV ─── */
.nav-dropdown-wrap { position: relative; }
.nav-chevron { display: inline-block; margin-left: 3px; vertical-align: middle; transition: transform 0.2s ease; flex-shrink: 0; }
.nav-dropdown-wrap:hover .nav-chevron { transform: rotate(180deg); }
/* Invisible bridge fills the gap so cursor moving into the dropdown doesn't break hover */
.nav-dropdown-wrap::after { content: ''; position: absolute; top: 100%; left: -20px; right: -20px; height: 22px; }
.nav-dropdown-menu { position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%); min-width: 220px; background: #0F372F; border: 1px solid rgba(236,188,107,0.18); box-shadow: 0 16px 48px rgba(0,0,0,0.45); z-index: 200; opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.22,1,0.36,1), visibility 0s linear 0.25s; }
.nav-dropdown-menu::before { content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid rgba(236,188,107,0.18); }
.nav-dropdown-wrap:hover .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.22,1,0.36,1), visibility 0s linear 0s; }
.nav-dropdown-menu a { display: block; padding: 0.65rem 1.25rem; color: rgba(255,255,255,.7); font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.04em; border-bottom: 1px solid rgba(255,255,255,.06); transition: color 0.18s, background 0.18s, padding-left 0.18s; white-space: nowrap; }
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { color: var(--color-gold); background: rgba(255,255,255,.04); padding-left: 1.5rem; }
.nav-dropdown-menu .dropdown-header-link { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-gold); border-bottom: 1px solid rgba(236,188,107,0.18) !important; padding-bottom: 0.75rem; margin-bottom: 2px; }
.nav-dropdown-menu .dropdown-header-link:hover { color: white; background: none; padding-left: 1.25rem; }

/* ─── TOUR DETAIL PAGE ─── */
.tour-detail-wrap { display: grid; grid-template-columns: 1fr 340px; gap: var(--space-10); align-items: start; }
.tour-detail-main { min-width: 0; }
.tour-detail-sidebar { position: sticky; top: 108px; }
.tour-section { margin-bottom: var(--space-10); padding-bottom: var(--space-10); border-bottom: 1px solid var(--color-border-light); }
.tour-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.tour-section-label { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gold); margin-bottom: var(--space-6); padding-bottom: var(--space-4); border-bottom: 2px solid var(--color-border-light); }
.tour-section-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: rgba(236,188,107,.1); border-radius: 6px; color: var(--color-gold); flex-shrink: 0; }
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
.includes-grid .includes-col h3,
.includes-grid .excludes-col h3 { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: var(--space-4); padding-bottom: var(--space-3); border-bottom: 1px solid var(--color-border-light); }
.includes-grid .includes-col ul li,
.includes-grid .excludes-col ul li { display: flex; align-items: flex-start; gap: 8px; font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: 8px; line-height: 1.6; padding: 6px 0; }
.includes-grid .includes-col ul li::before { content: '✓'; width: 20px; height: 20px; min-width: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; background: rgba(16,185,129,.12); color: #10B981; }
.includes-grid .excludes-col ul li::before { content: '✕'; width: 20px; height: 20px; min-width: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; background: rgba(239,68,68,.1); color: #DC2626; }
.itinerary-day { border: 1px solid var(--color-border-light); margin-bottom: var(--space-4); overflow: hidden; }
.itinerary-day-header { display: flex; align-items: center; gap: var(--space-4); padding: var(--space-4) var(--space-5); background: var(--color-white); cursor: pointer; user-select: none; transition: background 0.2s; }
.itinerary-day-header:hover { background: var(--color-surface); }
.itinerary-day-header.open { background: var(--color-primary); color: white; }
.itinerary-day-num { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; color: var(--color-gold); min-width: 60px; flex-shrink: 0; letter-spacing: 0.05em; }
.itinerary-day-header.open .itinerary-day-num { color: rgba(236,188,107,0.9); }
.itinerary-day-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; flex: 1; line-height: 1.3; }
.itinerary-day-header.open .itinerary-day-title { color: white; }
.itinerary-day-chevron { color: var(--color-text-muted); transition: transform 0.3s ease; flex-shrink: 0; }
.itinerary-day-header.open .itinerary-day-chevron { transform: rotate(180deg); color: var(--color-gold); }
.itinerary-day-body { display: none; padding: var(--space-5); border-top: 1px solid var(--color-border-light); background: white; }
.itinerary-day-body.open { display: block; }
.itinerary-day-body p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.8; margin-bottom: var(--space-3); }
.itinerary-day-meta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-4); padding-top: var(--space-4); border-top: 1px solid var(--color-border-light); }
.itinerary-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.6875rem; color: var(--color-text-muted); }
.itinerary-meta-item svg { color: var(--color-gold); flex-shrink: 0; }
.tour-sidebar-card { background: var(--color-primary); color: white; padding: var(--space-6); margin-bottom: var(--space-4); }
.tour-sidebar-card h3 { font-family: var(--font-heading); font-size: 1.25rem; color: white; margin-bottom: var(--space-2); }
.tour-sidebar-card .price-from { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.tour-sidebar-card .price-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--color-gold); line-height: 1; margin-bottom: var(--space-4); }
.tour-sidebar-card .price-num span { font-size: 0.875rem; font-weight: 400; color: rgba(255,255,255,.5); }
.tour-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin-bottom: var(--space-5); }
.tour-meta-item { background: rgba(255,255,255,.07); padding: var(--space-3); }
.tour-meta-item .meta-label { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.tour-meta-item .meta-val { font-size: var(--text-sm); font-weight: 600; color: white; }
.tour-sidebar-enquire { display: block; width: 100%; padding: 1rem; background: var(--color-gold); color: var(--color-primary); font-family: var(--font-body); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; border: none; cursor: pointer; transition: background 0.25s; margin-top: var(--space-4); }
.tour-sidebar-enquire:hover { background: var(--color-gold-dark); }
.sidebar-booking-form { margin-top: var(--space-4); }
.sidebar-booking-form .form-group { margin-bottom: var(--space-3); }
.sidebar-booking-form .form-group label { display: block; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.sidebar-booking-form .form-group input,
.sidebar-booking-form .form-group select,
.sidebar-booking-form .form-group textarea { width: 100%; padding: 0.6rem 0.75rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: var(--text-sm); font-family: var(--font-body); border-radius: 4px; transition: border-color 0.2s; }
.sidebar-booking-form .form-group input:focus,
.sidebar-booking-form .form-group select:focus,
.sidebar-booking-form .form-group textarea:focus { outline: none; border-color: var(--color-gold); }
.sidebar-booking-form .form-group select option { background: var(--color-primary); color: #fff; }
.sidebar-booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.sidebar-booking-form .form-submit { display: block; width: 100%; padding: 0.9rem 1rem; background: var(--color-gold); color: var(--color-primary); font-family: var(--font-body); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.25s; margin-top: var(--space-3); }
.sidebar-booking-form .form-submit:hover { background: var(--color-gold-dark); }
.tour-sidebar-info { background: var(--color-surface); border: 1px solid var(--color-border-light); padding: var(--space-5); }
.tour-sidebar-info h4 { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: var(--space-3); }
.tour-sidebar-info li { display: flex; align-items: center; gap: 8px; font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: 6px; }
.tour-sidebar-info li svg { color: var(--color-gold); flex-shrink: 0; }
.tour-highlights-list li { display: flex; align-items: flex-start; gap: 10px; padding: var(--space-3) 0; border-bottom: 1px solid var(--color-border-light); font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }
.tour-highlights-list li:last-child { border-bottom: none; }
.tour-highlights-list li::before { content: ''; display: block; width: 16px; height: 16px; background: var(--color-gold); border-radius: 50%; flex-shrink: 0; margin-top: 2px; }

/* ─── TRAVEL ADVICE PAGE ─── */
.advice-hub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-8); }
.advice-hub-card { background: white; border: 1px solid var(--color-border-light); padding: var(--space-6); display: flex; flex-direction: column; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.advice-hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(236,188,107,0.4); }
.advice-hub-card-icon { width: 52px; height: 52px; background: var(--color-primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-4); }
.advice-hub-card-icon svg { color: var(--color-primary); }
.advice-hub-card h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: var(--space-2); }
.advice-hub-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; flex: 1; margin-bottom: var(--space-4); }
.advice-hub-card-link { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-primary); display: flex; align-items: center; gap: 6px; transition: color 0.2s, gap 0.2s; }
.advice-hub-card:hover .advice-hub-card-link { color: var(--color-gold); gap: 10px; }
.advice-article { max-width: 860px; }
.advice-article h2 { font-family: var(--font-heading); font-size: clamp(1.4rem,2.5vw,2rem); margin: var(--space-10) 0 var(--space-4); color: var(--color-primary); }
.advice-article h3 { font-family: var(--font-heading); font-size: 1.25rem; margin: var(--space-8) 0 var(--space-3); }
.advice-article p { font-size: var(--text-base); color: var(--color-text-muted); line-height: 1.8; margin-bottom: var(--space-4); }
.advice-article ul, .advice-article ol { padding-left: 1.5rem; margin-bottom: var(--space-4); }
.advice-article ul li, .advice-article ol li { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.75; margin-bottom: 0.5rem; }
.advice-article strong { color: var(--color-primary); font-weight: 600; }
.advice-article a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.advice-article a:hover { color: var(--color-gold); }
.advice-callout { background: var(--color-primary); color: white; padding: var(--space-6); margin: var(--space-8) 0; border-left: 4px solid var(--color-gold); }
.advice-callout p { color: rgba(255,255,255,0.8); margin: 0; }
.advice-callout strong { color: var(--color-gold); }
.advice-sidebar { position: sticky; top: 98px; }
.advice-toc { background: var(--color-surface); border: 1px solid var(--color-border-light); padding: var(--space-5); margin-bottom: var(--space-4); }
.advice-toc h4 { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: var(--space-3); }
.advice-toc a { display: block; padding: 5px 0; font-size: var(--text-sm); color: var(--color-text-muted); border-bottom: 1px solid var(--color-border-light); transition: color 0.2s, padding-left 0.2s; }
.advice-toc a:last-child { border-bottom: none; }
.advice-toc a:hover { color: var(--color-primary); padding-left: 6px; }
.advice-also-links { background: var(--color-primary); padding: var(--space-5); }
.advice-also-links h4 { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: var(--space-3); }
.advice-also-links a { display: block; padding: 6px 0; font-size: var(--text-sm); color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.08); transition: color 0.2s, padding-left 0.2s; }
.advice-also-links a:last-child { border-bottom: none; }
.advice-also-links a:hover { color: var(--color-gold); padding-left: 6px; }
.advice-page-wrap { display: grid; grid-template-columns: 1fr 280px; gap: var(--space-10); align-items: start; }

/* ─── HERO ─── */
.hero { position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; background: #0A2920; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(0.82) saturate(1.12) contrast(1.04); }
.hero-ov-left { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,55,47,0.85) 0%, rgba(15,55,47,0.30) 50%, transparent 100%); }
.hero-ov-top { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,55,47,0.40) 0%, transparent 40%, rgba(0,0,0,0.70) 100%); }
.hero-ov-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.35) 100%); }
.hero-gold-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; z-index: 10; background: linear-gradient(to bottom, transparent, rgba(236,188,107,0.7), transparent); }
.hero-panels { position: absolute; inset: 0; z-index: 10; display: flex; align-items: center; }
.hero-panel { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 5rem clamp(1.5rem, 5vw, 7rem) 5rem; opacity: 0; transform: translateY(24px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); pointer-events: none; }
.hero-panel.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hero-panel--center { align-items: center; text-align: center; }
.hero-panel--left   { align-items: flex-start; text-align: left; }
.hero-panel--right  { align-items: flex-end; text-align: right; }
.hero-label { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.hero-label .line { display: block; width: 32px; height: 1px; background: var(--color-gold); flex-shrink: 0; }
.hero-label .text { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-gold); }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.6rem, 6.5vw, 5.8rem); line-height: 1.04; letter-spacing: -0.035em; font-weight: 900; color: white; margin-bottom: 1.25rem; text-shadow: 0 4px 48px rgba(0,0,0,0.5); }
.hero-title em { font-style: italic; color: rgba(236,188,107,0.90); display: block; }
.hero-panel .divider-gold { margin-bottom: 1.5rem; }
.hero-desc { font-size: clamp(0.95rem, 1.5vw, 1.15rem); color: rgba(255,255,255,0.72); font-weight: 300; line-height: 1.7; max-width: 500px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.2); background: rgba(0,0,0,0.20); color: white; cursor: pointer; backdrop-filter: blur(4px); transition: background 0.3s, border-color 0.3s, color 0.3s; border-radius: 0; }
.hero-arrow--prev { left: 1.5rem; }
.hero-arrow--next { right: 1.5rem; }
.hero-arrow:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-primary); }
.hero-counter { position: absolute; right: 2.25rem; bottom: 2rem; z-index: 20; display: none; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero-counter-current { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-gold); line-height: 1; }
.hero-counter-line { display: block; width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-counter-total { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.hero-progress-bars { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; align-items: center; gap: 0.5rem; }
.hero-pb { position: relative; height: 3px; border-radius: 999px; overflow: hidden; cursor: pointer; border: none; background: rgba(255,255,255,0.25); transition: width 0.5s ease; width: 12px; }
.hero-pb.active { width: 40px; background: rgba(236,188,107,0.25); }
.hero-pb-fill { display: block; position: absolute; inset-y: 0; left: 0; width: 0; background: var(--color-gold); border-radius: 999px; transition: none; }
.hero-pb.active .hero-pb-fill { animation: heroProgress 6s linear forwards; }
@keyframes heroProgress { from { width: 0; } to { width: 100%; } }
.hero-discover { position: absolute; bottom: 10rem; left: 2.5rem; z-index: 20; display: none; align-items: center; gap: 0.75rem; cursor: pointer; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.hero-discover:hover { color: var(--color-gold); }
.hero-discover span { font-size: 0.625rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; }
.hero-discover svg { animation: bounceDown 2s ease-in-out infinite; }
@keyframes bounceDown { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@media (min-width: 1024px) { .hero-counter { display: flex; } .hero-discover { display: flex; } }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--color-white); border-bottom: 1px solid var(--color-border-light); padding: var(--space-10) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.stat-item { text-align: center; }
.stat-item .num { font-family: var(--font-heading); font-size: var(--text-4xl); font-weight: 700; color: var(--color-primary); line-height: 1; margin-bottom: var(--space-1); }
.stat-item .label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text-muted); }

/* ─── CARDS ─── */
.card { background: var(--color-white); border: 1px solid var(--color-border-light); overflow: hidden; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s ease; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(236,188,107,0.4); }
.card-image { position: relative; overflow: hidden; flex-shrink: 0; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.card:hover .card-image img { transform: scale(1.05); }
.card-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%); }
.card-badge { position: absolute; top: var(--space-4); left: var(--space-4); padding: 4px 10px; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid; }
.badge-easy { background: rgba(16,185,129,0.15); color: #10B981; border-color: rgba(16,185,129,0.4); }
.badge-moderate { background: rgba(245,158,11,0.15); color: #D97706; border-color: rgba(245,158,11,0.4); }
.badge-strenuous { background: rgba(239,68,68,0.15); color: #DC2626; border-color: rgba(239,68,68,0.4); }
.card-days { position: absolute; top: var(--space-4); right: var(--space-4); background: rgba(15,55,47,0.92); backdrop-filter: blur(4px); padding: 6px 12px; display: flex; align-items: center; gap: 5px; color: white; font-size: var(--text-xs); font-weight: 600; }
.card-days svg { color: var(--color-gold); }
.card-subtitle-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--space-4); }
.card-subtitle-overlay p { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-gold); }
.card-body { padding: var(--space-5) var(--space-5); flex: 1; display: flex; flex-direction: column; background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,1) 100%); }
.card-accent { width: 24px; height: 2px; background: var(--color-gold); margin-bottom: var(--space-2); border-radius: 2px; transition: width 0.3s ease; }
.card:hover .card-accent { width: 40px; }
.card-title { font-family: var(--font-heading); font-size: 1.0rem; font-weight: 700; margin-bottom: 4px; line-height: 1.25; letter-spacing: -0.01em; color: var(--color-primary); }
.card-tagline { font-size: 0.65rem; color: var(--color-gold); font-style: italic; margin-bottom: var(--space-1); font-weight: 500; }
.card-desc { font-size: 0.78rem; color: var(--color-text-muted); line-height: 1.55; font-weight: 300; margin-bottom: var(--space-3); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-3); border-top: 1px solid var(--color-border-light); margin-top: auto; }
.card-price-label { font-size: 8px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 2px; }
.card-price { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--color-primary); line-height: 1.1; letter-spacing: -0.015em; }
.card-link { display: inline-flex; align-items: center; gap: 5px; padding: 7px 14px; background: var(--color-primary); color: white; font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; transition: all 0.25s; }
.card-link:hover { background: var(--color-gold); color: var(--color-primary); }
.card-link svg { transition: transform 0.2s; }
.card-link:hover svg { transform: translateX(2px); }

/* ─── EXPERIENCE TYPES / TAGS ─── */
.card-experiences { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: var(--space-2); margin-top: var(--space-1); }
.card-exp-tag { display: inline-flex; align-items: center; padding: 3px 9px; background: linear-gradient(135deg, rgba(236,188,107,0.12) 0%, rgba(236,188,107,0.06) 100%); color: var(--color-primary); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 10px; border: 1px solid rgba(236,188,107,0.25); transition: all 0.25s ease; box-shadow: inset 0 1px 2px rgba(236,188,107,0.1); }
.card-exp-tag:hover { background: linear-gradient(135deg, rgba(236,188,107,0.2) 0%, rgba(236,188,107,0.12) 100%); border-color: rgba(236,188,107,0.4); transform: translateY(-1px); }

/* ─── EXP CARD ─── */
.exp-card { position: relative; overflow: hidden; background: var(--color-white); border: 1px solid var(--color-border-light); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s ease; display: flex; flex-direction: column; }
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(236,188,107,0.4); }
.exp-card-image { height: 260px; overflow: hidden; position: relative; flex-shrink: 0; }
.exp-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.exp-card:hover .exp-card-image img { transform: scale(1.06); }
.exp-card-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%); }
.exp-cat-badge { position: absolute; bottom: var(--space-3); left: var(--space-4); font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-gold); }
.exp-card-body { padding: var(--space-8) var(--space-6); flex: 1; }
.exp-card-body h3 { font-family: var(--font-heading); font-size: var(--text-xl); margin-bottom: 4px; }
.exp-card-body .subtitle { font-size: var(--text-xs); color: var(--color-gold); font-style: italic; margin-bottom: var(--space-3); }
.exp-card-body p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; font-weight: 300; margin-bottom: var(--space-4); }
.exp-highlights li { display: flex; align-items: center; gap: 8px; font-size: var(--text-xs); color: var(--color-text-muted); margin-bottom: 4px; }
.exp-highlights li::before { content: ''; width: 12px; height: 1px; background: var(--color-gold); display: block; flex-shrink: 0; }
.exp-card-footer { padding: var(--space-4) var(--space-6); border-top: 1px solid var(--color-border-light); display: flex; align-items: center; justify-content: space-between; }
.exp-meta { font-size: 10px; color: var(--color-text-muted); letter-spacing: 0.08em; }

/* ─── CARDS GRID ─── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); }

/* ─── FILTER BAR ─── */
.filter-bar { position: sticky; top: 90px; z-index: 40; background: var(--color-white); border-bottom: 1px solid var(--color-border-light); box-shadow: var(--shadow-sm); padding: var(--space-4) 0; }
.filter-bar-inner { display: flex; flex-direction: column; gap: var(--space-3); }
.filter-row { display: flex; align-items: center; gap: var(--space-3); }
.filter-search-wrap { position: relative; flex: 1; max-width: 360px; }
.filter-search-wrap > svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--color-text-muted); pointer-events: none; }
.filter-search { width: 100%; padding: 9px 36px 9px 36px; border: 1px solid var(--color-border); font-size: var(--text-sm); outline: none; background: white; transition: border-color 0.2s; }
.filter-search:focus { border-color: var(--color-primary); }
.filter-clear-btn { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--color-text-muted); display: none; }
.filter-clear-btn.visible { display: flex; }
.filter-count { font-size: var(--text-xs); color: var(--color-text-muted); margin-left: auto; white-space: nowrap; }
.filter-clear-all { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-primary); background: none; border: none; cursor: pointer; }
.filter-clear-all:hover { color: var(--color-gold); }
.filter-pills { display: flex; gap: var(--space-2); overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; align-items: center; flex-wrap: wrap; }
.filter-pills::-webkit-scrollbar { display: none; }
.filter-pill-label { display: flex; align-items: center; gap: 6px; font-size: var(--text-xs); color: var(--color-text-muted); white-space: nowrap; padding-right: var(--space-3); border-right: 1px solid var(--color-border-light); margin-right: 4px; flex-shrink: 0; }
.filter-pill { flex-shrink: 0; padding: 6px 14px; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--color-border); background: transparent; color: var(--color-text-muted); cursor: pointer; transition: all 0.2s; }
.filter-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.filter-pill.active { background: var(--color-primary); color: var(--color-gold); border-color: var(--color-primary); }
.filter-row--pills { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.filter-group { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.filter-group-label { display: flex; align-items: center; gap: 0.35rem; font-size: var(--text-xs); font-weight: 600; color: var(--color-text-muted); white-space: nowrap; padding-right: 0.5rem; border-right: 1px solid var(--color-border-light); margin-right: 2px; flex-shrink: 0; }
.filter-group-divider { width: 1px; height: 24px; background: var(--color-border-light); flex-shrink: 0; margin: 0 0.5rem; }
.no-results { text-align: center; padding: var(--space-24) 0; display: none; }
.no-results.visible { display: block; }
.no-results h3 { font-family: var(--font-heading); font-size: var(--text-3xl); margin-bottom: var(--space-3); }
.no-results p { color: var(--color-text-muted); margin-bottom: var(--space-6); }

/* ─── PAGE HEROES ─── */
.page-hero { position: relative; height: 65vh; min-height: 500px; display: flex; align-items: flex-end; overflow: hidden; background: #0A2920; }
.page-hero--medium { height: 60vh; min-height: 460px; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: brightness(0.52) saturate(0.92); }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, rgba(236,188,107,0.6), transparent); z-index: 5; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,55,47,0.98) 0%, rgba(15,55,47,0.40) 45%, transparent 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 0 clamp(1.5rem, 5vw, 3.5rem) 5rem; width: 100%; max-width: 1340px; margin: 0 auto; }
.page-hero-content .label-tag { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; color: var(--color-gold); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.30em; text-transform: uppercase; }
.page-hero-content .label-tag::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--color-gold); flex-shrink: 0; }
.page-hero-content h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4.75rem); color: white; line-height: 1.04; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 1rem; }
.page-hero-content h1 em { font-style: italic; font-weight: 400; color: rgba(236,188,107,0.92); display: block; }
.page-hero-content p { font-size: clamp(0.9375rem, 1.4vw, 1.0625rem); color: rgba(255,255,255,0.72); font-weight: 300; max-width: 520px; line-height: 1.75; }

/* ─── PAGE STATS ─── */
.page-stats { padding: 2.5rem 0; background: white; border-bottom: 1px solid rgba(0,0,0,0.06); }
.page-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; max-width: 1340px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,3.5rem); }
.page-stat { text-align: center; }
.page-stat-icon { display: flex; justify-content: center; margin-bottom: 0.5rem; color: var(--color-gold); }
.page-stat-num { font-family: var(--font-heading); font-size: clamp(2rem,3.2vw,2.75rem); font-weight: 700; color: var(--color-primary); line-height: 1; margin-bottom: 0.35rem; letter-spacing: -0.02em; }
.page-stat-label { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-text-muted); }

/* ─── EXPERIENCE TEASER GRID ─── */
.experience-teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.exp-teaser-card { position: relative; height: 380px; overflow: hidden; cursor: pointer; display: block; }
.exp-teaser-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.exp-teaser-card:hover img { transform: scale(1.07); }
.exp-teaser-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 55%); transition: background 0.3s; }
.exp-teaser-card:hover .exp-teaser-overlay { background: linear-gradient(to top, rgba(10,43,36,0.92) 0%, rgba(0,0,0,0.2) 50%); }
.exp-teaser-content { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--space-5); }
.exp-teaser-content .cat { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 6px; }
.exp-teaser-content h3 { font-family: var(--font-heading); font-size: var(--text-xl); color: white; margin-bottom: 4px; }
.exp-teaser-content p { font-size: var(--text-xs); color: rgba(255,255,255,0.6); line-height: 1.5; display: none; }
.exp-teaser-card:hover .exp-teaser-content p { display: block; }

/* ─── ABOUT SPLIT ─── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.about-split .image-side { position: relative; }
.about-split .image-side img { width: 100%; height: 560px; object-fit: cover; }
.about-split .image-side .gold-accent { position: absolute; bottom: -24px; right: -24px; width: 120px; height: 120px; border: 3px solid var(--color-gold); z-index: -1; }
.about-split .text-side { padding: var(--space-8) 0; }
.about-split .text-side p { font-size: 1.0625rem; color: var(--color-text-muted); line-height: 1.8; font-weight: 300; margin-bottom: var(--space-5); }

/* ─── CTA ─── */
.cta-strip { padding: var(--space-16) 0; background: var(--color-primary); }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-8); }
.cta-strip-text .label-tag { margin-bottom: var(--space-2); }
.cta-strip-text h2 { font-family: var(--font-heading); font-size: clamp(1.75rem, 3.5vw, 2.75rem); color: white; line-height: 1.08; letter-spacing: -0.025em; }
.cta-full-section { position: relative; padding: var(--space-24) 0; overflow: hidden; }
.cta-full-section img.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.28) saturate(0.8); }
.cta-full-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,55,47,0.9) 0%, rgba(15,55,47,0.7) 50%, rgba(0,0,0,0.8) 100%); }
.cta-full-overlay::before, .cta-full-overlay::after { content: ''; position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, rgba(236,188,107,0.65), transparent); }
.cta-full-overlay::before { top: 0; }
.cta-full-overlay::after { bottom: 0; opacity: 0.5; }
.cta-full-content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; padding: 0 var(--space-6); }
.cta-full-content h2 { font-family: var(--font-heading); font-size: clamp(2.25rem, 5.5vw, 4.25rem); color: white; line-height: 1.06; letter-spacing: -0.035em; margin-bottom: var(--space-4); }
.cta-full-content h2 em { font-style: italic; color: var(--color-gold); }
.cta-full-content p { font-size: var(--text-lg); color: rgba(255,255,255,0.65); font-weight: 300; line-height: 1.7; margin-bottom: var(--space-10); }
.cta-full-content .actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-4); }
.cta-full-content .tagline { margin-top: var(--space-12); font-family: var(--font-heading); font-style: italic; font-size: var(--text-sm); color: rgba(255,255,255,0.28); letter-spacing: 0.05em; }

/* ─── DESTINATION CARD ─── */
.destination-card { background: white; border: 1px solid var(--color-border-light); overflow: hidden; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); display: flex; flex-direction: column; }
.destination-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(236,188,107,0.4); }
.destination-card-image { height: 260px; position: relative; overflow: hidden; }
.destination-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.destination-card:hover .destination-card-image img { transform: scale(1.05); }
.destination-card-image .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%); }
.destination-card-image .must-visit { position: absolute; top: var(--space-4); right: var(--space-4); background: var(--color-gold); color: var(--color-primary); font-size: 9px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; }
.destination-card-image .region-label { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--space-4); }
.destination-card-image .region-label p { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-gold); }
.destination-card-body { padding: var(--space-8) var(--space-6); flex: 1; display: flex; flex-direction: column; }
.destination-card-body .acc { width: 24px; height: 2px; background: var(--color-gold); margin-bottom: var(--space-3); border-radius: 2px; transition: width 0.3s; }
.destination-card:hover .destination-card-body .acc { width: 40px; }
.destination-card-body h2 { font-family: var(--font-heading); font-size: var(--text-lg); margin-bottom: 4px; line-height: 1.2; }
.destination-card-body .tagline { font-size: var(--text-xs); color: var(--color-gold); font-style: italic; margin-bottom: var(--space-3); }
.destination-card-body p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; font-weight: 300; margin-bottom: var(--space-4); flex: 1; }
.destination-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-4); border-top: 1px solid var(--color-border-light); }
.destination-card-footer .best-time p:first-child { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-text-muted); font-weight: 600; margin-bottom: 2px; }
.destination-card-footer .best-time p:last-child { font-size: var(--text-xs); font-weight: 600; color: var(--color-primary); }
.destination-card-trips { font-size: var(--text-xs); font-weight: 700; color: var(--color-primary); display: block; }
.destination-card-price { font-size: 0.6875rem; color: var(--color-gold); font-weight: 600; display: block; margin-top: 2px; }
.destination-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }

/* ─── SINGLE DESTINATION — full-width about content ─── */
.dest-about-content { max-width: 800px; margin: 0 auto; }

/* ─── TEAM/VALUES GRID ─── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.team-grid--4col { grid-template-columns: repeat(4, 1fr); }
.team-card { text-align: center; padding: var(--space-8) var(--space-6); background: white; border: 1px solid var(--color-border-light); }
.team-card-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--color-primary-light); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-4); }
.team-card-icon svg { color: var(--color-primary); }
.section--primary .team-card-icon svg { color: var(--color-gold); }
.team-card h3 { font-family: var(--font-heading); font-size: var(--text-xl); margin-bottom: var(--space-3); }
.team-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; }

/* ─── CONTACT ─── */
.contact-cards-section { padding-top: var(--space-16); padding-bottom: var(--space-10); }
.contact-top-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.ctc-card { border: 1px solid var(--color-border-light); background: var(--color-bg-alt); padding: var(--space-8); transition: border-color 0.3s, box-shadow 0.3s; }
.ctc-card:hover { border-color: rgba(236,188,107,0.5); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.ctc-icon { width: 40px; height: 40px; background: var(--color-primary); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-4); transition: background 0.3s; }
.ctc-card:hover .ctc-icon { background: var(--color-gold); }
.ctc-icon svg { color: var(--color-gold); transition: color 0.3s; }
.ctc-card:hover .ctc-icon svg { color: var(--color-primary); }
.ctc-bar { width: 24px; height: 2px; background: var(--color-gold); margin-bottom: var(--space-4); border-radius: 2px; transition: width 0.3s; }
.ctc-card:hover .ctc-bar { width: 40px; }
.ctc-card h3 { font-family: var(--font-heading); font-size: var(--text-lg); margin-bottom: var(--space-2); }
.ctc-primary { font-weight: 600; font-size: var(--text-sm); color: var(--color-primary); margin-bottom: var(--space-1); word-break: break-word; }
.ctc-sub { font-size: var(--text-xs); color: var(--color-text-muted); margin-bottom: var(--space-4); }
.ctc-link { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-primary); transition: color 0.2s; }
.ctc-link:hover { color: var(--color-gold); }
.contact-layout { display: grid; grid-template-columns: 1fr 420px; gap: var(--space-12); align-items: start; }
.contact-form-eyebrow { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.contact-form-eyebrow .label-line { display: block; width: 32px; height: 1px; background: var(--color-gold); }
.contact-form-wrap { background: white; padding: var(--space-10); border: 1px solid var(--color-border-light); }
.contact-form-title { font-family: var(--font-heading); font-size: var(--text-3xl); margin-bottom: var(--space-8); line-height: 1.2; }
.contact-form-title em { font-style: italic; font-weight: 400; color: var(--color-primary); }
.form-group { margin-bottom: var(--space-5); }
.form-group label { display: block; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: var(--space-2); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--color-border); font-size: var(--text-base); outline: none; background: white; color: var(--color-text); transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-light); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-submit { width: 100%; padding: 16px; background: var(--color-primary); color: white; font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.25s; }
.form-submit:hover { background: var(--color-gold); color: var(--color-primary); }
.form-success { display: none; text-align: center; padding: var(--space-12) var(--space-10); border: 1px solid rgba(236,188,107,0.4); background: var(--color-bg-alt); }
.form-success.visible { display: block; }
.form-success-icon { margin: 0 auto var(--space-4); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; color: var(--color-gold); }
.form-success h3 { font-family: var(--font-heading); font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.form-success p { color: var(--color-text-muted); font-size: var(--text-sm); max-width: 360px; margin: 0 auto var(--space-6); }
.form-success-reset { background: none; border: none; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-primary); cursor: pointer; transition: color 0.2s; }
.form-success-reset:hover { color: var(--color-gold); }
.contact-info-card { display: flex; gap: var(--space-5); padding: var(--space-6); background: white; border: 1px solid var(--color-border-light); margin-bottom: var(--space-4); transition: all 0.25s; }
.contact-info-card:hover { border-color: rgba(236,188,107,0.4); transform: translateX(3px); }
.contact-info-card .icon-wrap { width: 48px; height: 48px; background: var(--color-primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .icon-wrap svg { color: var(--color-primary); }
.contact-info-card .text p:first-child { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 4px; }
.contact-info-card .text a, .contact-info-card .text p:last-child { font-size: var(--text-base); color: var(--color-text); font-weight: 500; line-height: 1.5; }
.contact-socials { padding: var(--space-6); background: var(--color-primary); }
.contact-socials p { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: var(--space-4); }
.social-links { display: flex; gap: var(--space-3); }
.social-link { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); transition: all 0.25s; }
.social-link:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-primary); }

/* ─── FOOTER ─── */
.site-footer { background: var(--color-dark); padding: var(--space-16) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-10); padding-bottom: var(--space-12); border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand img { height: 122px; width: auto; margin-bottom: var(--space-4); }
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: var(--space-6); max-width: 260px; }
.footer-social { display: flex; gap: var(--space-3); }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); transition: all 0.25s; }
.footer-social a:hover { border-color: var(--color-gold); color: var(--color-gold); background: rgba(236,188,107,0.08); }
.footer-col h4 { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: var(--space-5); }
.footer-col ul li { margin-bottom: var(--space-3); }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: var(--text-sm); display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--color-gold); }
.footer-col .contact-line { display: flex; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-4); }
.footer-col .contact-line svg { color: var(--color-gold); margin-top: 3px; flex-shrink: 0; }
.footer-col .contact-line a, .footer-col .contact-line span { color: rgba(255,255,255,0.55); font-size: var(--text-sm); line-height: 1.5; transition: color 0.2s; }
.footer-col .contact-line a:hover { color: var(--color-gold); }
.newsletter-form { display: flex; }
.newsletter-form input { flex: 1; padding: 10px 14px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-right: none; color: white; font-size: var(--text-sm); outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button { padding: 10px 18px; background: var(--color-gold); color: var(--color-primary); font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; }
.newsletter-form button:hover { background: var(--color-gold-dark); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); padding: var(--space-6) 0; font-size: var(--text-xs); color: rgba(255,255,255,0.3); }
.footer-bottom .tagline { font-family: var(--font-heading); font-style: italic; font-size: var(--text-sm); color: rgba(255,255,255,0.38); }
.footer-bottom-links { display: flex; gap: var(--space-6); }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ─── BACK TO TOP ─── */
.back-to-top { position: fixed; bottom: var(--space-6); right: var(--space-6); z-index: 50; width: 44px; height: 44px; background: var(--color-primary); border: 1px solid rgba(236,188,107,0.45); color: var(--color-gold); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.25s; box-shadow: var(--shadow-md); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-gold); color: var(--color-primary); border-color: var(--color-gold); }

/* ─── FADE-UP ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.slide-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.slide-left.visible { opacity: 1; transform: translateX(0); }
.stagger-children > * { opacity: 0; transform: translateY(22px); transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.00s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.07s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.14s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.21s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.28s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.42s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.49s; }
@keyframes counterPop { 0% { transform: scale(1); } 50% { transform: scale(1.08); } 100% { transform: scale(1); } }
.counter-done { animation: counterPop 0.4s ease; }
@keyframes goldGlow { 0%,100% { text-shadow: 0 0 0px rgba(236,188,107,0); } 50% { text-shadow: 0 0 18px rgba(236,188,107,0.55); } }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-white { color: white; }
.text-muted { color: var(--color-text-muted); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: var(--space-4); }
.hidden { display: none !important; }

/* ─── ENHANCED FILTER TRANSITIONS ─── */
@keyframes filterCardIn {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.filter-item {
  animation: filterCardIn 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
.filter-item.hidden-filter {
  display: none;
}

/* Lazy-loaded image fade-in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}
img[loading="lazy"].loaded {
  opacity: 1;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light, #f0d68a));
  z-index: 10000;
  pointer-events: none;
}

/* Enhanced back-to-top entrance */
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: backToTopIn 0.4s cubic-bezier(0.22,1,0.36,1);
}
@keyframes backToTopIn {
  from { opacity: 0; transform: translateY(16px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Filter pill press feedback */
.filter-pill:active,
[data-duration]:active,
[data-difficulty]:active,
[data-dest]:active,
[data-filter]:active,
[data-expfilter]:active {
  transform: scale(0.95);
}

/* ─── WHATSAPP FLOATING BUTTON ─── */
.whatsapp-float { position: fixed; bottom: var(--space-6); left: var(--space-6); z-index: 50; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: all 0.3s ease; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.5); background: #20BA5C; }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.whatsapp-float::after { content: 'Chat with us'; position: absolute; left: calc(100% + 10px); background: #333; color: white; padding: 6px 12px; border-radius: 6px; font-size: 0.6875rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.whatsapp-float:hover::after { opacity: 1; }

/* ─── ENHANCED CARD HOVER GLOW ─── */
.popular-pkg-card:hover { box-shadow: 0 12px 40px rgba(236,188,107,0.15), 0 4px 12px rgba(0,0,0,0.08); }
.dest-big-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.exp-teaser-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.25); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .experience-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
@media (max-width: 900px) {
  .nav-inner { height: 80px; padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-payment-link { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
  .about-split { grid-template-columns: 1fr; gap: var(--space-8); }
  .about-split .image-side img { height: 320px; width: 100%; }
  .about-split .image-side .gold-accent { bottom: -12px; right: -12px; width: 80px; height: 80px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid--4col { grid-template-columns: repeat(2, 1fr); }
  .contact-top-cards { grid-template-columns: 1fr; }
  .filter-row--pills { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .filter-group-divider { display: none; }
  .filter-group { flex-wrap: wrap; gap: 0.4rem; }
  .hero-panel { padding: 5rem 1.5rem 4rem; }
  .hero-progress-bars { bottom: 1.5rem; }
  .hero-actions { gap: 0.625rem; }
  .advice-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .advice-page-wrap { grid-template-columns: 1fr; }
  .advice-sidebar { position: static; }
  .tour-detail-wrap { grid-template-columns: 1fr; }
  .tour-detail-sidebar { position: static; }
  .dest-big-grid { grid-template-columns: repeat(2, 1fr); }
  .popular-pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .whatsapp-float::after { display: none; }
  /* Mobile menu improvements */
  .mobile-menu-logo { padding: 2rem 1.5rem 0.75rem; }
  .mobile-menu-logo img { height: 80px; }
  .mobile-menu-links { padding: 1rem 1.5rem 2rem; }
  .mobile-menu-links a { padding: 0.85rem 0; font-size: 0.95rem; }
}
@media (max-width: 640px) {
  /* Container padding */
  .container { padding: 0 1.25rem; }
  /* Hero */
  .hero { min-height: 520px; }
  .hero-title { font-size: clamp(1.75rem, 7vw, 2.4rem); letter-spacing: -0.03em; }
  .hero-desc { font-size: 0.875rem; margin-bottom: 1.75rem; max-width: 100%; }
  .hero-panel { padding: 5rem 1.25rem 3.5rem; }
  .hero-progress-bars { bottom: 1.25rem; }
  .hero-discover { display: none !important; }
  .hero-actions { flex-direction: column; width: 100%; gap: 0.5rem; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; padding: 0.875rem 1.5rem; }
  .hero-arrow { width: 38px; height: 38px; }
  .hero-arrow--prev { left: 0.75rem; }
  .hero-arrow--next { right: 0.75rem; }
  .hero-label .text { font-size: 0.6rem; letter-spacing: 0.22em; }
  /* Page heroes */
  .page-hero { height: 340px; min-height: 340px; }
  .page-hero--medium { height: 300px; min-height: 300px; }
  .page-hero-content { padding-bottom: 2.5rem; padding-left: 1.25rem; padding-right: 1.25rem; }
  .page-hero-content h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .page-hero-content p { font-size: 0.875rem; }
  /* Sections */
  .section { padding: var(--space-10) 0; }
  .section-header { margin-bottom: var(--space-8); }
  .section-heading { font-size: clamp(1.6rem, 6vw, 2.25rem); }
  .section-subtext { font-size: 0.875rem; }
  /* Grids */
  .advice-hub-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .cards-grid-4 { grid-template-columns: 1fr; gap: var(--space-5); }
  .experience-teaser-grid { grid-template-columns: 1fr; }
  .exp-teaser-card { height: 280px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .page-stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .page-stat-num { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .dest-big-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .dest-big-card { height: 220px; }
  .popular-pkg-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .popular-pkg-img { height: 160px; }
  /* Contact */
  .contact-top-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: var(--space-6) var(--space-5); }
  .contact-layout { gap: var(--space-8); }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-brand img { height: 88px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: var(--space-2); }
  /* Team/Values */
  .team-grid { grid-template-columns: 1fr; }
  .team-grid--4col { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .team-card { padding: var(--space-6) var(--space-4); }
  /* Filter bar */
  .filter-bar-inner { gap: 0.5rem; }
  .filter-row { flex-wrap: wrap; gap: 0.4rem; }
  .filter-pill { padding: 5px 10px; font-size: 0.6rem; }
  .filter-search-wrap { max-width: 100%; }
  .includes-grid { grid-template-columns: 1fr; }
  /* Cards */
  .card-body { padding: var(--space-5) var(--space-4); }
  .card-footer { padding-top: var(--space-3); flex-direction: column; gap: var(--space-3); align-items: flex-start; }
  .card-link { width: 100%; justify-content: center; font-size: 9px; padding: 8px 14px; }
  .card-experiences { margin-bottom: var(--space-2); margin-top: var(--space-1); }
  .card-title { font-size: 1rem; margin-bottom: 4px; }
  .card-desc { font-size: 0.8125rem; margin-bottom: var(--space-3); line-height: 1.65; }
  .card-tagline { margin-bottom: var(--space-1); font-size: 0.65rem; }
  .card-price { font-size: 1.1rem; }
  /* Stats */
  .stat-item .num { font-size: 2rem; }
  .stat-item .label { font-size: 0.6rem; }
  .stats-bar { padding: var(--space-8) 0; }
  /* Buttons */
  .btn { padding: 0.8rem 1.25rem; font-size: 0.6rem; }
  /* About split */
  .about-split { gap: var(--space-6); }
  .about-split .text-side { padding: 0; }
  .about-split .text-side p { font-size: 0.9375rem; }
  /* CTA */
  .cta-full-content h2 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .cta-full-content p { font-size: 0.9375rem; }
  .cta-full-content .actions { flex-direction: column; gap: 0.5rem; }
  .cta-full-content .actions .btn { width: 100%; }
  /* WhatsApp */
  .whatsapp-float { width: 48px; height: 48px; bottom: var(--space-4); left: var(--space-4); }
  .whatsapp-float svg { width: 22px; height: 22px; }
  /* Back to top */
  .back-to-top { width: 38px; height: 38px; bottom: var(--space-4); right: var(--space-4); }
  /* Safari search */
  .safari-search-field { padding: 0.75rem 1rem; }
}

/* ─── SAFARI SEARCH BAR (standalone block) ─── */
.safari-search-bar { background: var(--color-primary); border-bottom: 2px solid rgba(236,188,107,0.25); }
.safari-search-bar-inner { max-width: 1340px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3.5rem); display: flex; align-items: stretch; gap: 0; min-height: 72px; }
.safari-search-label { display: flex; align-items: center; gap: 0.6rem; font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-gold); white-space: nowrap; padding-right: 2rem; border-right: 1px solid rgba(255,255,255,0.1); margin-right: 0; flex-shrink: 0; }
.safari-search-form { display: flex; align-items: stretch; flex: 1; }
.safari-search-field { display: flex; flex-direction: column; justify-content: center; padding: 0.75rem 1.5rem; flex: 1; border-right: 1px solid rgba(255,255,255,0.08); cursor: pointer; transition: background 0.2s; }
.safari-search-field:hover { background: rgba(255,255,255,0.04); }
.safari-search-field label { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; cursor: pointer; }
.safari-search-field select { border: none; outline: none; background: transparent; color: white; font-size: var(--text-sm); font-weight: 600; font-family: var(--font-body); cursor: pointer; padding: 0; appearance: none; -webkit-appearance: none; }
.safari-search-field select option { background: #0F372F; color: white; }
.safari-search-btn { display: flex; align-items: center; gap: 8px; padding: 0 2.5rem; background: var(--color-gold); color: var(--color-primary); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.25s; white-space: nowrap; font-family: var(--font-body); flex-shrink: 0; }
.safari-search-btn:hover { background: var(--color-gold-dark); }
@media (max-width: 900px) {
  .safari-search-label { display: none; }
  .safari-search-bar-inner { padding: 0; flex-direction: column; min-height: auto; }
  .safari-search-form { flex-wrap: wrap; }
  .safari-search-field { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .safari-search-field:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .safari-search-field:nth-child(even) { border-right: none; }
  .safari-search-btn { width: 100%; justify-content: center; padding: 1rem; font-size: 0.625rem; }
}
@media (max-width: 640px) {
  .safari-search-field { flex: 0 0 50%; padding: 0.875rem 1rem; }
}

/* ─── DESTINATION BIG CARDS ─── */
.dest-big-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.dest-big-card { position: relative; height: 380px; overflow: hidden; display: block; cursor: pointer; }
.dest-big-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.dest-big-card:hover img { transform: scale(1.06); }
.dest-big-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,43,36,0.95) 0%, rgba(10,43,36,0.2) 55%, transparent 100%); transition: background 0.3s; }
.dest-big-card:hover .dest-big-overlay { background: linear-gradient(to top, rgba(10,43,36,0.98) 0%, rgba(10,43,36,0.4) 65%, transparent 100%); }
.dest-big-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.75rem 1.5rem; }
.dest-big-count { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 0.5rem; }
.dest-big-content h3 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: white; margin-bottom: 0.5rem; line-height: 1.2; }
.dest-big-content p { font-size: var(--text-xs); color: rgba(255,255,255,0.65); line-height: 1.6; opacity: 0; transform: translateY(8px); transition: all 0.3s ease; }
.dest-big-card:hover .dest-big-content p { opacity: 1; transform: translateY(0); }

/* ─── POPULAR PACKAGES GRID ─── */
.popular-pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.popular-pkg-card { display: flex; flex-direction: column; background: white; border: 1px solid var(--color-border-light); overflow: hidden; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); text-decoration: none; color: inherit; }
.popular-pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(236,188,107,0.4); }
.popular-pkg-img { height: 180px; overflow: hidden; flex-shrink: 0; }
.popular-pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.popular-pkg-card:hover .popular-pkg-img img { transform: scale(1.05); }
.popular-pkg-body { padding: 1rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.popular-pkg-days { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 0.4rem; }
.popular-pkg-title { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 600; line-height: 1.35; color: var(--color-text); flex: 1; margin-bottom: 0.6rem; }
.popular-pkg-price { font-size: var(--text-sm); color: var(--color-text-muted); }
.popular-pkg-price strong { color: var(--color-primary); font-weight: 700; }
.special-offer-badge { display: inline-block; padding: 2px 8px; background: var(--color-gold); color: var(--color-primary); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-left: 6px; vertical-align: middle; }

/* ─── STAT ICON ─── */
.stat-icon { display: flex; justify-content: center; margin-bottom: 0.75rem; color: var(--color-gold); }

/* ─── RESPONSIVE: HERO SEARCH ─── */
@media (max-width: 900px) {
  .hero-search-form { grid-template-columns: 1fr 1fr; }
  .hero-search-btn { grid-column: 1 / -1; justify-content: center; }
}
@media (max-width: 640px) {
  .hero-search-form { grid-template-columns: 1fr 1fr; }
  .hero-search-field { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); padding: 0.75rem 1rem; }
  .hero-search-field:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.08); }
  .hero-search-btn { grid-column: 1 / -1; justify-content: center; padding: 1rem; }
  .hero-search-inner { padding-bottom: 2rem; }
  .hero-search-title { display: none; }
}

/* ─── 400px AND BELOW (very small phones) ─── */
@media (max-width: 400px) {
  .hero-title { font-size: 1.6rem; }
  .hero-desc { font-size: 0.8125rem; }
  .section-heading { font-size: 1.5rem; }
  .team-grid--4col { grid-template-columns: 1fr; }
  .dest-big-card { height: 200px; }
  .popular-pkg-body { padding: 0.75rem 1rem 1rem; }
  .popular-pkg-title { font-size: 0.8125rem; }
  .nav-logo-img { height: 80px; }
}

/* ─── WORDPRESS-SPECIFIC ADDITIONS ─── */

/* Breadcrumb */
.breadcrumb-bar { background: var(--color-surface); border-bottom: 1px solid var(--color-border-light); padding: 0.75rem 0; }
.breadcrumb { display: flex; gap: 0.5rem; flex-wrap: wrap; font-size: var(--text-xs); color: var(--color-text-muted); }
.breadcrumb a { color: var(--color-primary); }
.breadcrumb a:hover { color: var(--color-gold); }

/* Conservation stat boxes */
.conservation-stat-box { flex: 1; min-width: 140px; padding: 1.25rem; background: var(--color-surface); border: 1px solid var(--color-border-light); }
.conservation-stat-num { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--color-primary); }
.conservation-stat-label { font-size: var(--text-xs); color: var(--color-text-muted); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }

/* Form section labels */
.form-section-label { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 1rem; margin-top: 0.5rem; }
.form-notice { background: rgba(236,188,107,0.06); border: 1px solid rgba(236,188,107,0.18); padding: 1rem 1.25rem; margin-bottom: 1.5rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.form-notice p { font-size: 0.6875rem; color: var(--color-text-muted); line-height: 1.6; margin: 0; }
.form-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: var(--text-sm); }

/* How it works strip (plan-your-safari) */
.how-it-works-strip { background: var(--color-primary); border-bottom: 1px solid rgba(236,188,107,0.15); }
.how-it-works-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; padding: 2rem 0; }
.how-it-works-step { display: flex; align-items: flex-start; gap: 1rem; padding: 0 2rem; border-right: 1px solid rgba(255,255,255,0.08); }
.how-it-works-step:last-child { border-right: none; }
.how-step-num { width: 36px; height: 36px; border: 1.5px solid var(--color-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.75rem; font-weight: 800; color: var(--color-gold); }
.how-step-title { font-size: 0.6875rem; font-weight: 700; color: white; margin-bottom: 3px; }
.how-step-desc { font-size: 0.625rem; color: rgba(255,255,255,.5); line-height: 1.5; }

/* Contact form + sidebar layout — uses source .contact-layout at line 473 */

/* Sidebar cards */
.sidebar-response-time { background: var(--color-gold); padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1rem; }
.sidebar-response-time svg { color: var(--color-primary); flex-shrink: 0; }
.sidebar-response-label { font-size: 0.5625rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-primary); opacity: 0.7; margin-bottom: 2px; }
.sidebar-response-value { font-size: 1.1rem; font-weight: 800; color: var(--color-primary); font-family: var(--font-heading); }

.sidebar-why-book { background: var(--color-primary); padding: 2rem; margin-top: 1.5rem; }
.sidebar-why-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.sidebar-why-list { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-why-item { display: flex; align-items: flex-start; gap: .75rem; }
.sidebar-why-item svg { color: var(--color-gold); flex-shrink: 0; margin-top: 2px; }
.sidebar-why-item span { color: rgba(255,255,255,.7); font-size: var(--text-sm); }

.sidebar-popular-trips { margin-top: 1.5rem; }
.sidebar-popular-label { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 1rem; }
.sidebar-trip-list { display: flex; flex-direction: column; gap: 0.75rem; }
.sidebar-trip-item { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1rem; background: var(--color-surface); color: var(--color-text); font-size: var(--text-sm); font-weight: 600; transition: background 0.2s; text-decoration: none; }
.sidebar-trip-item:hover { background: #e5e0d8; }
.sidebar-trip-price { color: var(--color-gold); font-weight: 700; font-size: 0.75rem; }
.sidebar-all-trips-link { display: block; text-align: center; padding: 0.75rem; border: 1px solid rgba(15,55,47,0.2); color: var(--color-primary); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.5rem; transition: background 0.2s, color 0.2s; text-decoration: none; }
.sidebar-all-trips-link:hover { background: var(--color-primary); color: white; }

/* Advice sidebar — additional styles */
.advice-more-guides { margin-bottom: 1.5rem; }
.advice-more-guides h4 { font-size: var(--text-sm); font-weight: 700; margin-bottom: 0.75rem; color: var(--color-primary); }
.advice-more-guides ul { list-style: none; padding: 0; }
.advice-more-guides li { border-bottom: 1px solid var(--color-border-light); }
.advice-more-guides a { display: block; padding: 0.6rem 0; font-size: var(--text-sm); color: var(--color-text); transition: color 0.2s; }
.advice-more-guides a:hover { color: var(--color-gold); }
.advice-sidebar-cta { background: var(--color-primary); padding: 2rem; color: white; }
.advice-sidebar-cta h4 { color: white; margin-bottom: 0.5rem; }
.advice-sidebar-cta p { color: rgba(255,255,255,.6); font-size: var(--text-sm); margin-bottom: 1.25rem; }

/* Trip booking card (used in single templates) */
.trip-booking-card { background: white; border: 1px solid var(--color-border-light); padding: 2rem; }
.trip-booking-card h4 { font-size: var(--text-lg); font-weight: 700; margin-bottom: 1.25rem; color: var(--color-primary); }

/* Highlights list */
.highlights-list { list-style: none; padding: 0; }
.highlights-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.5rem 0; font-size: var(--text-sm); color: var(--color-text); }

/* Responsive overrides */
@media (max-width: 900px) {
  .how-it-works-grid { grid-template-columns: 1fr; gap: 1rem; }
  .how-it-works-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1rem 0; }
  .how-it-works-step:last-child { border-bottom: none; }
  .dest-big-grid { grid-template-columns: repeat(2, 1fr); }
  .popular-pkg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .dest-big-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .dest-big-card { height: 220px; }
  .popular-pkg-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .popular-pkg-img { height: 160px; }
}
@media (max-width: 400px) {
  .dest-big-card { height: 200px; }
  .popular-pkg-body { padding: 0.75rem 1rem 1rem; }
  .popular-pkg-title { font-size: 0.8125rem; }
}

/* ─── REGION FILTER TABS ─── */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-6);
}

.filter-tab {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-tab:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.filter-tab.active {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* ─── QUICK FACT BADGE ─── */
.quick-fact {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  padding: var(--space-2) var(--space-3);
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.destination-card:hover .quick-fact {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TOAST NOTIFICATIONS ─── */
.toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-white);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 300px;
  max-width: 400px;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: auto;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success {
  border-left-color: #10B981;
}

.toast.error {
  border-left-color: #EF4444;
}

.toast-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.toast.success .toast-icon {
  background: #D1FAE5;
  color: #059669;
}

.toast.error .toast-icon {
  background: #FEE2E2;
  color: #DC2626;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: 2px;
}

.toast-message {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.toast-close {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.toast-close:hover {
  color: var(--color-text);
}

@media (max-width: 640px) {
  .toast-container {
    top: auto;
    bottom: 20px;
    right: 10px;
    left: 10px;
  }
  
  .toast {
    min-width: auto;
    max-width: none;
    width: 100%;
  }
}
