/* =====================================================
   /theme/css/tours.css
   Shared styles for all tour pages
   Cleaned, deduplicated, and aligned with header colors
   ===================================================== */

:root{
  /* Main palette aligned with header */
  --tour-primary:#fec107;
  --tour-primary-dark:#f19107;
  --tour-accent:#f94141;
  --tour-accent-dark:#e63535;
  --tour-ink:#0f172a;
  --tour-ink-soft:#1e293b;
  --tour-muted:#475569;
  --tour-muted-2:#64748b;
  --tour-line:rgba(15,23,42,.10);
  --tour-line-strong:rgba(15,23,42,.14);
  --tour-soft:#f8fafc;
  --tour-soft-warm:#fff9ef;
  --tour-card:#ffffff;
  --tour-success:#16a34a;
  --tour-danger:#ef4444;
  --tour-radius:20px;
  --tour-radius-lg:28px;
  --tour-shadow:0 16px 40px rgba(2,8,23,.08);
  --tour-shadow-soft:0 12px 28px rgba(2,8,23,.06);
  --tour-shadow-hover:0 22px 50px rgba(2,8,23,.12);
  --tour-gradient:linear-gradient(135deg,var(--tour-primary),var(--tour-accent));
  --tour-gradient-soft:linear-gradient(135deg, rgba(254,193,7,.12), rgba(249,65,65,.08));
}

.tour-page{
  background:#fff;
  color:var(--tour-ink);
}

/* =====================================================
   GENERIC
   ===================================================== */
.tour-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
}

.tour-section{
  padding:68px 0;
}

.tour-section--tight{
  padding:52px 0;
}

.tour-kicker{
  margin:0 0 10px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--tour-primary-dark);
}

.tour-section-title{
  margin:0 0 12px;
  font-size:36px;
  line-height:1.12;
  color:var(--tour-ink);
}

.tour-section-sub{
  margin:0;
  max-width:760px;
  color:var(--tour-muted);
  line-height:1.75;
  font-size:15px;
}

.tour-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 20px;
  border-radius:999px;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  white-space:nowrap;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.tour-btn:hover{
  transform:translateY(-2px);
  opacity:.98;
}

.tour-btn--primary{
  color:#222;
  background:var(--tour-gradient);
  box-shadow:0 12px 22px rgba(249,65,65,.25);
  border:1px solid transparent;
}

.tour-btn--primary:hover{
  box-shadow:0 16px 30px rgba(249,65,65,.32);
}

.tour-btn--ghost{
  color:var(--tour-ink);
  background:#fff;
  border:1px solid var(--tour-line);
}

.tour-btn--ghost:hover{
  border-color:rgba(249,65,65,.18);
  box-shadow:0 10px 18px rgba(2,8,23,.06);
}

.tour-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--tour-line);
  font-size:13px;
  color:var(--tour-muted);
  font-weight:700;
}

.tour-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--tour-gradient);
  flex:0 0 9px;
}

.tour-sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* =====================================================
   HERO
   ===================================================== */
.tour-hero{
  position:relative;
  padding:130px 0 70px;
  overflow:hidden;
  background:
    radial-gradient(900px 340px at 10% 0%, rgba(254,193,7,.14), transparent 60%),
    radial-gradient(900px 340px at 90% 0%, rgba(249,65,65,.10), transparent 60%),
    #fff;
}

.tour-hero__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:center;
}

.tour-hero__content{
  min-width:0;
}

.tour-hero__title{
  margin:0 0 16px;
  font-size:54px;
  line-height:1.02;
  letter-spacing:-.03em;
  color:var(--tour-ink);
}

.tour-hero__text{
  margin:0 0 22px;
  max-width:62ch;
  color:var(--tour-muted);
  font-size:16px;
  line-height:1.8;
}

.tour-hero__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:24px;
}

.tour-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.tour-hero__media{
  position:relative;
}

.tour-hero__image-wrap{
  position:relative;
  border-radius:var(--tour-radius-lg);
  overflow:hidden;
  background:#f3f4f6;
  box-shadow:var(--tour-shadow);
}

.tour-hero__image-wrap::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:34%;
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.20));
  pointer-events:none;
}

.tour-hero__image{
  display:block;
  width:100%;
  height:560px;
  object-fit:cover;
}

.tour-hero__floating-card{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
}

.tour-hero__stat{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.65);
  border-radius:18px;
  padding:14px 14px 12px;
  box-shadow:0 10px 22px rgba(2,8,23,.08);
}

.tour-hero__stat strong{
  display:block;
  margin-bottom:5px;
  font-size:15px;
  color:var(--tour-ink);
}

.tour-hero__stat span{
  display:block;
  color:var(--tour-muted);
  font-size:13px;
  line-height:1.4;
}

/* =====================================================
   OVERVIEW
   ===================================================== */
.tour-overview__box{
  border:1px solid var(--tour-line);
  border-radius:24px;
  background:
    radial-gradient(800px 220px at 0% 0%, rgba(254,193,7,.10), transparent 60%),
    radial-gradient(800px 220px at 100% 0%, rgba(249,65,65,.07), transparent 60%),
    #fff;
  box-shadow:var(--tour-shadow);
  padding:28px;
}

.tour-overview__grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:26px;
  align-items:start;
}

.tour-overview__text p{
  margin:0 0 14px;
  color:var(--tour-muted);
  line-height:1.8;
  font-size:15px;
}

.tour-overview__facts{
  display:grid;
  gap:14px;
}

.tour-fact{
  border:1px solid var(--tour-line);
  border-radius:18px;
  padding:16px;
  background:#fff;
  box-shadow:0 6px 18px rgba(2,8,23,.03);
}

.tour-fact h3{
  margin:0 0 6px;
  font-size:16px;
  color:var(--tour-ink);
}

.tour-fact p{
  margin:0;
  color:var(--tour-muted);
  line-height:1.65;
  font-size:14px;
}

/* =====================================================
   GALLERY SLIDER
   ===================================================== */
.tour-gallery{
  background:#fff;
}

.tour-gallery__head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
  flex-wrap:wrap;
}

.tour-gallery__slider-wrap{
  position:relative;
}

.tour-gallery__slider{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  padding:6px 2px 14px;
}

.tour-gallery__slider::-webkit-scrollbar{
  display:none;
}

.tour-gallery__slide{
  flex:0 0 360px;
  scroll-snap-align:start;
  border-radius:22px;
  overflow:hidden;
  position:relative;
  background:#f3f4f6;
  box-shadow:var(--tour-shadow);
}

.tour-gallery__slide img{
  display:block;
  width:100%;
  height:430px;
  object-fit:cover;
  transition:transform .3s ease;
}

.tour-gallery__slide:hover img{
  transform:scale(1.04);
}

.tour-gallery__caption{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(8px);
  color:var(--tour-ink);
  font-size:14px;
  font-weight:700;
  line-height:1.4;
}

.tour-gallery__arrows{
  display:flex;
  gap:10px;
}

.tour-gallery__arrow,
.tour-suggested__arrow{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid var(--tour-line);
  background:#fff;
  color:var(--tour-ink);
  font-size:22px;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.tour-gallery__arrow:hover,
.tour-suggested__arrow:hover{
  transform:translateY(-1px);
  border-color:rgba(249,65,65,.16);
  box-shadow:0 10px 18px rgba(2,8,23,.08);
}

/* =====================================================
   ITINERARY ACCORDION
   ===================================================== */
.tour-itinerary{
  background:#fff;
}

.tour-accordion{
  display:grid;
  gap:14px;
  margin-top:28px;
}

.tour-accordion__item{
  border:1px solid rgba(249,65,65,.18);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 30px rgba(2,8,23,.05);
  transition:box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.tour-accordion__item:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(2,8,23,.08);
}

.tour-accordion__item[open]{
  border-color:rgba(249,65,65,.28);
  box-shadow:0 18px 42px rgba(2,8,23,.08);
}

.tour-accordion__summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 20px;
  background:linear-gradient(90deg, rgba(254,193,7,.10), rgba(249,65,65,.06));
  position:relative;
}

.tour-accordion__summary::-webkit-details-marker{
  display:none;
}

.tour-accordion__summary::after{
  content:"+";
  margin-left:auto;
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:22px;
  font-weight:700;
  color:var(--tour-primary-dark);
  background:#fff;
  border:1px solid rgba(249,65,65,.12);
  box-shadow:0 6px 16px rgba(2,8,23,.06);
}

.tour-accordion__item[open] .tour-accordion__summary::after{
  content:"−";
  color:var(--tour-accent);
}

.tour-accordion__day{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:88px;
  padding:10px 14px;
  border-radius:999px;
  background:var(--tour-gradient);
  color:#111827;
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 10px 20px rgba(249,65,65,.16);
}

.tour-accordion__title{
  font-size:21px;
  line-height:1.35;
  font-weight:800;
  color:var(--tour-ink-soft);
}

.tour-accordion__content{
  padding:22px 22px 20px;
  border-top:1px solid rgba(15,23,42,.06);
  background:#fff;
}

.tour-accordion__content p{
  margin:0 0 14px;
  color:var(--tour-muted);
  line-height:1.8;
  font-size:15px;
}

.tour-accordion__list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.tour-accordion__list li{
  position:relative;
  padding-left:28px;
  color:var(--tour-ink);
  font-size:14px;
  line-height:1.65;
}

.tour-accordion__list li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--tour-gradient);
  box-shadow:0 0 0 4px rgba(249,65,65,.10);
}

/* =====================================================
   EXTRA MODERN SECTION
   ===================================================== */
.tour-extra-modern{
  background:#fff;
}

.tour-extra-modern__box{
  border:1px solid rgba(15,23,42,.08);
  border-radius:28px;
  background:
    radial-gradient(700px 220px at 0% 0%, rgba(254,193,7,.14), transparent 60%),
    radial-gradient(700px 220px at 100% 0%, rgba(249,65,65,.10), transparent 60%),
    #fff;
  box-shadow:0 16px 40px rgba(2,8,23,.06);
  overflow:hidden;
}

.tour-extra-modern__head{
  padding:30px 28px 16px;
}

.tour-extra-modern__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
  padding:0 28px 22px;
}

.tour-extra-modern__card{
  position:relative;
  border:1px solid rgba(15,23,42,.08);
  border-radius:20px;
  background:#fff;
  padding:22px 20px 18px;
  box-shadow:0 10px 24px rgba(2,8,23,.04);
}

.tour-extra-modern__icon{
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:14px;
  background:var(--tour-gradient);
  color:#111827;
  font-size:18px;
  font-weight:900;
  margin-bottom:14px;
}

.tour-extra-modern__card h3{
  margin:0 0 8px;
  font-size:20px;
  color:var(--tour-ink);
}

.tour-extra-modern__card p{
  margin:0;
  color:var(--tour-muted);
  font-size:14px;
  line-height:1.75;
}

.tour-extra-modern__note{
  margin:0 28px 18px;
  padding:16px 18px;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(254,193,7,.10), rgba(249,65,65,.06));
  border:1px solid rgba(249,65,65,.10);
  color:#334155;
  line-height:1.75;
  font-size:14px;
}

.tour-extra-modern__pricing{
  margin:0 28px 28px;
  padding:20px 20px 18px;
  border-radius:20px;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
}

.tour-extra-modern__pricing h3{
  margin:0 0 8px;
  font-size:22px;
  color:var(--tour-ink);
}

.tour-extra-modern__pricing p{
  margin:0 0 10px;
  color:var(--tour-muted);
  line-height:1.8;
  font-size:14px;
}

.tour-extra-modern__pricing p:last-child{
  margin-bottom:0;
}

/* =====================================================
   TOUR INFORMATION ALT
   ===================================================== */
.tour-info-alt{
  padding:18px 0 56px;
  background:#fff;
}

.tour-info-alt__box{
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  overflow:hidden;
  background:
    radial-gradient(760px 220px at 0% 0%, rgba(254,193,7,.12), transparent 60%),
    radial-gradient(760px 220px at 100% 0%, rgba(249,65,65,.08), transparent 60%),
    #ffffff;
  box-shadow:0 16px 40px rgba(2,8,23,.06);
}

.tour-info-alt__header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:28px 28px 16px;
  border-bottom:1px solid rgba(15,23,42,.08);
}

.tour-info-alt__heading{
  min-width:0;
}

.tour-info-alt__title{
  margin:0;
  font-size:28px;
  line-height:1.15;
  color:var(--tour-ink);
}

.tour-info-alt__subtitle{
  margin:10px 0 0;
  color:var(--tour-muted);
  font-size:14px;
  line-height:1.7;
  max-width:70ch;
}

.tour-info-alt__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(254,193,7,.12);
  border:1px solid rgba(249,65,65,.10);
  color:var(--tour-ink);
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}

.tour-info-alt__badge-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--tour-gradient);
  box-shadow:0 0 0 4px rgba(249,65,65,.10);
}

.tour-info-alt__tabs{
  padding:18px 28px 28px;
}

.tour-info-alt__tabs-bar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding:8px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

.tour-info-alt__tab{
  appearance:none;
  border:0;
  background:transparent;
  color:#334155;
  border-radius:999px;
  padding:11px 16px;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition:background .18s ease, color .18s ease, transform .12s ease, box-shadow .18s ease;
  user-select:none;
}

.tour-info-alt__tab:hover{
  transform:translateY(-1px);
  background:rgba(254,193,7,.10);
}

.tour-info-alt__tab[aria-selected="true"]{
  background:var(--tour-gradient);
  color:#111827;
  box-shadow:0 10px 20px rgba(249,65,65,.14);
}

.tour-info-alt__swipe-hint{
  display:none;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:10px;
  color:var(--tour-muted-2);
  font-size:12px;
  font-weight:700;
}

.tour-info-alt__swipe-arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  border-radius:50%;
  background:rgba(254,193,7,.14);
  color:var(--tour-accent);
  font-size:16px;
  animation:tourInfoAltPulse 1.8s infinite;
}

@keyframes tourInfoAltPulse{
  0%,100%{transform:translateX(0);opacity:.6}
  50%{transform:translateX(4px);opacity:1}
}

.tour-info-alt__panel{
  margin-top:16px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:20px;
  background:#fff;
  padding:20px;
  box-shadow:0 8px 20px rgba(2,8,23,.03);
}

.tour-info-alt__panel[hidden]{
  display:none;
}

.tour-info-alt__panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
  flex-wrap:wrap;
}

.tour-info-alt__panel-head h3{
  margin:0;
  font-size:20px;
  line-height:1.2;
  color:var(--tour-ink-soft);
}

.tour-info-alt__pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color:var(--tour-ink);
  border:1px solid rgba(15,23,42,.08);
  background:#fff7e8;
}

.tour-info-alt__pill--ok{
  background:rgba(22,163,74,.10);
  border-color:rgba(22,163,74,.18);
  color:#166534;
}

.tour-info-alt__pill--no{
  background:rgba(239,68,68,.10);
  border-color:rgba(239,68,68,.18);
  color:#991b1b;
}

.tour-info-alt__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.tour-info-alt__item{
  display:grid;
  grid-template-columns:18px 1fr;
  gap:10px;
  align-items:start;
  padding:12px;
  border-radius:14px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(15,23,42,.06);
}

.tour-info-alt__icon{
  width:18px;
  height:18px;
  border-radius:8px;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:900;
  line-height:1;
  margin-top:2px;
}

.tour-info-alt__icon--dot{
  background:rgba(254,193,7,.16);
  color:var(--tour-accent);
  border:1px solid rgba(249,65,65,.18);
}

.tour-info-alt__icon--ok{
  background:rgba(22,163,74,.14);
  color:#166534;
  border:1px solid rgba(22,163,74,.24);
}

.tour-info-alt__icon--no{
  background:rgba(239,68,68,.12);
  color:#991b1b;
  border:1px solid rgba(239,68,68,.22);
}

.tour-info-alt__text{
  color:var(--tour-muted);
  font-size:14px;
  line-height:1.65;
}

.tour-info-alt__text strong{
  color:var(--tour-ink);
  font-weight:900;
}

.tour-info-alt__note{
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px dashed rgba(249,65,65,.22);
  background:linear-gradient(135deg, rgba(254,193,7,.08), rgba(249,65,65,.05));
  color:var(--tour-muted-2);
  font-size:14px;
  line-height:1.6;
}

/* =====================================================
   SUGGESTED TOURS
   ===================================================== */
.tour-suggested{
  background:#fff;
}

.tour-suggested__head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.tour-suggested__arrows{
  display:flex;
  gap:10px;
}

.tour-suggested__slider{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  padding:6px 2px 14px;
}

.tour-suggested__slider::-webkit-scrollbar{
  display:none;
}

.tour-suggested__card{
  flex:0 0 320px;
  scroll-snap-align:start;
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 12px 28px rgba(2,8,23,.06);
  transition:transform .2s ease, box-shadow .2s ease;
}

.tour-suggested__card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 38px rgba(2,8,23,.10);
}

.tour-suggested__media{
  display:block;
  background:#f3f4f6;
}

.tour-suggested__media img{
  display:block;
  width:100%;
  height:230px;
  object-fit:cover;
}

.tour-suggested__body{
  padding:18px;
}

.tour-suggested__body h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.3;
}

.tour-suggested__body h3 a{
  color:var(--tour-ink);
  text-decoration:none;
}

.tour-suggested__body h3 a:hover{
  text-decoration:underline;
}

.tour-suggested__body p{
  margin:0 0 16px;
  color:var(--tour-muted);
  line-height:1.7;
  font-size:14px;
}
/* =====================================================
   TOUR INFO SHOWCASE
   ===================================================== */
.tour-info-showcase{
  background:#fff;
}

.tour-info-showcase__box{
  border:1px solid rgba(15,23,42,.08);
  border-radius:28px;
  background:
    radial-gradient(760px 240px at 0% 0%, rgba(254,193,7,.12), transparent 60%),
    radial-gradient(760px 240px at 100% 0%, rgba(249,65,65,.08), transparent 60%),
    #fff;
  box-shadow:0 16px 40px rgba(2,8,23,.06);
  overflow:hidden;
}

.tour-info-showcase__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  padding:30px 28px 18px;
  border-bottom:1px solid rgba(15,23,42,.08);
}

.tour-info-showcase__intro{
  min-width:0;
}

.tour-info-showcase__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff7e8;
  border:1px solid rgba(249,65,65,.10);
  color:var(--tour-ink);
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}

.tour-info-showcase__badge-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--tour-gradient);
  box-shadow:0 0 0 4px rgba(249,65,65,.10);
}

.tour-info-showcase__tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding:18px 28px 0;
}

.tour-info-showcase__tab{
  appearance:none;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  color:var(--tour-ink-soft);
  border-radius:999px;
  padding:11px 16px;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  transition:transform .15s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.tour-info-showcase__tab:hover{
  transform:translateY(-1px);
  border-color:rgba(249,65,65,.18);
  background:rgba(254,193,7,.08);
}

.tour-info-showcase__tab[aria-selected="true"]{
  background:var(--tour-gradient);
  color:#111827;
  border-color:transparent;
  box-shadow:0 10px 20px rgba(249,65,65,.14);
}

.tour-info-showcase__swipe-hint{
  display:none;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 28px 0;
  color:var(--tour-muted-2);
  font-size:12px;
  font-weight:700;
}

.tour-info-showcase__panel-wrap{
  padding:16px 28px 0;
}

.tour-info-showcase__panel{
  border:1px solid rgba(15,23,42,.08);
  border-radius:22px;
  background:#fff;
  padding:20px;
  box-shadow:0 10px 24px rgba(2,8,23,.04);
}

.tour-info-showcase__panel[hidden]{
  display:none;
}

.tour-info-showcase__panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.tour-info-showcase__panel-head h3{
  margin:0;
  font-size:22px;
  color:var(--tour-ink-soft);
  line-height:1.2;
}

.tour-info-showcase__pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  background:#fff7e8;
  color:var(--tour-ink);
  border:1px solid rgba(15,23,42,.08);
}

.tour-info-showcase__pill--ok{
  background:rgba(22,163,74,.10);
  border-color:rgba(22,163,74,.18);
  color:#166534;
}

.tour-info-showcase__pill--no{
  background:rgba(239,68,68,.10);
  border-color:rgba(239,68,68,.18);
  color:#991b1b;
}

.tour-info-showcase__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

.tour-info-showcase__item{
  display:grid;
  grid-template-columns:18px 1fr;
  gap:12px;
  align-items:start;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.06);
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,250,252,.85));
}

.tour-info-showcase__icon{
  width:18px;
  height:18px;
  border-radius:8px;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:900;
  margin-top:2px;
  color:var(--tour-accent);
  background:rgba(254,193,7,.16);
  border:1px solid rgba(249,65,65,.16);
}

.tour-info-showcase__icon--ok{
  color:#166534;
  background:rgba(22,163,74,.14);
  border-color:rgba(22,163,74,.22);
}

.tour-info-showcase__icon--no{
  color:#991b1b;
  background:rgba(239,68,68,.12);
  border-color:rgba(239,68,68,.22);
}

.tour-info-showcase__item strong{
  display:block;
  margin-bottom:4px;
  color:var(--tour-ink);
  font-size:15px;
}

.tour-info-showcase__item p{
  margin:0;
  color:var(--tour-muted);
  font-size:14px;
  line-height:1.65;
}

.tour-info-showcase__note{
  margin-top:14px;
  padding:13px 14px;
  border-radius:14px;
  border:1px dashed rgba(249,65,65,.20);
  background:linear-gradient(135deg, rgba(254,193,7,.08), rgba(249,65,65,.05));
  color:var(--tour-muted-2);
  font-size:14px;
  line-height:1.6;
}

.tour-info-showcase__cta{
  margin:22px 28px 28px;
  padding:20px;
  border-radius:22px;
  border:1px solid rgba(15,23,42,.08);
  background:
    radial-gradient(400px 160px at 0% 0%, rgba(254,193,7,.10), transparent 60%),
    radial-gradient(400px 160px at 100% 0%, rgba(249,65,65,.08), transparent 60%),
    #fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.tour-info-showcase__cta h3{
  margin:0 0 6px;
  font-size:22px;
  color:var(--tour-ink);
}

.tour-info-showcase__cta p{
  margin:0;
  color:var(--tour-muted);
  font-size:14px;
  line-height:1.7;
}

.tour-info-showcase__cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px){
  .tour-hero__title{ font-size:46px; }
  .tour-hero__image{ height:520px; }
}

@media (max-width: 991px){
  .tour-section{
    padding:56px 0;
  }

  .tour-hero{
    padding:118px 0 54px;
  }

  .tour-hero__grid,
  .tour-overview__grid,
  .tour-extra-modern__grid{
    grid-template-columns:1fr;
  }

  .tour-hero__title{
    font-size:40px;
  }

  .tour-hero__image{
    height:440px;
  }

  .tour-hero__floating-card{
    grid-template-columns:1fr;
  }

  .tour-gallery__slide{
    flex-basis:300px;
  }

  .tour-gallery__slide img{
    height:380px;
  }

  .tour-accordion__title{
    font-size:18px;
  }

  .tour-info-alt__header{
    flex-direction:column;
    align-items:flex-start;
  }
    .tour-info-showcase__top{
    flex-direction:column;
    align-items:flex-start;
  }

  .tour-info-showcase__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .tour-section-title{
    font-size:28px;
  }

  .tour-hero__title{
    font-size:32px;
  }

  .tour-hero__text{
    font-size:15px;
  }

  .tour-hero__image{
    height:340px;
  }

  .tour-overview__box{
    padding:18px 14px;
  }

  .tour-gallery__slide{
    flex-basis:260px;
  }

  .tour-gallery__slide img{
    height:320px;
  }

  .tour-accordion__summary{
    align-items:flex-start;
    flex-wrap:wrap;
    padding:16px;
  }

  .tour-accordion__summary::after{
    position:absolute;
    right:14px;
    top:14px;
  }

  .tour-accordion__day{
    min-width:auto;
    font-size:12px;
    padding:8px 12px;
  }

  .tour-accordion__title{
    width:100%;
    font-size:17px;
    padding-right:44px;
  }

  .tour-accordion__content{
    padding:18px 16px;
  }

  .tour-extra-modern__head,
  .tour-extra-modern__grid,
  .tour-info-alt__header,
  .tour-info-alt__tabs{
    padding-left:16px;
    padding-right:16px;
  }

  .tour-extra-modern__note,
  .tour-extra-modern__pricing{
    margin-left:16px;
    margin-right:16px;
  }

  .tour-info-alt__tabs-bar{
    flex-wrap:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    gap:10px;
  }

  .tour-info-alt__tabs-bar::-webkit-scrollbar{
    display:none;
  }

  .tour-info-alt__tab{
    flex:0 0 auto;
    min-width:140px;
    padding:12px 14px;
    font-size:14px;
  }

  .tour-info-alt__swipe-hint{
    display:flex;
  }

  .tour-suggested__card{
    flex-basis:260px;
  }

  .tour-suggested__media img{
    height:200px;
  }
    .tour-info-showcase__top,
  .tour-info-showcase__tabs,
  .tour-info-showcase__panel-wrap{
    padding-left:16px;
    padding-right:16px;
  }

  .tour-info-showcase__tabs{
    flex-wrap:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    gap:10px;
  }

  .tour-info-showcase__tabs::-webkit-scrollbar{
    display:none;
  }

  .tour-info-showcase__tab{
    flex:0 0 auto;
    min-width:140px;
  }

  .tour-info-showcase__swipe-hint{
    display:flex;
  }

  .tour-info-showcase__panel{
    padding:16px;
  }

  .tour-info-showcase__cta{
    margin-left:16px;
    margin-right:16px;
    padding:16px;
  }
}

/* =====================================================
   TESTIMONIALS + QUICK FAQ
   ===================================================== */
.tour-extra-modern__block{
  margin:0 28px 22px;
  padding:22px 20px 20px;
  border-radius:22px;
  border:1px solid rgba(15,23,42,.08);
  background:
    radial-gradient(420px 180px at 0% 0%, rgba(254,193,7,.08), transparent 60%),
    radial-gradient(420px 180px at 100% 0%, rgba(249,65,65,.06), transparent 60%),
    #fff;
  box-shadow:0 10px 24px rgba(2,8,23,.04);
}

.tour-extra-modern__block h3{
  margin:0 0 14px;
  font-size:24px;
  color:var(--tour-ink);
  line-height:1.2;
}

.tour-extra-modern__stack{
  display:grid;
  gap:14px;
}

.tour-extra-modern__testimonial,
.tour-extra-modern__faq{
  border:1px solid rgba(15,23,42,.07);
  border-radius:18px;
  background:#fff;
  padding:18px 16px;
  box-shadow:0 8px 20px rgba(2,8,23,.03);
}

.tour-extra-modern__testimonial{
  position:relative;
  overflow:hidden;
}

.tour-extra-modern__testimonial::before{
  content:"“";
  position:absolute;
  top:10px;
  right:14px;
  font-size:54px;
  line-height:1;
  color:rgba(249,65,65,.10);
  font-weight:900;
  pointer-events:none;
}

.tour-extra-modern__testimonial-name{
  display:block;
  margin:0 0 8px;
  font-size:15px;
  font-weight:900;
  color:var(--tour-ink);
}

.tour-extra-modern__stars{
  display:inline-flex;
  gap:2px;
  margin-bottom:10px;
  color:var(--tour-primary-dark);
  font-size:14px;
  letter-spacing:.04em;
}

.tour-extra-modern__testimonial p,
.tour-extra-modern__faq p{
  margin:0;
  color:var(--tour-muted);
  font-size:14px;
  line-height:1.75;
}

.tour-extra-modern__faq strong{
  display:block;
  margin-bottom:6px;
  color:var(--tour-ink);
  font-size:15px;
  line-height:1.45;
}

.tour-extra-modern__faq{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tour-extra-modern__faq:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(2,8,23,.06);
  border-color:rgba(249,65,65,.12);
}

@media (max-width:640px){
  .tour-extra-modern__block{
    margin-left:16px;
    margin-right:16px;
    padding:16px;
  }

  .tour-extra-modern__block h3{
    font-size:21px;
  }

  .tour-extra-modern__testimonial,
  .tour-extra-modern__faq{
    padding:15px 14px;
  }

  .tour-extra-modern__testimonial::before{
    font-size:42px;
    top:8px;
    right:10px;
  }
}
.tour-info-showcase__box,
.tour-info-showcase__panel-wrap,
.tour-info-showcase__panel{
  overflow:hidden;
}

@media (max-width:640px){
  .tour-info-showcase__panel-head{
    align-items:flex-start;
  }

  .tour-info-showcase__panel-head h3{
    font-size:20px;
    line-height:1.25;
    word-break:break-word;
  }
}
/* =====================================================
   PERFORMANCE HELPERS
   ===================================================== */

/* Delay rendering of below-the-fold sections */
.tour-gallery,
.tour-info-showcase,
.tour-itinerary,
.tour-extra-modern,
.tour-suggested{
  content-visibility:auto;
  contain-intrinsic-size:1px 1200px;
}

/* Prevent mobile clipping / layout shift in tab panels */
.tour-info-showcase__box,
.tour-info-showcase__panel-wrap,
.tour-info-showcase__panel{
  overflow:hidden;
}

@media (max-width:640px){
  .tour-info-showcase__panel-head{
    align-items:flex-start;
  }

  .tour-info-showcase__panel-head h3{
    font-size:20px;
    line-height:1.25;
    word-break:break-word;
  }

  /* Slightly reduce heavy visual cost on mobile */
  .tour-hero{
    padding:110px 0 46px;
  }

  .tour-hero__image{
    height:300px;
  }

  .tour-hero__floating-card{
    gap:8px;
    left:12px;
    right:12px;
    bottom:12px;
  }

  .tour-hero__stat{
    padding:12px 12px 10px;
    box-shadow:0 6px 14px rgba(2,8,23,.06);
  }

  .tour-gallery__slide,
  .tour-suggested__card{
    box-shadow:0 8px 18px rgba(2,8,23,.05);
  }

  .tour-extra-modern__box,
  .tour-info-showcase__box,
  .tour-overview__box{
    box-shadow:0 10px 22px rgba(2,8,23,.05);
  }
}.tour-extra-modern__review-link{
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 18px;
  border-radius:18px;
  text-decoration:none;
  border:1px solid rgba(15,23,42,.08);
  background:linear-gradient(135deg, rgba(254,193,7,.08), rgba(249,65,65,.05));
  box-shadow:0 8px 20px rgba(2,8,23,.03);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tour-extra-modern__review-link:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(2,8,23,.06);
  border-color:rgba(249,65,65,.14);
}

.tour-extra-modern__review-logo{
  width:78px;
  max-width:100%;
  height:auto;
  display:block;
  flex:0 0 78px;
  object-fit:contain;
}

.tour-extra-modern__review-text{
  display:grid;
  gap:4px;
}

.tour-extra-modern__review-text strong{
  color:var(--tour-ink);
  font-size:16px;
  line-height:1.35;
}

.tour-extra-modern__review-text span{
  color:var(--tour-muted);
  font-size:14px;
  line-height:1.6;
}

@media (max-width:640px){
  .tour-extra-modern__review-link{
    align-items:flex-start;
    flex-direction:column;
    gap:12px;
  }

  .tour-extra-modern__review-logo{
    width:72px;
    flex-basis:72px;
  }
}