/* =========================================================================
   Bon Voyage — website.css (FINALIZED)
   Updated: 2025-09-20

   What changed (high-level):
   - Brand tokens aligned to 
    guide (green #396111, sun #f9bb06, deep gray #3c3c3c)
   - Optional Raleway headings imported; body stays system-ui for performance
   - 
    stays transparent over hero video; menu links yellow; no glow
   - Tiny matte plate behind the 
    (optional) for legibility on bright video frames
   - Book/Contact popups kept lean, consistent with tokens
   ========================================================================= */

/* Web fonts (optional) — Raleway for headings/logo harmony */
/* If you prefer no external calls, comment this out. */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500;600;700;800&display=swap');

/* Base reset */
* { margin:0; padding:0; box-sizing:border-box; }
html, body { height:100%; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Ubuntu, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------------- Theme & tokens ---------------- */
:root{
  /* === Bon Voyage Uganda brand — from style guide === */
  --brand:        #396111;  /* primary green */
  --brand-2:      #2d4e0e;  /* deeper green for hover/gradients */
  --
  -accent:  #f9bb06;  /* sun yellow (
  bar links) */
  --accent:       #F1781E;  /* warm orange accent retained */

  --text:  #222; 
  --muted: #667085;
  --bg:    #f8f8f8; 
  --card:  #fff; 
  --line:  #eaeaea;
  --overlay: rgba(0,0,0,.62);
  --star-on:  #ffb400; 
  --star-off: #d7dbe0;
  --shadow: 0 8px 24px rgba(0,0,0,.10);

  /* Size knobs */
 
 : 60px; /* desktop logo height */
}
body.theme-dark{
  --bg:#0e1113; --card:#14181b; --text:#e9eef2; --muted:#b7c0c7; --line:#22292f;
  --overlay:rgba(0,0,0,.55); --shadow:0 10px 28px rgba(0,0,0,.35);
}

/* Headings use Raleway for brand feel; body remains system-ui */
h1, h2, h3, .display, .brand-head { font-family: 'Raleway', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

/* Links never underlined */
a, a:visited,
.btn, .btn:link, .btn:visited,
.btn:hover, .btn:focus { text-decoration:none !important; }

/* =========================================================
   HERO + (TRANSPARENT) 
   
   ========================================================= */
.hero-video-container{ position:relative; height:100vh; overflow:hidden; }
.hero-video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero-overlay{
  position:absolute; inset:0; background:rgba(0,0,0,.48); color:#fff;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:20px; gap:8px;
}
.hero-overlay h1{ font-size:3rem; }
.hero-overlay p{ max-width:640px; font-size:1.1rem; }

/* Clear nav (no bar); centered links */
.nav-glass{
  position:absolute; top:18px; left:50%; transform:translateX(-50%);
  width:min(1180px, calc(100% - 24px));
  z-index:10;
  background:transparent; border:0; padding:8px 12px; border-radius:16px;
}
.nav-row{ display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:10px; }

/* Logo: subtle readability — optional matte plate */
.nav-logo{ position:relative; display:inline-block; }
.nav-logo::before{
  content:""; position:absolute; inset:8px 6px; border-radius:12px;
  background:rgba(0,0,0,.25); filter:blur(6px); opacity:.22; /* very gentle */
  transform:translateZ(0); pointer-events:none;
}
.nav-logo img{
  height: var(
  );
  width: auto;
  display: block;
  filter: none; /* no glow/shadow */
}
/* Add .no-plate on .nav-logo to disable backing in pages where it isn't needed */
.nav-logo.no-plate::before{ display:none; }

/* Burger + links */
.nav-burger{
  display:none; background:none; border:0; color:#fff; font-size:22px; padding:6px 8px; cursor:pointer;
}
.nav-links{
  list-style:none; margin:0; padding:0;
  display:flex; justify-content:center; gap:24px;
}
.nav-links a{
  color:var(--logo-accent);
  font-weight:800; letter-spacing:.2px; padding:8px 6px; border-radius:6px;
  text-shadow:none; transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible{
  color:#fff; border-bottom:2px solid var(--logo-accent); outline:none;
}






/* =========================================================
   TOP BAR ABOVE NAV
   ========================================================= */
.top-bar{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:30;
  font-size:0.86rem;
  color:#fff;
  background:linear-gradient(90deg,rgba(0,0,0,.85),rgba(0,0,0,.55));
}

.top-bar-inner{
  max-width:1180px;
  margin:0 auto;
  padding:6px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.tb-left,
.tb-right{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.tb-item{
  display:inline-flex;
  align-items:center;
  gap:6px;
  opacity:.95;
}

.tb-item i{ font-size:.9rem; }

/* Language selector */


/* Request a Call button */
.tb-request{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 14px;
  border-radius:999px;
  border:1px solid var(--logo-accent);
  color:var(--logo-accent);
  font-weight:700;
  font-size:.88rem;
  background:rgba(0,0,0,.28);
  text-decoration:none !important;
  white-space:nowrap;
}
.tb-request:hover,
.tb-request:focus-visible{
  background:var(--logo-accent);
  color:#000;
}

/* Smaller / cleaner on phones */
@media (max-width:768px){
  
  -inner{
    padding:5px 10px;
    gap:8px;
  }
  .tb-email{ display:none; } /* hide email to keep it clean */
  .tb-left{ font-size:.8rem; gap:10px; }
  .tb-right{ gap:8px; }
  
  
  
  
  
  { padding:3px 8px; }
  
  {
    padding:5px 10px;
    font-size:.8rem;
  }
}























/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  --bg:var(--brand); --bg2:var(--brand-2); --txt:#fff;
  display:inline-flex; align-items:center; gap:.5rem;
  background:linear-gradient(180deg,var(--bg),var(--bg2));
  color:var(--txt); padding:10px 18px; border-radius:12px; border:0; font-weight:600;
  box-shadow:0 8px 18px rgba(57,97,17,.25);
  transition:.15s transform,.2s box-shadow;
}
.btn:hover,.btn:focus-visible{ transform:translateY(-1px); box-shadow:0 12px 22px rgba(57,97,17,.35); outline:none; }
.btn.small{ padding:6px 12px; font-size:14px; }
.btn.outline{ background:transparent; border:2px solid var(--brand); color:var(--brand); box-shadow:none; }
.hero-overlay .btn{ margin-top:16px; }

/* =========================================================
   SECTIONS
   ========================================================= */
.section{ padding:40px 20px; max-width:1200px; margin:auto; }
.center{ text-align:center; margin-bottom:26px; }

/* =========================================================
   SLIDERS (Tours + Reviews)
   ========================================================= */
.slider-container{ position:relative; overflow:hidden; margin:20px auto; }
.slider-track{
  display:flex; gap:20px; flex-wrap:nowrap; overflow-x:auto; scroll-snap-type:x mandatory;
  padding:4px 8px 24px; margin-bottom:-24px; -ms-overflow-style:none; scrollbar-width:none;
}
.slider-track::-webkit-scrollbar{ width:0; height:0; }
.slider-btn{
  position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; border-radius:50%; border:0;
  background:rgba(0,0,0,.58); color:#fff; display:grid; place-items:center; font-size:16px; cursor:pointer; z-index:5;
  opacity:0; visibility:hidden; pointer-events:none; transition:.18s;
}
.slider-container:hover .slider-btn,
.slider-container:focus-within .slider-btn{ opacity:1; visibility:visible; pointer-events:auto; }
.slider-btn.prev{ left:8px; } .slider-btn.next{ right:8px; }
.slider-btn:hover{ transform:translateY(-50%) scale(1.06); }

/* =========================================================
   TOURS
   ========================================================= */
.tour-card{
  scroll-snap-align:start; flex:0 0 auto; width:clamp(260px,86vw,360px);
  background:var(--card); border:1px solid var(--line); border-radius:14px; box-shadow:var(--shadow);
  text-align:center; padding:14px;
}
.tour-card img{ width:100%; height:200px; object-fit:cover; border-radius:10px; }
.tour-meta{ display:flex; justify-content:space-between; margin-top:8px; font-weight:700; }

/* =========================================================
   DESTINATIONS
   ========================================================= */
.destination-section{ padding:40px 20px; background:color-mix(in oklab,var(--bg) 92%,#000 8%); }
.destination-wrapper{ display:flex; flex-wrap:wrap; gap:24px; }
.destination-list{ flex:1; min-width:250px; }
.destination-item{
  background:var(--card); border:1px solid var(--line); padding:14px; margin-bottom:10px; border-left:4px solid transparent;
  border-radius:12px; cursor:pointer; transition:.2s;
}
.destination-item.active,.destination-item:hover{
  border-left-color:var(--brand);
  background:color-mix(in oklab,var(--brand) 10%,var(--card) 90%);
}
.destination-details{
  flex:3; min-width:300px; height:420px; position:relative; border-radius:12px; overflow:hidden;
  background-size:cover; background-position:center; border:1px solid var(--line); box-shadow:var(--shadow);
}
.destination-card{
  position:absolute; inset:0; display:flex; flex-direction:column; gap:8px; padding:22px 24px 48px;
  background:linear-gradient(180deg,rgba(0,0,0,.70),rgba(0,0,0,.25) 50%,rgba(0,0,0,.72)); color:#fff;
}
.destination-card h2 .star{ color:gold; margin-left:6px; }
.stars{ color:var(--star-on); }

/* Quick-rate (site + destination) */
.quick-rate{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-top:8px; }
.qr-label{ font-weight:600; }
.qr-stars{ display:inline-flex; gap:4px; }
.qr-stars button{ all:unset; cursor:pointer; font-size:22px; line-height:1; color:var(--star-off); }
.qr-stars button.active,.qr-stars button:hover{ color:var(--star-on); }
.qr-thumb{ background:transparent; border:1px solid var(--line); border-radius:22px; padding:6px 10px; cursor:pointer; color:inherit; }
.qr-thumb[aria-pressed="true"]{ background:color-mix(in oklab,var(--brand) 15%,#fff 85%); border-color:var(--brand); color:var(--brand); }
.qr-note{ font-size:.9rem; opacity:.9; width:100%; }

/* =========================================================
   WHY EXPLORE
   ========================================================= */
.why-grid{ display:grid; gap:22px; grid-template-columns:repeat(3,minmax(0,1fr)); margin-top:12px; }
.why-card{
  background:linear-gradient(180deg,#fff 0%,#f6fff9 100%);
  border:1px solid #e7f3ee; border-radius:16px; padding:18px; box-shadow:var(--shadow);
}
body.theme-dark .why-card{ background:linear-gradient(180deg,#171b1e 0%,#14181b 100%); border-color:#20262b; }
.why-icon{ width:52px; height:52px; border-radius:14px; display:grid; place-items:center; background:#e7f6ef; color:var(--brand); margin-bottom:10px; }
.why-card ul{ list-style:none; display:grid; gap:8px; }
.why-card li{ position:relative; padding-left:22px; color:var(--text); }
.why-card li::before{
  content:"\f00c"; font-family:"Font Awesome 5 Free"; font-weight:900;
  color:var(--brand); position:absolute; left:0; top:0.1rem;
}

/* =========================================================
   SITE REVIEWS (summary + slider)
   ========================================================= */
.site-rating-card{
  display:grid; grid-template-columns:1fr auto; align-items:center; gap:16px;
  background:var(--card); border:1px solid var(--line); border-radius:14px; padding:12px 16px;
  box-shadow:var(--shadow); margin:14px 0 22px;
}
.site-badge{ font-size:28px; font-weight:800; color:var(--brand); }
#siteCount{ color:var(--muted); }
.site-rating-right{ display:flex; align-items:center; gap:10px; }

.review-card{ background:var(--card); border:1px solid var(--line); border-radius:12px; padding:12px; box-shadow:var(--shadow); }
.rc-head{ display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.rc-thumb{ width:40px; height:40px; border-radius:50%; object-fit:cover; }
.rc-meta{ display:flex; flex-direction:column; line-height:1.2; }
.rc-name{ font-weight:600; }
.rc-stars-text{ color:#f5a623; }
.rc-score{ margin-left:6px; opacity:.8; font-size:12px; }
.rc-no-rating{ opacity:.7; font-style:italic; }
.rc-date{ font-size:12px; opacity:.7; margin-top:2px; }
.rc-body{ font-size:14px; margin-top:6px; }
.rc-tag{ margin-top:6px; font-size:11px; text-transform:uppercase; letter-spacing:.05em; opacity:.6; }

/* =========================================================
   POPUPS — BASE
   ========================================================= */
.popup{
  position:fixed; inset:0; background:rgba(0,0,0,.5); display:none;
  align-items:center; justify-content:center; z-index:9999;
}
.popup.show{ display:flex; }
.popup-content{
  background:var(--card); color:var(--text); padding:22px; border-radius:16px; box-shadow:var(--shadow);
  border:1px solid var(--line); width:min(96vw,980px); max-height:92vh; overflow:auto; position:relative;
}
.close-btn{ position:absolute; top:10px; right:14px; font-size:22px; background:none; border:0; cursor:pointer; color:var(--muted); }

/* =========================
   COMMENT POPUP
   ========================= */
#comment-popup .popup-content{ width:min(92vw,560px); }
#siteCommentForm label{ display:block; margin:10px 0 4px; font-weight:600; }
#siteCommentForm input,#siteCommentForm textarea,#siteCommentForm select{
  width:100%; padding:10px 12px; border:1px solid var(--line); border-radius:10px; background:var(--card); color:var(--text);
}
#siteCommentForm textarea{ min-height:120px; resize:vertical; }

/* =========================================================
   CONTACT / INQUIRY POPUP (kept light)
   ========================================================= */
#contact-popup .popup-content{
  position:relative; width:min(92vw,760px); padding:22px 24px 26px; border-radius:14px;
  background:#fff; color:#1e2a25;
}
body.theme-dark #contact-popup .popup-content{ background:#fff; color:#1e2a25; }
#contact-popup .close-btn{ position:absolute; right:14px; top:12px; font-size:22px; line-height:1; border:0; background:transparent; color:#234; cursor:pointer; opacity:.75; }
#contact-popup .close-btn:hover{ opacity:1; }
#contact-popup .tabbar{ display:flex; gap:10px; margin:6px 0 16px; }
#contact-popup .tab{
  padding:6px 12px; border-radius:999px; border:1px solid #d6e3dc; background:#edf6f1; color:#0e3b2a; font-weight:600; cursor:pointer;
}
#contact-popup .tab.active{ background:#0f5a3b; border-color:#0f5a3b; color:#fff; }
#contact-popup .form-grid{ display:grid; grid-template-columns:1fr; gap:12px 16px; }
@media (min-width:640px){ #contact-popup .form-grid{ grid-template-columns:1fr 1fr; } }
#contact-popup .form-field label{ display:block; font-weight:600; margin-bottom:6px; }
#contact-popup input[type="text"],
#contact-popup input[type="email"],
#contact-popup input[type="tel"],
#contact-popup input[type="date"],
#contact-popup select,
#contact-popup textarea{
  width:100%; max-width:100%; padding:10px 12px; border:1.5px solid #cfdad3; border-radius:10px; background:#fff; color:#1e2a25; font:inherit;
}
#contact-popup textarea{ min-height:110px; resize:vertical; }
#contact-popup input:focus,#contact-popup select:focus,#contact-popup textarea:focus{
  outline:none; border-color:#1b6b4a; box-shadow:0 0 0 3px rgba(27,107,74,.12);
}
#contact-popup .form-actions{ margin-top:4px; }
#contact-popup .status{ margin-top:6px; font-size:.95rem; color:#0f5a3b; }
#contact-popup .status.error{ color:#b00034; }

/* =========================================================
   FOOTER + FLOATING BUTTONS
   ========================================================= */



/* === Footer: brand colors + room for floating buttons === */
:root{
  /* how much vertical space your floating buttons need */
  --float-safe: 96px; /* 55px WA + gaps */
}
@media (max-width:640px){ :root{ --float-safe: 130px; } } /* a bit more on phones */

/* keep your current structure, just ensure brand colors + padding */
footer.footer-modal,
.footer-modal{
  background: linear-gradient(180deg, var(--brand-2), var(--brand)) !important;
  color:#fff !important;
  padding:40px 20px calc(20px + var(--float-safe)) !important; /* extra bottom so nothing overlaps */
}

/* container & columns exactly as before, forced on */
.footer-container{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:30px !important;
  justify-content:space-between !important;
  align-items:flex-start !important;
  max-width:1200px !important;
  margin:auto !important;
  padding-bottom:20px !important;
  border-bottom:1px solid rgba(255,255,255,.22) !important;
}
.footer-column{ flex:1 1 220px !important; min-width:220px !important; text-align:left !important; }

/* headings + links to match tour detail */
.footer-column h4{
  margin-bottom:12px !important;
  color:var(--logo-accent) !important;
  font-family:'Raleway', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.footer-column a{ color:var(--logo-accent) !important; text-decoration:none !important; }
.footer-column a:hover,
.footer-column a:focus-visible{ color:#fff !important; }

/* contact rows + socials */
.contact-list{ list-style:none !important; padding:0 !important; margin:0 !important; display:grid !important; gap:10px !important; }
.contact-list li{ display:grid !important; grid-template-columns:22px 1fr !important; align-items:center !important; }
.contact-list i, .contact-list a{ color:var(--logo-accent) !important; }
.contact-list a:hover{ color:#fff !important; }

.social-links{ display:flex !important; gap:14px !important; align-items:center !important; }
.social-links a{
  width:36px; height:36px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.30) !important; color:#fff !important;
  transition:transform .15s, background .15s, border-color .15s;
}
.social-links a:hover{ background:rgba(255,255,255,.10) !important; border-color:#fff !important; color:var(--logo-accent) !important; }

.footer-bottom{ margin-top:18px !important; text-align:center !important; color:color-mix(in srgb,#fff 75%,var(--brand) 25%) !important; }

/* === Floaters: slide away when footer is visible (CSS side) === */
.whatsapp-float, .theme-toggle, .to-top{
  transition: transform .25s ease, opacity .25s ease;
}
body.footer-inview .whatsapp-float,
body.footer-inview .theme-toggle,
body.footer-inview .to-top{
  transform: translateY(100px);   /* move down out of the way */
  opacity:.05;                    /* fade so footer is clear */
  pointer-events:none;            /* no accidental taps over footer */
}







/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1024px){
  .destination-details{ height:380px; }
}
@media (max-width:768px){
  .hero-overlay h1{ font-size:2rem; }
  .tour-card{ width:min(92vw,360px); }

  .destination-wrapper{ flex-direction:column; gap:14px; }
  .destination-list{ order:1; display:flex; gap:10px; overflow-x:auto; padding:2px 2px 8px; -ms-overflow-style:none; scrollbar-width:none; }
  .destination-list::-webkit-scrollbar{ display:none; }
  .destination-item{ border-left:none; border-radius:999px; padding:10px 14px; margin:0; white-space:nowrap; }
  .destination-item strong{ display:none; }
  .destination-details{ order:2; width:100%; height:360px; }

  .why-grid{ grid-template-columns:1fr; }

  .slider-btn{ display:none; }

  #book-popup .form-grid{ grid-template-columns:1fr; }
  #book-popup .age-row{ flex-direction:column; align-items:flex-start; }
}

/* Reviews slider: 3 cards desktop, 2 tablet, 1 phone */
#siteReviewTrack .review-card{
  flex:0 0 calc((100% - 40px) / 3); width:calc((100% - 40px) / 3); scroll-snap-align:start;
}
@media (max-width:1024px){
  #siteReviewTrack .review-card{ flex-basis:calc((100% - 20px) / 2); width:calc((100% - 20px) / 2); }
}
@media (max-width:680px){
  #siteReviewTrack .review-card{ flex-basis:min(88vw,360px); width:min(88vw,360px); }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  .btn,.slider-btn,.qr-stars button{ transition:none; }
}

/* Utility (shared) */
.tabbar{ display:flex; gap:8px; margin:8px 0 12px; }
.tab{ border:0; background:#e9efe9; color:#0b3d2e; padding:8px 12px; border-radius:8px; cursor:pointer; }
.tab.active{ background:#0b3d2e; color:#fff; }
.tabpane{ display:none; }
.tabpane.active{ display:block; }
.status{ margin-top:8px; font-size:.95rem; }

/* -------- Optional Tour Page helpers (unchanged) -------- */
.tour-detail { max-width:1200px; margin:auto; padding:40px 20px; }
.tour-meta { color:var(--muted); margin:.4rem 0 1rem; }
.tour-gallery { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px; }
.tour-gallery img { width:260px; height:160px; object-fit:cover; border-radius:10px; border:1px solid var(--line); }
.tour-prose h3 { margin:14px 0 8px; }

/* =========================
   BOOK POPUP — final (fits your HTML)
   ========================= */
:root{
  /* quick knobs */
  --book-width: 920px;   /* overall popup width */
  --book-margin: 6vh;    /* top/bottom space from viewport */
  --field-h: 42px;       /* input/select height */
  --radius: 12px;        /* corner radius */
  --gap-x: 20px;         /* column gap */
  --gap-y: 14px;         /* row gap */
}

/* Overlay */
#book-popup{
  position: fixed; inset: 0;
  justify-content: center; align-items: flex-start;
  background: rgba(0,0,0,.45);
  z-index: 9999;
  overflow: auto;              /* page can scroll if content is tall */
  display: none;               /* default hidden */
}
#book-popup.show{ display:flex; }     /* when JS adds .show */
#book-popup.hidden{ display:none; }   /* when JS adds .hidden */

/* Panel */
#book-popup .popup-content{
  width: min(var(--book-width), 94vw);
  margin: var(--book-margin) 10px;
  background: var(--card); color: var(--text);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 22px 22px;
  box-shadow: none;             /* no glow/shadow */
  position: relative;
}

/* Close */
#book-popup .close-btn{
  position:absolute; top:10px; right:14px;
  background:none; border:0; font-size:22px;
  color: var(--muted); cursor:pointer;
}

/* Title */
#book-popup h2{ margin: 2px 0 10px; line-height:1.2; }

/* Grid */
#book-popup .form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-y) var(--gap-x);
  align-items:start;
}
#book-popup .form-field{ display:grid; gap:6px; }
#book-popup .form-field.span-2{ grid-column:1 / -1; }

/* Labels */
#book-popup .form-field > label{
  font-weight:600; font-size:.95rem;
}

/* Controls */
#book-popup .form-field input,
#book-popup .form-field select,
#book-popup .form-field textarea{
  width:100%; height:var(--field-h);
  padding:10px 12px;
  background: var(--card); color:var(--text);
  border:1px solid var(--line); border-radius:var(--radius);
  outline:none; appearance:none; -webkit-appearance:none; -moz-appearance:none;
}
#book-popup .form-field textarea{
  min-height:110px; height:auto; resize:vertical;
}
#book-popup .form-field input:focus,
#book-popup .form-field select:focus,
#book-popup .form-field textarea:focus{
  border-color: color-mix(in srgb, var(--brand) 60%, #fff 40%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent);
}

/* Make date inputs same height across browsers */
#book-popup input[type="date"]{ line-height: calc(var(--field-h) - 2px); }

/* Travellers row (your label.qty structure) */
#book-popup .age-row{
  display:flex; gap:12px; flex-wrap:wrap;
}
#book-popup .age-row .qty{
  display:inline-grid; grid-auto-flow:column; align-items:center;
  gap:8px; padding:8px 10px;
  background: var(--card); border:1px solid var(--line);
  border-radius: var(--radius);
}
#book-popup .age-row .qty > span{ font-weight:600; min-width:72px; }

/* number box */
#book-popup .age-row .qty input[type="number"]{
  width:64px; height:36px; text-align:center;
  border:1px solid var(--line); border-radius:10px; padding:6px 8px;
  background: var(--card); color:var(--text);
  -moz-appearance: textfield;
}
#book-popup .age-row .qty input[type="number"]::-webkit-outer-spin-button,
#book-popup .age-row .qty input[type="number"]::-webkit-inner-spin-button{
  -webkit-appearance:none; margin:0;
}

/* + / − buttons */
#book-popup .age-row .adjust-btn{
  width:28px; height:28px; border-radius:50%;
  display:grid; place-items:center;
  border:0; cursor:pointer; line-height:1;
  background: var(--brand); color:#fff; font-weight:700;
}
#book-popup .age-row .adjust-btn:hover{ filter:brightness(1.05); }

/* Submit row */
#book-popup .form-actions{ margin-top:6px; }
#book-popup .form-actions .btn{ padding:10px 18px; }

/* Responsive: stack to one column */
@media (max-width: 860px){
  #book-popup .popup-content{ width:min(96vw, 720px); margin: 5vh 10px; }
  #book-popup .form-grid{ grid-template-columns:1fr; }
}

/* BOOK POPUP — stepper UI (scoped) */
#book-popup .wizard-steps{
  list-style:none; display:grid; grid-template-columns:repeat(3,1fr);
  gap:10px; margin:6px 0 14px; padding:0;
}
#book-popup .wizard-steps li{
  display:flex; align-items:center; gap:8px;
  padding:10px 12px; border:1px solid var(--line); border-radius:10px;
  background:var(--card); color:var(--text); font-weight:700;
}
#book-popup .wizard-steps li span{
  display:inline-grid; place-items:center; width:24px; height:24px; border-radius:50%;
  background:#eaeaea; font-weight:800;
}
#book-popup .wizard-steps li.on{
  border-color:var(--brand);
  background:color-mix(in srgb, var(--brand) 10%, #fff 90%);
}
#book-popup .wizard-steps li.on span{ background:var(--brand); color:#fff; }

/* steps */
#book-popup .wizard-step{ display:none; border:0; padding:0; margin:0; }
#book-popup .wizard-step.on{
  display:grid; grid-template-columns:1fr 1fr; gap:14px 16px;
}
#book-popup .wizard-step .span-2{ grid-column:1 / -1; }

#book-popup .wizard-actions{
  grid-column:1 / -1; display:flex; gap:10px; justify-content:flex-end; margin-top:4px;
}

/* responsive stack */
@media (max-width:760px){
  #book-popup .wizard-step.on{ grid-template-columns:1fr; }
}

/* Book popup – inline status message */
#book-popup .status{
  margin-top:8px;
  padding:10px 12px;
  font-weight:600;
  border:1px solid transparent;
  border-radius:10px;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .25s, transform .25s;
}
#book-popup .status.show{ opacity:1; transform:translateY(0); }
#book-popup .status.ok{
  background: color-mix(in srgb, var(--brand) 12%, #fff 88%);
  border-color: color-mix(in srgb, var(--brand) 60%, #fff 40%);
  color: var(--brand);
}
#book-popup .status.error{
  background:#fff1f2;
  border-color:#fecdd3;
  color:#9f1239;
}

/* Single tour layout helpers */
.grid-two{display:grid;grid-template-columns:1.35fr .85fr;gap:1rem}
@media(max-width:900px){.grid-two{grid-template-columns:1fr}}
.gallery{background:#12161b;border:1px solid #1c232c;border-radius:16px;padding:.7rem}
.gallery .hero{width:100%;aspect-ratio:16/9;border-radius:12px;object-fit:cover;border:1px solid #1c232c}
.thumbs{display:flex;gap:.5rem;margin-top:.6rem;overflow:auto}
.thumbs img{width:110px;height:78px;object-fit:cover;border-radius:8px;border:2px solid transparent;cursor:pointer}
.thumbs img.active{border-color:#00a870}
.pillrow{display:flex;gap:.5rem;flex-wrap:wrap;margin:.5rem 0}
.pill{background:#10161d;border:1px solid #1c232c;border-radius:999px;padding:.35rem .7rem}
.itinerary{display:grid;gap:.7rem;padding-left:1rem}
.itxt{margin-top:.35rem}
.aside .price{font-weight:800;font-size:1.4rem}
.aside .box{background:#0f141a;border:1px solid #1c232c;border-radius:12px;padding:.8rem}
.aside .list{margin:.5rem 0 0 1.1rem}



/* =========================
   FLOATERS — force size & position
   ========================= */

/* Your custom WA button */
.whatsapp-float{
  position:fixed; right:20px; bottom:20px; z-index:1000;
}
.whatsapp-float img{
  width:56px !important;
  height:56px !important;
  display:block !important;
  max-width:none !important;   /* defeat global img{max-width:100%} */
  max-height:none !important;
}

/* Theme toggle + Back to top (keep same look, just ensure placement) */
.theme-toggle{
  position:fixed; right:20px; bottom:86px; z-index:9800;
  width:44px; height:44px; border-radius:50%;
  display:grid; place-items:center;
  background:var(--card); color:var(--text);
  border:1px solid var(--line); box-shadow:var(--shadow);
  transition: transform .25s, opacity .25s;
}
.to-top{
  position:fixed; right:86px; bottom:20px; z-index:9900;
  width:46px; height:46px; border-radius:50%;
  display:grid; place-items:center;
  background:linear-gradient(180deg,var(--brand),var(--brand-2));
  color:#fff; border:0; box-shadow:0 12px 24px rgba(0,0,0,.25);
  opacity:0; pointer-events:none; transform:translateY(8px);
  transition: transform .25s, opacity .25s;
}
.to-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }

/* If you also load a 3rd-party WA widget, normalize its bubble too */
:where(.floating-wpp,
       .whatsapp-button,
       .wa__btn_popup,
       .wa-widget,
       .wh-widget-send-button){
  right:20px !important;
  bottom:20px !important;
  z-index:1000 !important;
}
:where(.floating-wpp,
       .whatsapp-button,
       .wa__btn_popup,
       .wa-widget,
       .wh-widget-send-button) img,
:where(.floating-wpp button,
       .whatsapp-button button){
  width:56px !important;
  height:56px !important;
  max-width:none !important;
  max-height:none !important;
}

/* When footer is visible, slide floaters down so they don't cover it */
body.footer-inview .whatsapp-float,
body.footer-inview .theme-toggle,
body.footer-inview .to-top,
body.footer-inview :where(.floating-wpp,
                          .whatsapp-button,
                          .wa__btn_popup,
                          .wa-widget,
                          .wh-widget-send-button){
  transform: translateY(100px);
  opacity:.05;
  pointer-events:none;
}

/* Give the footer a safe bottom padding so nothing overlaps */
:root{ --float-safe: 16px; }
@media (max-width:640px){ :root{ --float-safe: 130px; } }
footer.footer-modal, .footer-modal{
  padding-bottom: calc(20px + var(--float-safe)) !important;
}

/* Footer: no bullets in Quick Links */
.footer-modal .footer-column ul,
.footer-modal .footer-column li{
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.footer-modal .footer-column li::marker{ content: ""; }






/* ===== Logo readability boost (no HTML changes) ===== */

/* 1) Make the logo larger on desktop, sensible on smaller screens */
:root{ --logo-h: 500px; }                  /* was 84px */
@media (max-width: 1100px){ :root{ --logo-h: 96px; } }
@media (max-width: 900px){  :root{ --logo-h: 72px; } }  /* phones */

/* 2) Slightly stronger matte plate so white text on the logo pops */
.nav-logo::before{
  opacity:.40;          /* was .22 */
  filter: blur(9px);    /* was 6px */
  inset:6px 4px;        /* a touch tighter around the badge */
}

/* 3) Keep hero title from feeling squeezed when logo gets taller */
.hero-overlay{ padding-top: calc(70px + (var(--logo-h) - 82px)); }

/* 4) Ask browser for best bitmap sharpness it can do (helps a bit) */
.nav-logo img{
  image-rendering: -webkit-optimize-contrast; /* Safari/Chrome hint */
  image-rendering: auto;                       /* fallback */
}

/* Optional: if the logo looks a bit low, nudge navbar up slightly */
.nav-glass{ top: 10px; }  /* was 14px */




/* ===== Pick & Go header polish (no icons) ===== */
.pick-title{ font-weight:800; margin-bottom:6px; }
.pick-title .eyebrow{
  display:block; font-size:.9rem; font-weight:700; letter-spacing:.04em;
  color:var(--logo-accent); text-transform:uppercase; margin-bottom:4px;
}
.pick-title::after{
  content:""; display:block; width:84px; height:4px; margin:10px auto 0;
  background:linear-gradient(90deg,var(--logo-accent),var(--brand));
  border-radius:4px;
}
.pick-sub{ margin:6px auto 12px; color:var(--muted); max-width:720px; }

/* Value chips */
.chip-row{
  display:flex; gap:8px; justify-content:center; list-style:none; padding:0; margin:0 0 12px;
  flex-wrap:wrap;
}
.chip{
  display:inline-flex; align-items:center;
  padding:6px 12px; border-radius:999px;
  background:linear-gradient(180deg,#fff 0%,#f6fff9 100%);
  border:1px solid #e7f3ee; color:#234; font-weight:600; font-size:.95rem;
}
body.theme-dark .chip{
  background:linear-gradient(180deg,#171b1e 0%,#14181b 100%);
  border-color:#20262b; color:#e9eef2;
}

/* CTA below slider */
.pick-cta{ margin-top:12px; }



/* Compact tour card (version "c") */
.tour-card.c{
  scroll-snap-align:start; flex:0 0 auto; width:clamp(260px,85vw,320px);
  background:var(--card); border:1px solid var(--line); border-radius:14px;
  box-shadow:var(--shadow); overflow:hidden; transition:transform .12s, box-shadow .12s;
}
.tour-card.c:hover{ transform:translateY(-2px); box-shadow:0 12px 26px rgba(0,0,0,.12); }

/* Media */
.tour-card.c .media{ position:relative; }
.tour-card.c .media img{ width:100%; height:180px; object-fit:cover; display:block; }
.tour-card.c .badge-days{
  position:absolute; left:10px; top:10px;
  background:rgba(0,0,0,.58); color:#fff; font-weight:800; font-size:.85rem;
  padding:6px 10px; border-radius:999px;
}
.tour-card.c .pill-price{
  position:absolute; right:10px; bottom:10px;
  background:linear-gradient(180deg,var(--brand),var(--brand-2));
  color:#fff; font-weight:900; font-size:.95rem;
  padding:6px 10px; border-radius:10px;
  box-shadow:0 6px 14px rgba(0,0,0,.18);
}

/* Body */
.tour-card.c .inner{ padding:12px 14px; display:flex; flex-direction:column; gap:8px; }
.tour-card.c .title{ margin:0; font-weight:800; line-height:1.2;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.tour-card.c .blurb{ margin:0; color:var(--muted); line-height:1.45; min-height:2.9em;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }

/* Bottom row */
.tour-card.c .foot{ display:flex; align-items:center; justify-content:space-between; margin-top:4px; }
.tour-card.c .pp{ color:var(--muted); font-size:.9rem; margin-left:10px; }

/* Keep slider arrows as-is; no icon dependency needed */



.section-lead{
  max-width: 900px;
  margin: -6px auto 18px;
  color: var(--muted);
  font-size: 1.02rem;
}




/* === NAV ON WHITE (DESKTOP) ================================ */
@media (min-width: 901px){
  .nav-glass{
    background: rgba(255,255,255,0.98);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.16);
    border: 1px solid rgba(0,0,0,0.04);
  }

  /* no need for dark plate once we have a white bar */
  .nav-logo::before{
    display: none;
  }

  .nav-links a{
    color: #222;
    text-shadow: none;
    border-bottom: 2px solid transparent;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible{
    color: var(--brand);
    border-bottom-color: var(--brand);
  }



/* keep burger white on top of video for mobile */
@media (max-width: 900px){
  .nav-burger{
    color:#fff;
  }
}






/* === Put nav on the dark top bar (desktop) ================== */
@media (min-width: 901px){
  /* make the top bar taller so it covers nav area */
  
  {
    background: linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.8));
    padding-bottom: 44px;          /* extra height under phone/email */
  }

  /* nav: transparent again (no white capsule), no big curve */
  .nav-glass{
    background: transparent;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    top: 26px;                     /* sits inside the tall 
     */
  }

  /* remove the “white box” behind the logo */
  .nav-logo::before{
    display: none;
  }

  /* menu links back to yellow-on-dark style */
  .nav-links a{
    color: var(--logo-accent);
    border-bottom: 2px solid transparent;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible{
    color: #fff;
    border-bottom-color: var(--logo-accent);
  }



/* keep burger white on mobile over video */
@media (max-width: 900px){
  .nav-burger{ color:#fff; }
}


/* ===== Language Switcher ===== */
.tb-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 0.85rem;
}

.tb-lang i {
  font-size: 0.9rem;
}

#langSwitcher {
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0 0.25rem;
  outline: none;
  cursor: pointer;
}

/* Mobile: show icon only but keep select clickable */
@media (max-width: 640px) {
  .tb-lang {
    padding: 0.35rem;
  }

  .tb-lang i {
    font-size: 1rem;
  }

  #langSwitcher {
    position: absolute;
    inset: 0;
    opacity: 0;         /* invisible but clickable */
    cursor: pointer;
  }
}







/* Top-bar "Request a Call" button */
.tb-request{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 18px;
  border-radius:999px;
  background:#f9bb06;       /* logo sun yellow */
  color:#000;               /* readable on yellow */
  font-weight:700;
  font-size:0.9rem;
  border:none;
  text-decoration:none !important;
  white-space:nowrap;
}
.tb-request:hover,
.tb-request:focus-visible{
  background:#ffcf3a;       /* lighter yellow hover */
  color:#000;
  outline:none;
}





/* ========== Slim top bar ========== */
.top-bar{
  padding: 2px 0;
  font-size: 0.8rem;
}

.top-bar-inner{
  min-height: 26px;
}



/* ========== White nav bar with logo & menu ========== */
@media (min-width: 901px){
  .nav-glass{
    position: absolute;
    top: 28px;  /* sits just under the top bar */
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 24px));
    background: #ffffff !important;        /* white bar */
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 22px rgba(0,0,0,.22);
    border: 0;
    padding: 10px 18px;
    z-index: 25;
  }

  /* No dark matte behind logo on white */
  .nav-logo::before{
    display: none !important;
  }

  .nav-logo img{
    height: 74px;
    width: auto;
    display: block;
  }

  /* Menu colours on white */
  .nav-links{
    justify-content: center;
    gap: 26px;
  }

  .nav-links a{
    color: var(--brand);
    font-weight: 700;
    border-bottom: 2px solid transparent;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible{
    color: var(--logo-accent);
    border-bottom-color: var(--logo-accent);
    outline: none;
  }








/* Mobile: keep nav transparent over video */
@media (max-width: 900px){
  .nav-glass{
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0;
    top: 40px;
  }
  .nav-logo::before{ display: none !important; }
  .nav-burger{ color: #fff; }
}





/* Push hero text down so it clears top bar + nav bar */
.hero-overlay{
  padding-top: 140px;
}





/* ===== Adjust white nav bar position (desktop) ===== */
@media (min-width: 901px){
  .nav-glass{
    top: 50px; /* was 28px – push it a bit lower */
  }
}







/* ==== FINAL OVERRIDE: Bon Voyage logo size ==== */
.nav-logo img,
.header-modal .logo img,
header .logo img {
  height: 100px !important;   /* try 140px first */
  width: auto !important;
}





/* ===== Reset any old nav hover decorations (arc, curve, etc.) ===== */
.nav-links li::before,
.nav-links li::after,
.nav-links a::before {
  content: none !important;
  display: none !important;
}


/* Clean hover for main menu */
.nav-links a{
  position: relative;
  color: var(--brand);
  font-weight: 700;
  padding: 18px 18px 16px;
  text-decoration: none;
}

/* thin underline on hover */
.nav-links a::after{
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--logo-accent);  /* yellow from your logo */
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform .18s ease-out, opacity .18s ease-out;
}

.nav-links a:hover,
.nav-links a:focus-visible{
  color: var(--brand-2);
  outline: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after{
  transform: scaleX(1);
  opacity: 1;
}






/* Language selector pill */
.tb-lang{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.45);
  color:#fff;
  position:relative;
}
.tb-lang i{
  font-size:.9rem;
}
.tb-lang select{
  border:0;
  outline:0;
  background:transparent;
  color:#fff;
  font-size:.85rem;
  font-weight:600;
  cursor:pointer;
  padding-right:18px;
  appearance:none;
}
.tb-lang::after{
  content:"▾";
  position:absolute;
  right:8px;
  font-size:.6rem;
  pointer-events:none;
}
.tb-lang select option{
  color:#000;
}

/* Mobile: icon only */
@media (max-width:640px){
  .tb-lang{
    padding:4px 8px;
    border-radius:50%;
  }
  .tb-lang select{
    display:none;
  }
  .tb-lang::after{
    content:"";
  }
}



/* =======================
   Tours header (Pick & Go)
   ======================= */
.pickgo-pro {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
}

.pickgo-left {
  text-align: left;
}

.pick-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.pick-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9bb06, #ff7a3c);
  box-shadow: 0 0 0 4px rgba(249, 187, 6, 0.25);
}

.pick-title {
  margin: 0.5rem 0 0.4rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.pick-title span {
  position: relative;
  display: inline-block;
}

.pick-title span::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.35em;
  height: 0.45em;
  background: linear-gradient(90deg, rgba(249,187,6,.25), rgba(255,255,255,0));
  z-index: -1;
  border-radius: 999px;
}

.pick-sub {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  opacity: 0.85;
  max-width: 32rem;
}

/* right side feature cards */
.pickgo-right {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pick-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.theme-light .pick-feature {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.04);
}

.pick-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: radial-gradient(circle at 30% 0, #f9bb06, #f97316);
  color: #1f2933;
  flex-shrink: 0;
}

.pick-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.pick-feature-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.pick-feature-sub {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* responsive */
@media (max-width: 768px) {
  .pickgo-pro {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .pickgo-left {
    text-align: center;
  }

  .pick-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .pickgo-right {
    align-items: stretch;
  }

  .pick-feature {
    border-radius: 16px;
  }

  .pick-label {
    justify-content: center;
  }
}






/* ===== Pick & Go header (tours section) ===== */

.section#tours {
  scroll-margin-top: 100px;
}

/* Layout */
.pickgo {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 2.5rem 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.pickgo-pro {
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.65);          /* looks nice over dark hero */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body:not(.theme-dark) .pickgo-pro {
  background: #f7f7f7;
  border-color: rgba(0, 0, 0, 0.05);
}

/* Left side (label + heading) */
.pickgo-left {
  position: relative;
}

.pick-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .85;
}

.pick-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f9bb06;
  box-shadow: 0 0 0 6px rgba(249, 187, 6, 0.28);
}

.pick-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin: .8rem 0 .9rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.pick-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.3rem;
  width: 80%;
  max-width: 260px;
  height: 8px;
  border-radius: 999px;
  background: rgba(249, 187, 6, 0.35);
  z-index: -1;
}

.pick-sub {
  margin: 0;
  font-size: .95rem;
  max-width: 28rem;
  opacity: .9;
}

/* Right side pills */
.pickgo-right {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.pick-feature {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .8rem 1.1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

body:not(.theme-dark) .pick-feature {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.05);
}

.pick-feature:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.pick-icon {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9bb06;
  color: #222;
  font-size: 1.1rem;
}

.pick-text {
  display: flex;
  flex-direction: column;
  gap: .18rem;
}

.pick-feature-title {
  font-size: .95rem;
  font-weight: 600;
}

.pick-feature-sub {
  font-size: .82rem;
  opacity: .9;
}

/* Mobile */
@media (max-width: 768px) {
  .pickgo {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.8rem 1.2rem 1.4rem;
    gap: 1.5rem;
  }

  .pick-feature {
    border-radius: 18px;
  }
}




/* Menu hover underline – only on the item you are on */
.nav-links a{
  position: relative;
  padding: 0 1.25rem 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}

.nav-links a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--logo-accent);
  transform: translateX(-50%);
  transition: width .22s ease-out;
}

.nav-links a:hover,
.nav-links a:focus-visible{
  color: var(--brand-2);
  outline: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after{
  width: 60%;
}





/* === FINAL: Contact pill in top nav (index + tour pages) ============ */
.nav-glass .nav-contact{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;

  padding: 0.55rem 1.2rem;
  border-radius: 999px;

  border: 2px solid var(--logo-accent, #f9bb06);
  background: transparent;
  color: var(--logo-accent, #f9bb06);

  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;

  box-shadow: none;
  transition:
    background .18s ease,
    color .18s ease,
    border-color .18s ease,
    transform .12s ease;
}

.nav-glass .nav-contact i{
  font-size: 0.95rem;
}

/* Hover: fill with your green from the logo */
.nav-glass .nav-contact:hover,
.nav-glass .nav-contact:focus-visible{
  background: var(--brand, #396111);
  border-color: var(--brand, #396111);
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
}