/* =====================================================
   NEW YORK WONDERLAND TOURS — style.css
   Premium NYC Tour Agency Website
   ===================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy:      #002147;
  --navy-mid:  #0a2847;
  --navy-deep: #051630;
  --statue:    #2c5282;
  --gold:      #C5A059;
  --gold-bright:#D4AF37;
  --gold-dark: #996515;
  --red:       #B91C1C;
  --cta:       #C5A059;
  --cta-hover: #B8860B;
  --snow:      #FAFAF8;
  --softgray:  #F0EDE6;
  --gray:      #f0f4f8;
  --darktext:  #0a1a2e;
  --muted:     #5c6b7a;
  --success:   #16a34a;

  --grad-hero: linear-gradient(145deg, #002147 0%, #051630 45%, #0a2847 100%);
  --grad-card: linear-gradient(145deg, #0a2847 0%, #002147 100%);
  --grad-gold: linear-gradient(90deg, #996515, #D4AF37);
  --grad-xmas: linear-gradient(135deg, #002147 0%, #0a2847 60%, #051630 100%);

  --shadow-sm:  0 2px 8px rgba(0,33,71,0.10);
  --shadow-md:  0 6px 24px rgba(0,33,71,0.14);
  --shadow-lg:  0 16px 48px rgba(0,33,71,0.18);
  --shadow-card:0 4px 20px rgba(0,33,71,0.10);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --font-head: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', system-ui, sans-serif;

  --header-h: 100px;
  --logo-ratio: 1024 / 330;
  --logo-header-h: calc(var(--header-h) - 20px);
  --logo-header-w: clamp(180px, 34vw, 400px);
  --logo-footer-w: clamp(240px, 48vw, 480px);
  --trans: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--darktext);
  background: var(--snow);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--gold-dark); }

ul { list-style: none; }

img, svg { display: block; max-width: 100%; }

button { cursor: pointer; font-family: var(--font-head); border: none; outline: none; }

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
  border: 1.5px solid #d1dae6;
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  background: #fff;
  color: var(--darktext);
  transition: border-color var(--trans), box-shadow var(--trans);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

/* ---------- UTILITY ---------- */
.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }

.sec-pad { padding: 80px 0; }

.sec-header { text-align: center; margin-bottom: 52px; }
.sec-header.left-align { text-align: left; }

.sec-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.25);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.sec-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.sec-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}
.sec-header.left-align p { margin: 0; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  border-radius: 100px;
  padding: 0.78rem 1.8rem;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.35);
  letter-spacing: 0.04em;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(197, 160, 89, 0.45);
  color: var(--navy-deep);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.97rem;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 100px;
  padding: 0.78rem 1.8rem;
  transition: all var(--trans);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ---------- COOKIE CONSENT ---------- */
.cookie-consent {
  position: fixed;
  bottom: 80px;
  left: 0; right: 0;
  z-index: 9999;
  padding: 0 16px;
  animation: slideUp 0.4s ease;
}
.cookie-consent .cookie-inner {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cookie-consent p { font-size: 0.9rem; line-height: 1.5; flex: 1; }
.cookie-link { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 100px;
  padding: 8px 20px;
  transition: opacity var(--trans);
}
.btn-cookie-accept:hover { opacity: 0.88; }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-head);
  font-size: 0.85rem;
  border-radius: 100px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all var(--trans);
}
.btn-cookie-decline:hover { color: #fff; border-color: #fff; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 1px 0 rgba(0, 33, 71, 0.04);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(7,27,51,0.1); }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  align-self: center;
  height: var(--logo-header-h);
  max-width: min(var(--logo-header-w), 54vw);
  min-width: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  line-height: 0;
  box-shadow: none;
  transition: opacity var(--trans);
}
.logo:hover {
  opacity: 0.88;
  box-shadow: none;
}
.logo-img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: var(--logo-ratio);
  object-fit: contain;
  object-position: left center;
}

/* DESKTOP NAV */
.desktop-nav { display: flex; align-items: center; }
.desktop-nav ul { display: flex; align-items: center; gap: 4px; }
.desktop-nav ul li a {
  font-family: var(--font-head);
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(0, 33, 71, 0.82);
  padding: 6px 9px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color var(--trans), background var(--trans);
}
.desktop-nav ul li a:hover { color: var(--gold-dark); background: rgba(197, 160, 89, 0.1); }

/* HEADER RIGHT */
.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(7,27,51,0.45);
  background: transparent;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color var(--trans);
}
.lang-btn.active, .lang-btn:hover { color: var(--gold-dark); }
.lang-sep { color: rgba(7,27,51,0.25); font-size: 0.8rem; }

.btn-book-now {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  color: var(--navy);
  border-radius: 100px;
  padding: 9px 20px;
  white-space: nowrap;
  transition: background var(--trans), transform var(--trans);
  box-shadow: 0 3px 14px rgba(197, 160, 89, 0.35);
  letter-spacing: 0.05em;
}
.btn-book-now:hover { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); transform: translateY(-1px); color: var(--navy-deep); }

.btn-header-account {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  background: var(--gray);
  border-radius: 100px;
  padding: 8px 16px;
  white-space: nowrap;
  transition: background var(--trans), color var(--trans);
  border: 1.5px solid #e2e8f0;
}
.btn-header-account:hover { background: rgba(14,94,140,0.1); color: var(--statue); }
.btn-header-account.is-logged-in { background: rgba(14,94,140,0.12); color: var(--statue); border-color: rgba(14,94,140,0.25); }

/* AUTH MODAL */
.auth-modal-box { max-width: 420px; padding: 28px 32px 32px; }
.auth-modal-title { font-family: var(--font-head); font-size: 1.35rem; color: var(--navy); margin-bottom: 6px; }
.auth-modal-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 18px; }
.auth-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.auth-tab {
  flex: 1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px;
  border-radius: 8px;
  background: var(--gray);
  color: var(--muted);
  border: none;
  cursor: pointer;
  transition: all var(--trans);
}
.auth-tab.active { background: var(--navy); color: #fff; }
.auth-submit { width: 100%; margin-top: 16px; justify-content: center; border-radius: 100px; padding: 12px; }
.auth-error { color: var(--red); font-size: 0.82rem; margin-top: 12px; }
.auth-legal { font-size: 0.75rem; color: var(--muted); margin-top: 14px; text-align: center; }
.auth-legal a { color: var(--statue); text-decoration: underline; }
.auth-modal-box input { margin-bottom: 0; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 8px;
  transition: background var(--trans);
}
.hamburger:hover { background: rgba(7,27,51,0.06); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(7,27,51,0.97);
  z-index: 850;
  display: flex;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner {
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  height: 100%;
  background: var(--navy);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
}
.mobile-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
  background: transparent;
  line-height: 1;
  transition: color var(--trans);
}
.mobile-close-btn:hover { color: #fff; }
.mobile-menu nav ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link,
.mobile-menu nav ul li a.mobile-nav-anchor {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  transition: color var(--trans), padding-left var(--trans);
  text-decoration: none;
}
.mobile-nav-link:hover,
.mobile-menu nav ul li a.mobile-nav-anchor:hover {
  color: var(--gold);
  padding-left: 8px;
}
.mobile-nav-group { list-style: none; }
.mobile-nav-group-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  text-align: left;
  transition: color var(--trans);
}
.mobile-nav-group-btn:hover,
.mobile-nav-group-btn.open { color: var(--gold); }
.mobile-nav-chevron {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  transition: transform var(--trans), border-color var(--trans);
  margin-top: -2px;
}
.mobile-nav-group-btn.open .mobile-nav-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
  border-color: var(--gold);
}
.mobile-nav-sub {
  list-style: none;
  margin: 0;
  padding: 4px 0 8px 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav-sub[hidden] { display: none; }
.mobile-nav-sub.open { display: flex; }
.mobile-nav-sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 9px 8px 9px 14px;
  border-radius: 8px;
  background: transparent;
  border: none;
  transition: color var(--trans), background var(--trans), padding-left var(--trans);
}
.mobile-nav-sublink:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.06);
  padding-left: 18px;
}
.mobile-nav-tour-link {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 10px 10px 10px 14px;
  border-left: 2px solid rgba(212,175,55,0.35);
  margin-left: 4px;
}
.mobile-nav-tour-title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255,255,255,0.88);
}
.mobile-nav-tour-price {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}
.mobile-nav-empty {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  padding: 8px 14px;
}
.mobile-menu nav ul li a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--trans), padding-left var(--trans);
}
.mobile-menu nav ul li a:hover { color: var(--gold); padding-left: 8px; }
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
}
.mobile-book-cta {
  width: 100%;
  text-align: center;
  padding: 14px 0;
  font-size: 1rem;
}

/* ---------- HERO ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 0;
}

.hero-gradient-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(197,160,89,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,175,55,0.08) 0%, transparent 60%);
}

.hero-cityscape {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
}
.hero-skyline-svg {
  width: 100%;
  display: block;
}

/* Sparkles / snowflakes */
.hero-sparkles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.sp {
  position: absolute;
  color: rgba(255,255,255,0.55);
  font-size: 1.1rem;
  animation: floatSp 8s ease-in-out infinite;
}
.sp1 { top: 12%; left: 8%;  animation-delay: 0s;   font-size: 1.4rem; }
.sp2 { top: 22%; left: 22%; animation-delay: 1.2s; color: rgba(244,183,64,0.6); }
.sp3 { top: 8%;  left: 55%; animation-delay: 2.4s; }
.sp4 { top: 35%; left: 78%; animation-delay: 0.8s; color: rgba(244,183,64,0.5); font-size: 0.9rem; }
.sp5 { top: 55%; left: 5%;  animation-delay: 3.6s; font-size: 0.9rem; }
.sp6 { top: 18%; left: 88%; animation-delay: 4.0s; }
.sp7 { top: 72%; left: 68%; animation-delay: 5.0s; font-size: 1.6rem; color: rgba(255,255,255,0.3); }
.sp8 { top: 42%; left: 45%; animation-delay: 2.0s; color: rgba(244,183,64,0.4); font-size: 1.2rem; }
.sp9 { top: 60%; left: 92%; animation-delay: 1.5s; font-size: 0.85rem; }

@keyframes floatSp {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-18px) rotate(15deg); opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,27,51,0.2) 0%, rgba(7,27,51,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 80px 24px 100px;
  width: 100%;
}

/* Hero text */
.hero-text { max-width: 600px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow-star { font-size: 0.7rem; }

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(7,27,51,0.4);
}
.headline-wonder {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-btn-main {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  padding: 0.85rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(197, 160, 89, 0.4);
  transition: all var(--trans);
  letter-spacing: 0.05em;
}
.hero-btn-main:hover { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(197, 160, 89, 0.5); color: var(--navy-deep); }

.hero-trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* Float card */
.hero-float-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 300px;
  overflow: hidden;
  flex-shrink: 0;
}
.float-animate { animation: floatCard 4s ease-in-out infinite; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-card-badge {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 6px 0;
}
.float-card-img {
  height: 130px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.float-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.christmas-gradient {
  background: linear-gradient(135deg, #002147 0%, #1a3d1a 40%, #0a2847 100%);
}
.christmas-gradient::before {
  content: '🎄✦🎅✦❄';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  letter-spacing: 8px;
}
.float-card-body { padding: 16px; }
.float-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--statue);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.float-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 6px 0 10px;
  line-height: 1.35;
}
.float-meta-row { display: flex; gap: 10px; font-size: 0.8125rem; color: var(--muted); margin-bottom: 8px; flex-wrap: wrap; }
.float-includes { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.inc-chip {
  font-size: 0.75rem;
  background: var(--softgray);
  color: var(--navy);
  border-radius: 100px;
  padding: 3px 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.btn-float {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 100px;
  padding: 10px 0;
  transition: background var(--trans);
}
.btn-float:hover { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: var(--navy-deep); }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-ball {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  animation: scrollBall 2s ease-in-out infinite;
}
@keyframes scrollBall {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--navy);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 36px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ---------- TOUR CARDS & GRID ---------- */
.tours-controls {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.search-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
}
.search-wrap input {
  padding-left: 42px;
  height: 44px;
}
.sort-wrap select {
  height: 44px;
  min-width: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
}

/* FILTER TABS */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  margin-bottom: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
  margin-bottom: -2px;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border: 1.5px solid #d8e2ec;
  border-radius: 100px;
  padding: 8px 18px;
  transition: all var(--trans);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* TOUR GRID */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 28px;
}

/* INTERNAL + GYG CATEGORY BLOCKS */
.internal-tours-block {
  margin-bottom: 8px;
}

.gyg-categories-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}

/* TOURS + HOTELS HUB */
.tours-hub { background: var(--softgray); }
.tours-hub-head { margin-bottom: 20px; }
.tours-hub-head h2 { font-family: var(--font-head); font-size: clamp(1.75rem, 4vw, 2.25rem); color: var(--navy); margin: 8px 0 0; }
.tours-hub-sub {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 10px 0 0;
  max-width: 560px;
  line-height: 1.55;
}
.tours-hub-toolbar {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: var(--radius-lg);
  padding: 18px 20px 14px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.tours-hub-toolbar .tours-controls { margin-bottom: 14px; }
.tours-hub-body { display: flex; flex-direction: column; gap: 0; }
.hub-block { margin-bottom: 28px; }
.hub-block:last-child { margin-bottom: 0; }
.hub-section-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.hub-section-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted);
  margin: -8px 0 16px;
  line-height: 1.5;
}
.tours-hub-hotels {
  margin-bottom: 24px;
}
.hotels-hub-block {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: var(--radius-lg);
  padding: 22px 20px 24px;
  box-shadow: var(--shadow-sm);
}
.expedia-widget-wrap--hub { margin-bottom: 24px; }
.gyg-categories-wrap--hub {
  margin-top: 0;
  gap: 20px;
}
.gyg-category-section--compact {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid #e8edf2;
  box-shadow: none;
  overflow: hidden;
}
.gyg-category-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #fff;
}
.gyg-category-strip-icon { font-size: 1.1rem; line-height: 1; }
.gyg-category-strip-title {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.03em;
}
.gyg-category-widgets--compact {
  padding: 10px 8px 12px;
  min-height: 0;
}
.internal-tours-block { margin-bottom: 0; }
.sec-pad--compact { padding-top: 48px; padding-bottom: 48px; }

@media (max-width: 640px) {
  .tours-hub-toolbar { padding: 14px 14px 10px; }
}


.gyg-category-section {
  background: #fff;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid #e8edf2;
  box-shadow: 0 4px 24px rgba(0, 33, 71, 0.06);
  overflow: hidden;
}

.gyg-category-header {
  padding: 24px 28px;
  color: #fff;
}

.gyg-category-header-inner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.gyg-category-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.gyg-category-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}

.gyg-category-sub {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.92;
  max-width: 640px;
}

.gyg-category-widgets {
  padding: 12px 10px 14px;
  min-height: 0;
}

.gyg-widget {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  line-height: 0;
}
.gyg-category-widgets,
.gyg-category-widgets--compact {
  overflow: hidden;
  max-width: 100%;
}
.gyg-category-widgets iframe,
.gyg-widget iframe {
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  border: 0;
  vertical-align: top;
}

.gyg-powered {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
  padding: 0 4px;
}

.gyg-powered a {
  color: var(--navy);
  font-weight: 600;
}

.gyg-powered a:hover {
  color: var(--gold);
}

@media (max-width: 640px) {
  .gyg-category-header {
    padding: 18px 20px;
  }
  .gyg-category-title {
    font-size: 1.15rem;
  }
  .gyg-category-widgets {
    padding: 8px 6px 10px;
  }
  .gyg-category-widgets--compact {
    padding: 6px 4px 8px;
  }
  .gyg-category-section--compact {
    border-radius: var(--radius-sm);
  }
  .gyg-powered {
    margin-top: 6px;
    font-size: 0.68rem;
  }
  .gyg-categories-wrap {
    gap: 20px;
    margin-top: 24px;
  }
  .gyg-categories-wrap--hub {
    gap: 10px;
    margin-top: 0;
  }
}

/* TOUR TYPOGRAPHY — Cinzel headings, Lato body (matches site) */
.tour-card,
.hero-float-card,
.td-body,
.bm-step-content,
.bm-header {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--darktext);
  -webkit-font-smoothing: antialiased;
}

.tour-card .card-desc,
.tour-card .card-meta,
.tour-card .card-reviews,
.tour-card .card-price-type,
.tour-card .card-old-price,
.tour-card .card-source-link,
.float-meta-row,
.td-desc,
.td-note,
.td-meta-val,
.td-inc-item,
.td-itin-dur,
.td-price-type,
.td-cancel,
.td-old-price,
.bm-demo-note,
.bm-hint,
.bm-guest-label,
.bm-price-row,
.confirm-details,
.confirm-note {
  font-family: var(--font-body);
}

.tour-card .card-cat,
.tour-card .card-title,
.tour-card .card-price,
.tour-card .card-rating-num,
.tour-card .inc-tag,
.float-cat,
.float-title,
.float-card-badge,
.inc-chip,
.td-title,
.td-cat,
.td-meta-label,
.td-section-title,
.td-itin-name,
.td-price,
.confirm-label,
.confirm-num {
  font-family: var(--font-head);
}

/* TOUR CARD */
.tour-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(7,27,51,0.18);
}

.card-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  background: var(--grad-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  transition: transform 0.5s ease;
}
.tour-card:hover .card-img { transform: scale(1.04); }

/* Gradient variants for tour cards */
.grad-1 { background: linear-gradient(135deg, #002147 0%, #0a2847 100%); }
.grad-2 { background: linear-gradient(135deg, #1a3a1a 0%, #0d2a0d 100%); }
.grad-3 { background: linear-gradient(135deg, #2d1a00 0%, #7a4a00 100%); }
.grad-4 { background: linear-gradient(135deg, #0a1f3a 0%, #1a3a6a 100%); }
.grad-5 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.grad-6 { background: linear-gradient(135deg, #3a1a00 0%, #8b3a00 100%); }
.grad-7 { background: linear-gradient(135deg, #002147 0%, #1a0a20 100%); }
.grad-8 { background: linear-gradient(135deg, #1a2a1a 0%, #2a4a2a 100%); }
.grad-9 { background: linear-gradient(135deg, #0a1a1a 0%, #1a3a3a 100%); }
.grad-10 { background: linear-gradient(135deg, #1a0a00 0%, #4a1a00 100%); }
.grad-11 { background: linear-gradient(135deg, #002147 0%, #0a2847 50%, #1a3a1a 100%); }
.grad-12 { background: linear-gradient(135deg, #1a1a0a 0%, #4a4a0a 100%); }
.grad-13 { background: linear-gradient(135deg, #002147 0%, #1a0a2a 100%); }
.grad-14 { background: linear-gradient(135deg, #002147 0%, #996515 55%, #D4AF37 100%); }

.card-img-photo,
.td-img-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f5f3ef;
}
.tour-card:hover .card-img-photo { transform: scale(1.04); transition: transform 0.5s ease; }

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.badge {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-viator   { background: #ff6600; color: #fff; }
.badge-gyg      { background: #ff5533; color: #fff; }
.badge-special  { background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright)); color: var(--navy); }
.badge-top      { background: var(--gold); color: var(--navy); }
.badge-seller   { background: var(--statue); color: #fff; }
.badge-private  { background: #6b21a8; color: #fff; }
.badge-default  { background: rgba(7,27,51,0.7); color: #fff; }

.card-discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-dark);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 3px 10px;
}

.card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--statue);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
}
.card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex;
  gap: 14px;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.card-meta span { display: flex; align-items: center; gap: 4px; }

.card-includes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.inc-tag {
  font-size: 0.75rem;
  background: var(--softgray);
  color: var(--navy);
  border-radius: 100px;
  padding: 3px 9px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.card-no-rating {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--muted);
}

.card-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.card-stars { color: var(--gold); font-size: 0.8125rem; font-family: var(--font-body); }
.card-rating-num { font-weight: 700; font-size: 0.875rem; color: var(--navy); }
.card-reviews { font-size: 0.8125rem; color: var(--muted); }

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.card-price {
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.card-old-price {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: line-through;
}
.card-price-type { font-size: 0.8125rem; color: var(--muted); }

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}
.btn-check {
  flex: 1;
  background: var(--gold-dark);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 100px;
  padding: 10px 16px;
  text-align: center;
  transition: background var(--trans);
}
.btn-check:hover { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: var(--navy-deep); }
.btn-details {
  flex: 1;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 100px;
  padding: 10px 16px;
  text-align: center;
  border: 1.5px solid #d8e2ec;
  transition: all var(--trans);
}
.btn-details:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.card-source-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--muted);
  text-align: right;
  margin-top: 8px;
  display: block;
  line-height: 1.45;
}
.card-source-link a { color: var(--statue); text-decoration: underline; }

.no-results {
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
}
.no-results span { font-size: 3rem; display: block; margin-bottom: 16px; }
.no-results p { font-size: 1.05rem; }

/* ---------- CHRISTMAS SECTION ---------- */
.christmas-section {
  background: var(--grad-xmas);
  position: relative;
  overflow: hidden;
}
.christmas-section .sec-header h2 { color: #fff; }
.christmas-section .sec-header p { color: rgba(255,255,255,0.75); }

.xmas-deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.lights-string {
  display: flex;
  justify-content: space-around;
  padding: 0 20px;
  position: relative;
}
.lights-string::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.2);
}
.bulb {
  display: block;
  width: 14px;
  height: 20px;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  position: relative;
  top: 2px;
  animation: glowBulb 2s ease-in-out infinite alternate;
}
.bulb::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.b-red { background: var(--red); box-shadow: 0 0 10px var(--red); animation-delay: 0s; }
.b-gold { background: var(--gold); box-shadow: 0 0 10px var(--gold); animation-delay: 0.5s; }
.b-blue { background: #4aaee0; box-shadow: 0 0 10px #4aaee0; animation-delay: 1s; }
@keyframes glowBulb {
  from { filter: brightness(0.7); }
  to { filter: brightness(1.3); }
}

.xmas-tag {
  color: var(--gold);
  background: rgba(244,183,64,0.15);
}

/* Christmas filter chips */
.xmas-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.chip {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  transition: all var(--trans);
}
.chip:hover, .chip.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.christmas-grid .tour-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.christmas-grid .tour-card .card-title { color: #fff; }
.christmas-grid .tour-card .card-cat { color: var(--gold); }
.christmas-grid .tour-card .card-desc { color: rgba(255,255,255,0.65); }
.christmas-grid .tour-card .card-meta { color: rgba(255,255,255,0.55); }
.christmas-grid .tour-card .card-price { color: var(--gold); }
.christmas-grid .tour-card .card-old-price { color: rgba(255,255,255,0.45); }
.christmas-grid .tour-card .inc-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.christmas-grid .tour-card .btn-details { border-color: rgba(255,255,255,0.3); color: #fff; }
.christmas-grid .tour-card .btn-details:hover { background: rgba(255,255,255,0.15); }
.christmas-grid .tour-card .card-source-link a { color: var(--gold); }

/* ---------- TOP SIGHTS ---------- */
.sights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.sight-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8eef5;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--statue);
}
.sight-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(14,94,140,0.12);
  line-height: 1;
}
.sight-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.sight-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.55; flex: 1; }
.btn-sight {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--statue);
  background: transparent;
  border: 1.5px solid var(--statue);
  border-radius: 100px;
  padding: 7px 16px;
  align-self: flex-start;
  transition: all var(--trans);
}
.btn-sight:hover { background: var(--statue); color: #fff; }

/* ---------- ITINERARY ---------- */
.itinerary-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.itin-bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(14,94,140,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 10% 80%, rgba(244,183,64,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.itinerary-section .sec-header h2 { color: #fff; }
.itinerary-section .sec-header p { color: rgba(255,255,255,0.65); }
.itin-tag { color: var(--gold); background: rgba(244,183,64,0.12); }

.itin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.itin-day { position: relative; }
.day-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 5px 18px;
  margin-bottom: 16px;
}
.day-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(6px);
}
.day-card h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.day-stops { display: flex; flex-direction: column; gap: 16px; }
.stop { display: flex; gap: 14px; align-items: flex-start; }
.stop-time {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(244,183,64,0.1);
  border-radius: 6px;
  padding: 4px 8px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 72px;
  text-align: center;
}
.stop-detail strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.stop-detail p { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

.itin-cta-block { text-align: center; }
.itin-note { margin-top: 16px; font-size: 0.88rem; color: rgba(255,255,255,0.55); }

/* ---------- WHY US ---------- */
.why-section { background: var(--softgray); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8eef5;
  transition: transform var(--trans), box-shadow var(--trans);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-ico { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ---------- REVIEWS ---------- */
.reviews-rating-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.overall-score { text-align: center; }
.big-score {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stars-display { font-size: 1.2rem; margin: 4px 0; color: var(--gold); }
.score-lbl { font-size: 0.82rem; color: var(--muted); font-family: var(--font-head); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8eef5;
  position: relative;
  transition: transform var(--trans);
}
.review-card:hover { transform: translateY(-4px); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(14,94,140,0.1);
  line-height: 1;
}
.review-stars { font-size: 0.95rem; margin-bottom: 12px; }
.review-text {
  font-size: 0.92rem;
  color: var(--darktext);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.review-tour {
  font-size: 0.75rem;
  color: var(--statue);
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.review-name { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--navy); }
.review-country { font-size: 0.78rem; color: var(--muted); }

/* ---------- HOTELS (Expedia + RideShare) ---------- */
.hotels-section { background: #fff; }
.hotels-intro {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
  margin-top: 12px;
}
.text-gold { color: var(--gold-bright); }

.expedia-widget-wrap { margin-bottom: 40px; }
.expedia-widget {
  background: linear-gradient(145deg, #002147 0%, #0a2847 100%);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.expedia-widget-header { margin-bottom: 20px; }
.expedia-widget-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.expedia-widget-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.expedia-widget-sub {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.55;
  max-width: 520px;
}
.expedia-widget-form { display: flex; flex-direction: column; gap: 16px; }
.expedia-widget-fields {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.7fr;
  gap: 12px;
}
.expedia-field { display: flex; flex-direction: column; gap: 6px; }
.expedia-field-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.expedia-field input,
.expedia-field select {
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 10px 12px;
}
.expedia-field input:focus,
.expedia-field select:focus {
  border-color: var(--gold);
  outline: none;
  background: rgba(255,255,255,0.14);
}
.expedia-field select option { color: var(--navy); background: #fff; }
.btn-expedia-search {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  color: var(--navy);
  border: none;
  border-radius: 100px;
  padding: 12px 28px;
  align-self: flex-start;
  transition: background var(--trans), transform var(--trans);
}
.btn-expedia-search:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  transform: translateY(-1px);
}
.expedia-widget-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin: 16px 0 0;
  line-height: 1.5;
}
.expedia-widget-note a { color: var(--gold); }

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}
.hotel-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e8edf2;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}
.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(7,27,51,0.14);
}
.hotel-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f5f3ef;
}
.hotel-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.hotel-card:hover .hotel-card-photo { transform: scale(1.04); }
.hotel-card-visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hotel-card-fallback {
  width: 100%;
  height: 100%;
  min-height: 200px;
}
.hotel-card-emoji { font-size: 2.5rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2)); }
.hotel-occupancy {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.35);
  color: #fff;
  border-radius: 100px;
  padding: 4px 10px;
}
.hotel-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  font-family: var(--font-body);
}
.hotel-card-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hotel-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }
.hotel-price-range {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}
.hotel-price-note {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
}
.hotel-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
}
.hotel-neighborhood {
  font-size: 0.8125rem;
  color: var(--statue);
  margin: 0;
}
.hotel-note {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.hotel-amenity {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid #e5e5e5;
  border-radius: 100px;
  padding: 3px 9px;
  color: var(--navy);
}
.hotel-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn-hotel-expedia {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  padding: 9px 14px;
  text-decoration: none;
  transition: background var(--trans);
}
.btn-hotel-expedia:hover { background: var(--statue); color: #fff; }

.rideshare {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eef2f6;
}
.rideshare--compact { margin-top: 8px; padding-top: 8px; }
.rideshare-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.rideshare-links { display: flex; gap: 6px; flex-wrap: wrap; }
.rideshare-btn {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 5px 12px;
  text-decoration: none;
  transition: opacity var(--trans);
}
.rideshare-btn:hover { opacity: 0.85; }
.rideshare-uber { background: #000; color: #fff; }
.rideshare-lyft { background: #ff00bf; color: #fff; }

@media (max-width: 900px) {
  .expedia-widget-fields { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .expedia-widget { padding: 20px 18px; }
  .expedia-widget-fields { grid-template-columns: 1fr; }
  .btn-expedia-search { width: 100%; text-align: center; }
  .hotels-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--softgray); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8eef5;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  transition: background var(--trans);
}
.faq-q:hover { background: var(--softgray); }
.faq-q .faq-icon {
  font-size: 1.2rem;
  color: var(--statue);
  transition: transform var(--trans);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ---------- CONTACT ---------- */
.contact-section { background: #fff; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.ci-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--darktext);
}
.ci-item span:first-child { font-size: 1.1rem; flex-shrink: 0; }
.btn-wa-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 100px;
  padding: 12px 24px;
  transition: background var(--trans), transform var(--trans);
}
.btn-wa-contact:hover { background: #1ebe5d; transform: translateY(-2px); color: #fff; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-success-msg {
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.3);
  color: var(--success);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
}

/* ---------- NEWSLETTER ---------- */
.newsletter-section { background: var(--navy); padding: 64px 0; }
.nl-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.nl-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.nl-text p { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.nl-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nl-form input {
  flex: 1;
  border: none;
  border-radius: 0;
  height: 52px;
  padding: 0 24px;
  font-size: 0.95rem;
}
.nl-form input:focus { box-shadow: none; }
.btn-nl {
  background: var(--gold-dark);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0 28px;
  white-space: nowrap;
  border-radius: 0 100px 100px 0;
  transition: background var(--trans);
}
.btn-nl:hover { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: var(--navy-deep); }
.nl-success {
  margin-top: 18px;
  color: #a7f3d0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #fff;
  color: var(--muted);
  padding: 60px 0 0;
  border-top: 1px solid rgba(197, 160, 89, 0.25);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e8eef5;
}
.footer-brand-col {
  align-self: start;
}
.footer-logo-mark {
  margin-bottom: 16px;
  line-height: 0;
  display: block;
  width: 100%;
  max-width: 100%;
}
.footer-logo-img {
  display: block;
  width: var(--logo-footer-w);
  max-width: 100%;
  height: auto;
  aspect-ratio: var(--logo-ratio);
  object-fit: contain;
  object-position: left top;
  vertical-align: top;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.soc-link {
  width: 36px;
  height: 36px;
  background: var(--gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--statue);
  transition: all var(--trans);
}
.soc-link:hover { background: var(--statue); color: #fff; transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a, .footer-col ul li span {
  font-size: 0.86rem;
  color: var(--muted);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--statue); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid #e8eef5;
}
.copy { font-size: 0.78rem; color: var(--muted); }
.copy a { color: var(--statue); text-decoration: none; transition: color var(--trans); }
.copy a:hover { color: var(--navy); text-decoration: underline; }
.footer-tagline { font-size: 0.78rem; color: rgba(7,27,51,0.45); font-style: italic; }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 0.78rem; color: var(--muted); transition: color var(--trans); }
.footer-legal-links a:hover { color: var(--statue); }

/* ---------- MODALS (SHARED) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7,27,51,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadIn 0.2s ease;
  overflow-y: auto;
}
@keyframes fadIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: #fff;
  border-radius: var(--radius-xl);
  width: 100%;
  position: relative;
  animation: scaleIn 0.28s cubic-bezier(0.34,1.56,0.64,1);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
@keyframes scaleIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-x {
  position: sticky;
  top: 0;
  float: right;
  margin: 16px 16px 0 0;
  width: 36px;
  height: 36px;
  background: var(--softgray);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans), color var(--trans);
  z-index: 10;
}
.modal-x:hover { background: var(--gold); color: var(--navy); }

/* TOUR DETAIL MODAL */
.td-modal { max-width: 880px; }
.td-body { padding: 8px 32px 32px; }
.td-gallery-loading {
  text-align: center;
  padding: 48px 16px;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 0.9rem;
}
.td-gallery { margin-bottom: 24px; }

/* Mosaic: large left + 2×2 right (GetYourGuide-style) */
.td-gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 360px;
}
.td-gallery-single .td-gallery-hero {
  width: 100%;
  height: 360px;
}
.td-gallery-hero {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 0;
}
.td-gallery-grid {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  min-height: 0;
}
.td-gallery-cell {
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
  background: #f5f3ef;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  transition: box-shadow var(--trans);
}
.td-gallery-cell:hover {
  box-shadow: 0 4px 16px rgba(0, 33, 71, 0.12);
}
.td-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f5f3ef;
}

/* Full-screen lightbox */
.td-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 16, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.td-lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.td-lightbox-close {
  position: absolute;
  top: -8px;
  right: 0;
  z-index: 5;
}
.td-lightbox-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  height: min(62vh, 520px);
  background: #0a1a2e;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 56px;
}
.td-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}
.td-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--trans), transform var(--trans);
  z-index: 2;
}
.td-lightbox-nav:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  transform: translateY(-50%) scale(1.05);
}
.td-lightbox-prev { left: 12px; }
.td-lightbox-next { right: 12px; }
.td-lightbox-counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 33, 71, 0.8);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.td-lightbox-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  -webkit-overflow-scrolling: touch;
}
.td-lightbox-thumbs::-webkit-scrollbar { height: 6px; }
.td-lightbox-thumbs::-webkit-scrollbar-thumb {
  background: rgba(197, 160, 89, 0.5);
  border-radius: 3px;
}
.td-lightbox-thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: #f5f3ef;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.td-lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f5f3ef;
}
.td-lightbox-thumb.active {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 1px var(--gold-bright);
}

.td-img {
  height: 240px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 24px;
}
.td-header-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.td-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.td-source-btn {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--statue);
  background: rgba(14,94,140,0.08);
  border: 1px solid rgba(14,94,140,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  text-decoration: none;
  transition: all var(--trans);
}
.td-source-btn:hover { background: var(--statue); color: #fff; }
.td-title { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.td-cat { font-size: 0.75rem; font-weight: 700; color: var(--statue); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.td-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.td-note {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}
.td-price-inline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.td-discount-pill {
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 2px 10px;
  letter-spacing: 0.04em;
}
.td-extra-source { margin-top: 12px; }
.td-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  background: var(--softgray);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 22px;
}
.td-meta-item { display: flex; flex-direction: column; gap: 2px; }
.td-meta-label { font-size: 0.6875rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }
.td-meta-val { font-size: 0.875rem; font-weight: 400; color: var(--navy); line-height: 1.45; }
.td-section-title { font-size: 0.9375rem; font-weight: 700; color: var(--navy); margin: 20px 0 10px; letter-spacing: 0.02em; }
.td-inc-list { display: flex; flex-direction: column; gap: 6px; }
.td-inc-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.875rem; color: var(--darktext); line-height: 1.5; }
.td-inc-item.included::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.td-inc-item.excluded::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.td-itin { display: flex; flex-direction: column; gap: 8px; position: relative; }
.td-itin::before {
  content: '';
  position: absolute;
  left: 12px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--statue), var(--gold));
}
.td-itin-stop {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-left: 8px;
}
.td-itin-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--statue);
  flex-shrink: 0;
  margin-top: 5px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--statue);
  position: relative;
  z-index: 1;
}
.td-itin-name { font-size: 0.875rem; font-weight: 700; color: var(--navy); line-height: 1.4; }
.td-itin-dur { font-size: 0.8125rem; color: var(--muted); }
.td-price-box {
  background: var(--softgray);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.td-price { font-size: 1.875rem; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; }
.td-old-price { font-size: 1.0625rem; color: var(--muted); text-decoration: line-through; }
.td-price-type { font-size: 0.8125rem; color: var(--muted); }
.td-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.td-cancel { font-size: 0.8125rem; color: var(--muted); margin-top: 10px; line-height: 1.5; }

/* BOOKING MODAL */
.booking-modal-box { max-width: 620px; }
.bm-header { padding: 24px 32px 0; }
.bm-header h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.bm-demo-note { font-size: 0.82rem; color: var(--muted); }

.bm-steps {
  display: flex;
  padding: 20px 32px;
  gap: 4px;
  position: relative;
}
.bm-steps::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 52px;
  right: 52px;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}
.bm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.s-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--muted);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
}
.bm-step.active .s-num { background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright)); color: var(--navy); }
.bm-step.done .s-num { background: var(--navy); color: #fff; }
.s-lbl { font-size: 0.68rem; color: var(--muted); font-family: var(--font-head); font-weight: 600; }
.bm-step.active .s-lbl { color: var(--gold-dark); }

.bm-step-content { padding: 8px 32px 32px; }
.bm-step-inner { display: flex; flex-direction: column; gap: 16px; }
.bm-label {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
  display: block;
}
.bm-label--gap { margin-top: 14px; }
.bm-hint {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}
.bm-guest-label {
  font-size: 0.875rem;
  color: var(--muted);
  margin-left: 8px;
}
.bm-preview-wrap { margin-top: 18px; }
.bm-nav { display: flex; gap: 10px; justify-content: space-between; margin-top: 20px; }
.btn-bm-back {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--muted);
  background: transparent;
  border: 1.5px solid #d8e2ec;
  border-radius: 100px;
  padding: 10px 24px;
  transition: all var(--trans);
}
.btn-bm-back:hover { border-color: var(--navy); color: var(--navy); }
.btn-bm-next {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  border-radius: 100px;
  padding: 10px 28px;
  transition: background var(--trans);
}
.btn-bm-next:hover { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: var(--navy-deep); }

.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.time-slot {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  background: #fff;
  border: 1.5px solid #d8e2ec;
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
  transition: all var(--trans);
}
.time-slot.selected { background: var(--navy); color: #fff; border-color: var(--navy); }
.time-slot:hover { border-color: var(--statue); color: var(--statue); }

.guest-counter { display: flex; align-items: center; gap: 12px; }
.counter-btn {
  width: 36px; height: 36px;
  background: var(--softgray);
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  transition: background var(--trans);
}
.counter-btn:hover { background: var(--navy); color: #fff; }
.counter-val {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 28px;
  text-align: center;
}

.bm-price-summary {
  background: var(--softgray);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.bm-price-row { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 6px; line-height: 1.45; }
.bm-price-row--muted { font-size: 0.8125rem; color: var(--muted); }
.bm-price-row--success { color: var(--success); }
.bm-price-total { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.0625rem; border-top: 1px solid #d8e2ec; margin-top: 10px; padding-top: 10px; }

.bm-confirm {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  text-align: center;
}
.confirm-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.confirm-emoji { font-size: 2.5rem; margin-bottom: 10px; line-height: 1; }
.confirm-label {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.confirm-details {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 22px;
}
.confirm-details strong {
  font-family: var(--font-head);
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}
.confirm-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  line-height: 1.55;
}
.btn-account-link { margin-bottom: 8px; display: inline-block; }
.btn-wa-confirm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 100px;
  padding: 12px 24px;
  transition: background var(--trans);
}
.btn-wa-confirm:hover { background: #1ebe5d; color: #fff; }

/* ADMIN MODAL */
.admin-overlay { align-items: flex-start; }
.admin-modal-box {
  max-width: 960px;
  margin: 20px auto;
  max-height: calc(100vh - 40px);
}
.admin-head { padding: 24px 32px 0; }
.admin-head h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.admin-head p { font-size: 0.88rem; color: var(--muted); }

.admin-nav-tabs {
  display: flex;
  gap: 4px;
  padding: 16px 32px;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
}
.at {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  transition: all var(--trans);
}
.at:hover { color: var(--navy); background: var(--softgray); }
.at.active { color: var(--navy); background: var(--softgray); border-color: #d8e2ec; }

.admin-body { padding: 24px 32px 32px; }

.admin-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.admin-stat-card {
  background: var(--softgray);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  text-align: center;
}
.admin-stat-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: 4px; }
.admin-stat-lbl { font-size: 0.78rem; color: var(--muted); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.admin-section-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }

.admin-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.admin-table th {
  text-align: left;
  padding: 10px 12px;
  background: var(--softgray);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.admin-table td { padding: 12px 12px; border-bottom: 1px solid #f0f4f8; color: var(--darktext); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(238,243,247,0.6); }

.importer-box { display: flex; flex-direction: column; gap: 18px; }
.importer-box textarea {
  min-height: 100px;
  resize: vertical;
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.importer-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-admin {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  padding: 9px 18px;
  transition: all var(--trans);
}
.btn-admin-primary { background: var(--navy); color: #fff; }
.btn-admin-primary:hover { background: #0a2d52; }
.btn-admin-secondary { background: var(--softgray); color: var(--navy); border: 1.5px solid #d8e2ec; }
.btn-admin-secondary:hover { background: #d8e2ec; }
.btn-admin-danger { background: #fee2e2; color: #991b1b; border: 1.5px solid #fca5a5; }
.btn-admin-danger:hover { background: #fca5a5; }

.importer-status {
  background: var(--softgray);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  min-height: 44px;
  color: var(--muted);
}
.importer-preview {
  background: var(--softgray);
  border-radius: var(--radius-md);
  padding: 18px;
  display: none;
}
.preloaded-urls { display: flex; flex-direction: column; gap: 6px; }
.preloaded-url {
  font-size: 0.8rem;
  color: var(--statue);
  cursor: pointer;
  padding: 6px 10px;
  background: rgba(14,94,140,0.06);
  border-radius: 6px;
  transition: background var(--trans);
  word-break: break-all;
}
.preloaded-url:hover { background: rgba(14,94,140,0.14); }

.tour-editor-form { display: flex; flex-direction: column; gap: 14px; }

/* ---------- FLOATING BUTTONS ---------- */
.fab-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 800;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: transform var(--trans), box-shadow var(--trans);
  animation: pulse-green 3s infinite;
}
.fab-whatsapp:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

.fab-top {
  position: fixed;
  bottom: 90px;
  left: 24px;
  z-index: 800;
  width: 44px; height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--trans);
}
.fab-top:hover { background: var(--statue); transform: translateY(-3px); }

/* Live booking bubble — left side */
.live-book-bubble {
  position: fixed;
  left: 20px;
  bottom: 28px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 12px;
  max-width: calc(100vw - 100px);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 28px 28px 28px 6px;
  box-shadow: 0 6px 24px rgba(197, 160, 89, 0.45), 0 2px 8px rgba(0, 33, 71, 0.15);
  cursor: pointer;
  opacity: 0;
  transform: translateX(-24px) scale(0.92);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow var(--trans);
}
.live-book-bubble.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  animation: liveBubbleBob 4s ease-in-out infinite;
}
.live-book-bubble:hover {
  box-shadow: 0 10px 32px rgba(197, 160, 89, 0.55), 0 4px 12px rgba(0, 33, 71, 0.2);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
}
.live-book-bubble__ring {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid rgba(212, 175, 55, 0.55);
  animation: liveBubbleRing 2.2s ease-out infinite;
  pointer-events: none;
}
.live-book-bubble__live {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 100px;
  background: #16a34a;
  color: #fff;
  line-height: 1;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: liveDotPulse 1.8s ease-in-out infinite;
}
.live-book-bubble__icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  color: var(--navy-deep);
}
.live-book-bubble__text {
  white-space: nowrap;
  line-height: 1.2;
}
@keyframes liveBubbleBob {
  0%, 100% { transform: translateX(0) translateY(0) scale(1); }
  50% { transform: translateX(0) translateY(-5px) scale(1); }
}
@keyframes liveBubbleRing {
  0% { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(1.12); opacity: 0; }
}
@keyframes liveDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
}

/* ---------- ANIMATIONS ---------- */
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .desktop-nav ul { gap: 2px; }
  .desktop-nav ul li a { font-size: 0.77rem; padding: 5px 7px; }
  :root {
    --logo-header-w: clamp(170px, 32vw, 360px);
    --logo-footer-w: clamp(220px, 46vw, 440px);
  }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .itin-grid { grid-template-columns: 1fr; gap: 20px; }
  .admin-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { gap: 40px; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-float-card { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  :root {
    --logo-header-h: calc(var(--header-h) - 8px);
    --logo-header-w: clamp(180px, 58vw, 285px);
    --logo-footer-w: clamp(200px, 86vw, 380px);
  }
  .site-header .header-inner.container { padding-left: 14px; }
  .site-header .logo {
    margin-left: -16px;
    max-width: min(var(--logo-header-w), 58vw);
  }
  .live-book-bubble { font-size: 0.82rem; padding: 10px 14px 10px 10px; left: 14px; bottom: 22px; }
  .live-book-bubble__text { white-space: normal; max-width: 9.5rem; line-height: 1.25; }
  .bm-steps::after { display: none; }
  .admin-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tours-hub-toolbar .tours-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 12px;
  }
  .tours-hub-toolbar .search-wrap,
  .tours-hub-toolbar .sort-wrap,
  .tours-hub-toolbar .sort-wrap select {
    width: 100%;
    min-width: 0;
  }
  .tours-controls { margin-bottom: 20px; }
  .sec-header { margin-bottom: 40px; }
  .newsletter-section { padding: 48px 0; }
  .mobile-menu-inner { max-width: min(100%, 400px); }
}

@media (max-width: 640px) {
  :root {
    --header-h: 78px;
    --logo-header-h: calc(var(--header-h) - 6px);
    --logo-header-w: clamp(168px, 62vw, 248px);
    --logo-footer-w: clamp(180px, 90vw, 300px);
  }
  html { font-size: 15px; }
  .container { padding: 0 16px; }
  .sec-pad { padding: 48px 0; }
  .sec-pad--compact { padding-top: 40px; padding-bottom: 40px; }
  .sec-header { margin-bottom: 32px; }
  .sec-header h2 { font-size: 1.55rem; }
  .sec-header p { font-size: 0.95rem; }

  /* Header */
  .header-inner { gap: 8px; }
  .site-header .header-inner.container { padding-left: 11px; }
  .site-header .logo {
    margin-left: -18px;
    max-width: min(var(--logo-header-w), 62vw);
  }
  .header-right { gap: 5px; }
  .btn-book-now { padding: 7px 12px; font-size: 0.76rem; }
  .btn-header-account { padding: 7px 12px; font-size: 0.76rem; }

  /* Cookie */
  .cookie-consent { bottom: 72px; padding: 0 12px; }
  .cookie-consent .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 16px 18px;
    gap: 12px;
  }
  .cookie-actions { justify-content: center; }

  /* Hero */
  .hero-section { min-height: auto; }
  .hero-text h1 { font-size: 1.85rem; line-height: 1.15; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 24px; }
  .hero-content { padding: 40px 16px 72px; }
  .hero-eyebrow { font-size: 0.72rem; margin-bottom: 14px; }
  .hero-ctas { flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .hero-btn-main, .hero-btn-sec, .btn-outline { width: 100%; justify-content: center; }
  .hero-trust-row { gap: 8px; }
  .trust-chip { font-size: 0.72rem; padding: 5px 10px; flex: 1 1 calc(50% - 4px); justify-content: center; min-width: 0; }
  .hero-scroll-hint { bottom: 16px; }

  /* Stats */
  .stats-strip { padding: 20px 0; }
  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 8px;
    justify-content: stretch;
  }
  .stat-item { padding: 10px 8px; }
  .stat-num { font-size: 1.45rem; }
  .stat-lbl { font-size: 0.72rem; }
  .stat-divider { display: none; }

  /* Tours hub */
  .tours-hub-head h2 { font-size: 1.55rem; }
  .tours-hub-sub { font-size: 0.88rem; }
  .tours-hub-toolbar { padding: 14px 14px 10px; margin-bottom: 20px; }
  .hotels-hub-block { padding: 16px 14px 18px; }
  .hub-section-label { font-size: 0.92rem; }
  .hub-section-desc { font-size: 0.82rem; margin-bottom: 12px; }
  .tour-grid { gap: 20px; }
  .tab-btn { font-size: 0.76rem; padding: 7px 14px; }
  .card-img-wrap { height: 180px; }
  .card-body { padding: 14px 16px 16px; }
  .card-title { font-size: 1rem; }
  .card-actions { flex-direction: column; }
  .btn-check, .btn-details { flex: none; width: 100%; }
  .xmas-chips { gap: 6px; margin-bottom: 28px; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; padding-bottom: 4px; }
  .xmas-chips::-webkit-scrollbar { display: none; }
  .chip { font-size: 0.76rem; padding: 6px 12px; flex-shrink: 0; }
  .gyg-categories-wrap--hub { gap: 10px; }
  .gyg-category-strip { padding: 8px 12px; }
  .gyg-category-strip-title { font-size: 0.82rem; }
  .gyg-category-widgets--compact { padding: 4px 2px 6px; }
  .hub-block { margin-bottom: 16px; }
  .hotels-hub-block { padding: 14px 12px 16px; }
  .expedia-widget-wrap--hub { margin-bottom: 12px; }
  .tours-hub-hotels { margin-bottom: 16px; }
  .internal-tours-block { margin-bottom: 0; }
  .card-img-photo,
  .td-img-photo { object-fit: cover; }
  .card-body { padding: 14px 14px 16px; }
  .card-desc { margin-bottom: 8px; -webkit-line-clamp: 2; }
  .card-meta { margin-bottom: 8px; }
  .card-rating-row { margin-bottom: 10px; }
  .card-price-row { margin-bottom: 10px; }

  /* Hotels */
  .hotel-card-img-wrap { height: 170px; }
  .hotel-card-body { padding: 14px 16px 16px; }
  .hotel-card-actions { flex-direction: column; }
  .btn-hotel-expedia { width: 100%; text-align: center; }
  .rideshare { flex-wrap: wrap; }

  /* Sights / why / reviews */
  .sights-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sight-card { padding: 18px 16px; }
  .sight-num { font-size: 1.8rem; }
  .why-card { padding: 24px 20px; }
  .why-icon { font-size: 2rem; }
  .big-score { font-size: 3rem; }
  .review-card { padding: 20px 18px; }
  .review-card::before { font-size: 3rem; right: 16px; }

  /* FAQ / contact */
  .faq-q { padding: 16px 18px; font-size: 0.9rem; gap: 12px; }
  .faq-a { font-size: 0.88rem; }
  .faq-item.open .faq-a { padding: 0 18px 16px; }
  .btn-wa-contact { width: 100%; justify-content: center; }

  /* Itinerary */
  .day-card { padding: 18px; }
  .stop { gap: 10px; }
  .stop-time { min-width: 64px; font-size: 0.68rem; }

  /* Footer */
  .site-footer { padding-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
  }
  .footer-legal-links { justify-content: center; gap: 12px; }

  /* Modals */
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 96vh;
    max-height: 96dvh;
  }
  .td-modal,
  .booking-modal-box,
  .auth-modal-box,
  .admin-modal-box {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 96vh;
    max-height: 96dvh;
  }
  .td-body { padding: 8px 16px 24px; }
  .td-gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }
  .td-gallery-hero {
    grid-column: 1;
    grid-row: auto;
    height: 200px;
  }
  .td-gallery-grid {
    grid-column: 1;
    grid-row: auto;
    height: 180px;
  }
  .td-gallery-single .td-gallery-hero { height: 220px; }
  .td-lightbox-stage { height: 45vh; padding: 12px 36px; }
  .td-lightbox-nav { width: 34px; height: 34px; font-size: 1.1rem; }
  .td-title { font-size: 1.25rem; }
  .td-meta-grid { grid-template-columns: 1fr 1fr; padding: 14px; gap: 10px; }
  .td-price-box { flex-direction: column; align-items: flex-start; padding: 16px 18px; }
  .td-price { font-size: 1.5rem; }
  .td-ctas { flex-direction: column; width: 100%; }
  .td-ctas .btn-primary,
  .td-ctas .btn-check,
  .td-ctas .btn-details { width: 100%; justify-content: center; }
  .bm-header, .bm-steps, .bm-step-content { padding-left: 16px; padding-right: 16px; }
  .bm-header h2 { font-size: 1.25rem; }
  .bm-steps { padding: 14px 16px; gap: 2px; }
  .s-lbl { font-size: 0.6rem; }
  .s-num { width: 28px; height: 28px; font-size: 0.78rem; }
  .bm-nav { flex-direction: column-reverse; gap: 8px; }
  .btn-bm-back, .btn-bm-next { width: 100%; text-align: center; justify-content: center; }
  .bm-confirm { padding: 22px 18px; }
  .confirm-num { font-size: 1.6rem; }
  .auth-modal-box { padding: 22px 18px 28px; max-width: 100%; }
  .admin-modal-box { border-radius: var(--radius-lg) var(--radius-lg) 0 0; margin: 0; }
  .admin-head, .admin-nav-tabs, .admin-body { padding-left: 16px; padding-right: 16px; }
  .admin-nav-tabs { gap: 6px; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; padding-bottom: 12px; }
  .admin-nav-tabs::-webkit-scrollbar { display: none; }
  .admin-nav-tabs .at { flex-shrink: 0; font-size: 0.78rem; padding: 8px 12px; }
  .admin-grid-4 { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Newsletter */
  .nl-form { flex-direction: column; border-radius: var(--radius-md); overflow: visible; max-width: 100%; }
  .nl-form input { border-radius: var(--radius-sm); height: 48px; }
  .btn-nl { border-radius: var(--radius-sm); padding: 12px 24px; width: 100%; }

  /* Booking extras */
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .time-slot { font-size: 0.82rem; padding: 8px; }

  /* Floating UI */
  .fab-whatsapp {
    bottom: 78px;
    right: 14px;
    width: 50px;
    height: 50px;
  }
  .fab-whatsapp svg { width: 24px; height: 24px; }
  .fab-top {
    bottom: 78px;
    left: 14px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .live-book-bubble {
    left: 12px;
    bottom: 16px;
    max-width: calc(100vw - 80px);
    padding: 10px 12px 10px 10px;
    font-size: 0.78rem;
  }
  .live-book-bubble__text { max-width: 7.5rem; }
}

@media (max-width: 400px) {
  :root {
    --header-h: 72px;
    --logo-header-h: calc(var(--header-h) - 6px);
    --logo-header-w: clamp(152px, 64vw, 218px);
  }
  .site-header .header-inner.container { padding-left: 9px; }
  .site-header .logo {
    margin-left: -20px;
    max-width: min(var(--logo-header-w), 64vw);
  }
  .container { padding: 0 14px; }
  .hero-text h1 { font-size: 1.65rem; }
  .trust-chip { flex: 1 1 100%; }
  .stats-row { grid-template-columns: 1fr; }
  .sights-grid { grid-template-columns: 1fr; }
  .td-meta-grid { grid-template-columns: 1fr; }
  .admin-grid-4 { grid-template-columns: 1fr; }
  .tab-btn { font-size: 0.72rem; padding: 6px 12px; }
  .btn-book-now { padding: 7px 11px; font-size: 0.72rem; }
  .live-book-bubble__text { display: none; }
  .live-book-bubble { padding: 10px 12px; border-radius: 50%; }
}

/* Safe area (notched phones) */
@supports (padding: max(0px)) {
  .cookie-consent { padding-left: max(12px, env(safe-area-inset-left)); padding-right: max(12px, env(safe-area-inset-right)); }
  .fab-whatsapp { right: max(14px, env(safe-area-inset-right)); bottom: max(78px, calc(16px + env(safe-area-inset-bottom))); }
  .fab-top { left: max(14px, env(safe-area-inset-left)); bottom: max(78px, calc(16px + env(safe-area-inset-bottom))); }
  .live-book-bubble {
    left: max(12px, env(safe-area-inset-left));
    bottom: max(16px, env(safe-area-inset-bottom));
  }
  .modal-box { padding-bottom: max(0px, env(safe-area-inset-bottom)); }
}
