/* ==========================================================================
   Boat Trip Barcelona - Luminous Mediterranean Luxury Design System
   Bright, Crisp, High-Contrast Light Theme with Official Logo Integration
   ========================================================================== */

:root {
  /* Luxury Mediterranean Marine Palette */
  --bg-deep: #F8FAFC;
  --bg-light: #FFFFFF;
  --bg-section-alt: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.88);

  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.15);
  --border-glow: rgba(212, 175, 55, 0.4);

  --accent-cyan: #0284C7;
  --accent-blue: #0F172A;
  --accent-navy: #0A192F;
  --accent-gold: #D4AF37;
  --accent-gold-light: #F3E7C4;
  --accent-gold-dark: #AA771C;
  --accent-rose: #E63946;
  --accent-teal: #0EA5E9;

  /* Conversion CTA palette: lively Mediterranean blue, AA-readable with white text */
  --cta-primary: #0A73C9;
  --cta-primary-deep: #0067B8;
  --cta-primary-active: #06558F;
  --cta-gradient: linear-gradient(135deg, #0A73C9 0%, #006BBE 100%);
  --cta-gradient-hover: linear-gradient(135deg, #0868B4 0%, #005DA8 100%);
  --cta-shadow: 0 9px 24px rgba(10, 115, 201, 0.25);
  --cta-shadow-hover: 0 13px 30px rgba(0, 103, 184, 0.32);
  --cta-focus: rgba(10, 115, 201, 0.32);

  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Blurs */
  --shadow-sm: 0 4px 14px rgba(0, 40, 80, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 40, 80, 0.09);
  --shadow-lg: 0 16px 40px rgba(0, 40, 80, 0.12);
  --shadow-gold: 0 8px 25px rgba(245, 158, 11, 0.25);
  --blur-card: blur(16px);

  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 120px;
  --header-height-scrolled: 108px;
}

/* Reset & Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--cta-gradient);
  color: #FFFFFF;
  box-shadow: var(--cta-shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--cta-gradient-hover);
  box-shadow: var(--cta-shadow-hover);
  color: #FFFFFF;
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--accent-blue);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-deep);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--cta-gradient);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: var(--cta-shadow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: var(--cta-gradient-hover);
  box-shadow: var(--cta-shadow-hover);
  color: #FFFFFF;
}

.btn-hero-gold {
  background: var(--cta-gradient);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2.2rem;
  box-shadow: var(--cta-shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-gold:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--cta-gradient-hover);
  box-shadow: var(--cta-shadow-hover);
  color: #FFFFFF;
}

.btn-hero-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 1rem;
  padding: 0.95rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  min-height: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  min-height: 0;
  padding: 0;
  box-shadow: var(--shadow-md);
}

.top-bar {
  min-height: 36px;
  background: linear-gradient(100deg, #071C2C 0%, #0B3553 58%, #075E78 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.top-bar-inner,
.top-bar-contact,
.top-bar-direct {
  display: flex;
  align-items: center;
}

.top-bar-inner {
  min-height: 36px;
  justify-content: space-between;
  gap: 1.25rem;
}

.top-bar-contact {
  gap: 1.25rem;
  min-width: 0;
}

.top-bar-contact a,
.top-bar-location,
.top-bar-direct {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.top-bar-contact a,
.top-bar-direct {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.top-bar-contact a:hover,
.top-bar-direct:hover {
  color: #FFFFFF;
  opacity: 0.82;
}

.top-bar i {
  color: #7DD3FC;
}

.top-bar-direct {
  flex: 0 0 auto;
  font-weight: 700;
}

.top-bar-direct .fa-whatsapp {
  color: #86EFAC;
  font-size: 0.9rem;
}

.top-bar-direct-mobile {
  display: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 2.5vw, 2.6rem);
  min-height: 84px;
  transition: min-height var(--transition-normal);
}

.navbar.scrolled .nav-container {
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.navbar.scrolled .logo img {
  height: 56px;
}

.logo:hover img {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(0.9rem, 1.55vw, 1.65rem);
  list-style: none;
  margin-left: auto;
}

.nav-menu > li {
  display: flex;
  align-items: center;
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #30384F;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.98rem;
  letter-spacing: -0.012em;
  transition: color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--cta-primary);
}

.nav-menu > li > .nav-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0EA5E9, var(--cta-primary));
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav-menu > li > .nav-link:hover::after,
.nav-menu > li > .nav-link:focus-visible::after,
.nav-item-dropdown.open > .nav-dropdown-toggle::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-link-with-icon i {
  font-size: 0.66rem;
  transition: transform var(--transition-fast);
}

.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.nav-item-dropdown.open > .nav-dropdown-toggle,
.nav-dropdown-toggle:focus-visible {
  color: var(--cta-primary);
}

.nav-item-dropdown.open > .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown {
  --dropdown-offset: -50%;
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  z-index: 120;
  width: min(790px, calc(100vw - 3rem));
  padding: 0.85rem;
  border: 1px solid rgba(10, 115, 201, 0.16);
  border-top: 3px solid #0EA5E9;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px) saturate(1.35);
  box-shadow: 0 30px 80px rgba(7, 28, 44, 0.19), 0 10px 28px rgba(7, 28, 44, 0.09), inset 0 1px 0 #FFFFFF;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(var(--dropdown-offset), 14px) scale(0.985);
  transform-origin: top center;
  transition: opacity 180ms ease, visibility 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-dropdown::before {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #0EA5E9;
  border-left: 2px solid #0EA5E9;
  background: rgba(255, 255, 255, 0.98);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.nav-item-dropdown.open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(var(--dropdown-offset), 0) scale(1);
}

.nav-dropdown-wide {
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  gap: 0.8rem;
}

.nav-dropdown-intro {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 286px;
  padding: 1.35rem;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(155deg, rgba(4, 25, 43, 0.54) 0%, rgba(5, 62, 91, 0.9) 72%, rgba(2, 80, 117, 0.96) 100%),
    url("assets/images/tour_sailing_6h.jpg") center / cover no-repeat;
  color: #FFFFFF;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 30px rgba(7, 43, 65, 0.17);
}

.nav-dropdown-intro::after {
  position: absolute;
  right: -25px;
  bottom: -38px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.nav-dropdown-eyebrow {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--cta-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-dropdown-intro .nav-dropdown-eyebrow {
  color: #7DD3FC;
}

.nav-dropdown-intro > strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 1.22rem;
  line-height: 1.2;
}

.nav-dropdown-intro p {
  position: relative;
  z-index: 1;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  line-height: 1.5;
}

.nav-dropdown-intro > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown-intro > a:hover,
.nav-dropdown-intro > a:focus-visible {
  gap: 0.7rem;
  color: #BAE6FD;
  outline: none;
}

.nav-dropdown-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.nav-dropdown-links > a,
.nav-dropdown-events > a {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.76rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(248, 251, 253, 0.62);
  color: var(--text-primary);
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.nav-dropdown-links > a:hover,
.nav-dropdown-events > a:hover,
.nav-dropdown-links > a:focus-visible,
.nav-dropdown-events > a:focus-visible {
  border-color: #CDEBFA;
  background: linear-gradient(135deg, #F4FBFF 0%, #EAF7FE 100%);
  box-shadow: 0 8px 20px rgba(10, 115, 201, 0.09);
  outline: none;
  transform: translateX(3px);
}

.nav-dropdown-icon {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1px solid #CDE8F8;
  border-radius: 10px;
  background: linear-gradient(145deg, #F5FBFF 0%, #DDF2FC 100%);
  color: var(--cta-primary);
  font-size: 0.82rem;
  box-shadow: 0 5px 14px rgba(10, 115, 201, 0.09);
}

.nav-dropdown a strong,
.nav-dropdown a small {
  display: block;
}

.nav-dropdown a strong {
  overflow: hidden;
  font-size: 0.8rem;
  line-height: 1.28;
  text-overflow: ellipsis;
}

.nav-dropdown a small {
  margin-top: 0.14rem;
  overflow: hidden;
  color: #64748B;
  font-size: 0.65rem;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.nav-dropdown-events {
  --dropdown-offset: 0;
  left: 0;
  width: 390px;
  padding: 1rem;
}

.nav-dropdown-events::before {
  left: 38px;
}

.nav-dropdown-events > .nav-dropdown-eyebrow {
  padding: 0.25rem 0.7rem 0.55rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-tour-cta {
  min-height: 44px;
  padding: 0.72rem 1.55rem;
  background: var(--cta-gradient);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: var(--cta-shadow);
}

@media (min-width: 1181px) and (hover: hover) and (pointer: fine) {
  .nav-item-dropdown:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(var(--dropdown-offset), 0) scale(1);
  }

  .nav-item-dropdown:hover > .nav-dropdown-toggle {
    color: var(--cta-primary);
  }

  .nav-item-dropdown:hover > .nav-dropdown-toggle::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .nav-item-dropdown:hover > .nav-dropdown-toggle i {
    transform: rotate(180deg);
  }
}

.nav-tour-cta:hover {
  color: #FFFFFF;
  background: var(--cta-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--cta-shadow-hover);
}

/* Language Dropdown Selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  background: var(--bg-deep);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #FFFFFF;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  list-style: none;
  min-width: 150px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 100;
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-item {
  padding: 0.55rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.lang-item:hover, .lang-item.active {
  background: rgba(0, 150, 199, 0.1);
  color: var(--accent-cyan);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Page Views System */
.page-view {
  display: none;
}

.page-view.active {
  display: block;
}

/* Marketplace Experience Detail */
.tour-detail-section {
  padding: var(--header-height) 0 5rem;
  background: #FFFFFF;
}

.detail-top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  color: #64748B;
  font-size: 0.8rem;
}

.breadcrumbs a {
  color: #334155;
  font-weight: 650;
  text-decoration: none;
}

.breadcrumbs a:hover { color: #0284C7; }
.breadcrumbs i { font-size: 0.55rem; color: #94A3B8; }
.breadcrumbs span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.detail-back-button {
  flex: 0 0 auto;
  padding: 0.65rem 0.9rem;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  background: #FFFFFF;
  color: #0F172A;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.detail-back-button:hover {
  border-color: #0284C7;
  color: #0284C7;
  transform: translateY(-1px);
}

.detail-heading {
  max-width: 920px;
  margin-bottom: 1.6rem;
}

.detail-category {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: #0369A1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tour-detail-title {
  max-width: 900px;
  margin-bottom: 0.8rem;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.detail-heading-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1.1rem;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
}

.detail-heading-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.detail-heading-meta i { color: #0284C7; }
.detail-rating i { color: #F59E0B; }
.detail-rating u { color: #0F172A; text-underline-offset: 2px; }

.tour-detail-hero {
  position: relative;
  width: 100%;
  height: min(760px, calc(100svh - var(--header-height)));
  min-height: 580px;
  overflow: hidden;
  isolation: isolate;
  background: #E2E8F0;
}

.tour-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.02);
}

.tour-detail-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 15, 25, 0.46) 0%, rgba(3, 15, 25, 0.24) 32%, rgba(3, 15, 25, 0.68) 100%),
    linear-gradient(90deg, rgba(3, 15, 25, 0.34) 0%, rgba(3, 15, 25, 0.12) 48%, rgba(3, 15, 25, 0.32) 100%);
  pointer-events: none;
}

.tour-detail-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: clamp(1rem, 2vw, 1.6rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.detail-top-nav-on-hero {
  margin-bottom: 0;
}

.breadcrumbs-on-hero,
.breadcrumbs-on-hero a,
.breadcrumbs-on-hero i {
  color: rgba(255, 255, 255, 0.84);
}

.breadcrumbs-on-hero a:hover {
  color: #FFFFFF;
}

.detail-back-button-on-hero {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(3, 15, 25, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(3, 15, 25, 0.1);
}

.detail-back-button-on-hero:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(3, 15, 25, 0.36);
  color: #FFFFFF;
}

.detail-heading-on-hero {
  width: 100%;
  max-width: 1080px;
  margin: auto auto 0;
  text-align: center;
}

.detail-heading-on-hero .detail-category {
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  background: rgba(3, 15, 25, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 18px rgba(3, 15, 25, 0.1);
}

.detail-heading-on-hero .tour-detail-title {
  max-width: none;
  margin: 0 auto 1rem;
  color: #FFFFFF;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1.01;
  letter-spacing: -0.045em;
  text-shadow: 0 4px 28px rgba(3, 15, 25, 0.56);
}

.detail-hero-summary {
  max-width: 780px;
  margin: 0 auto 1.4rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.55;
  text-shadow: 0 2px 16px rgba(3, 15, 25, 0.54);
}

.detail-heading-meta-on-hero {
  justify-content: center;
  gap: 0.65rem;
  color: #FFFFFF;
}

.detail-heading-meta-on-hero > span {
  min-height: 42px;
  padding: 0.58rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-full);
  background: rgba(3, 15, 25, 0.36);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 7px 22px rgba(3, 15, 25, 0.22);
}

.detail-heading-meta-on-hero i {
  color: #7DD3FC;
}

.detail-hero-assurances {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(3, 15, 25, 0.52);
}

.detail-hero-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.detail-hero-assurances i {
  color: #7DD3FC;
}

.tour-detail-content {
  padding-top: 2.75rem;
}

.tour-detail-hero-badges {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #0F172A;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(2, 8, 23, 0.16);
}

.hero-badge-pill i { color: #0284C7; }

.tour-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 480px);
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: start;
}

.tour-main-content {
  min-width: 0;
}

.experience-social-proof {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.25rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  background: #F8FAFC;
}

.social-proof-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  background: #0F172A;
  color: #FFFFFF;
}

.experience-social-proof strong { color: #0F172A; font-family: var(--font-heading); }
.experience-social-proof p { margin-top: 0.12rem; color: #64748B; font-size: 0.78rem; }
.social-proof-score { display: flex; flex-direction: column; align-items: flex-end; }
.social-proof-score > strong { font-size: 1.35rem; line-height: 1; }
.social-proof-score span { color: #64748B; font-size: 0.7rem; white-space: nowrap; }
.social-proof-score i { color: #F59E0B; }

.tour-section-block {
  margin: 0;
  padding: 2.25rem 0;
  border-bottom: 1px solid #E2E8F0;
}

.tour-section-block:last-child { border-bottom: 0; }

.tour-section-block h2 {
  margin-bottom: 1rem;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.tour-description-text {
  max-width: 760px;
  color: #334155;
  font-size: 1rem;
  line-height: 1.78;
}

.tour-depth-copy {
  display: grid;
  gap: 1.45rem;
}

.tour-depth-copy section {
  padding-left: 1.15rem;
  border-left: 3px solid rgba(2, 132, 199, 0.2);
}

.tour-depth-copy h3 {
  margin-bottom: 0.45rem;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 750;
}

.tour-depth-copy p {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.72;
}

.tour-faq-list {
  display: grid;
  gap: 0.7rem;
}

.tour-faq-item {
  overflow: hidden;
  border: 1px solid #E2E8F0;
  border-radius: 13px;
  background: #FFFFFF;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.035);
}

.tour-faq-item summary {
  display: flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.tour-faq-item summary::-webkit-details-marker { display: none; }
.tour-faq-item summary i { flex: 0 0 auto; color: #0284C7; transition: transform var(--transition-fast); }
.tour-faq-item[open] summary i { transform: rotate(180deg); }

.tour-faq-item p {
  padding: 0 1rem 1rem;
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.65;
}

.related-tours-intro {
  margin: -0.35rem 0 1rem;
  color: #64748B;
  font-size: 0.88rem;
}

.related-tours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.related-tour-link {
  position: relative;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  min-width: 0;
  min-height: 126px;
  align-items: stretch;
  padding: 0 2.6rem 0 0;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  border-radius: 13px;
  background: linear-gradient(145deg, #FFFFFF, #F8FAFC);
  color: #0F172A;
  text-decoration: none;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.related-tour-thumb {
  position: relative;
  display: block;
  min-height: 124px;
  overflow: hidden;
  background: #E2E8F0;
}

.related-tour-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.related-tour-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 0.32rem;
  padding: 1rem 0.7rem 1rem 1rem;
}

.related-tour-meta {
  color: #0284C7;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.related-tour-copy strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  line-height: 1.28;
}

.related-tour-link > i {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: #0284C7;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.related-tour-link:hover {
  border-color: rgba(2, 132, 199, 0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.related-tour-link:hover .related-tour-image { transform: scale(1.06); }
.related-tour-link:hover > i { transform: translate(3px, -50%); }

.tour-highlights-section {
  position: relative;
  isolation: isolate;
  margin: 1.2rem 0;
  padding: 1.7rem;
  overflow: hidden;
  border: 1px solid rgba(2, 132, 199, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 8%, rgba(14, 165, 233, 0.17), transparent 27%),
    linear-gradient(145deg, #F0F9FF 0%, #FFFFFF 48%, #F8FAFC 100%);
  box-shadow: 0 18px 48px rgba(2, 60, 110, 0.08);
}

.tour-highlights-section::before,
.tour-highlights-section::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(14, 165, 233, 0.12);
  border-radius: 50%;
  content: "";
}

.tour-highlights-section::before {
  top: -7rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
}

.tour-highlights-section::after {
  top: -3.75rem;
  right: -1rem;
  width: 10rem;
  height: 10rem;
}

.tour-highlights-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.05rem;
}

.tour-highlights-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  color: #0284C7;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tour-highlights-eyebrow::before {
  width: 1.45rem;
  height: 2px;
  border-radius: 999px;
  background: #38BDF8;
  content: "";
}

.tour-highlights-section .tour-highlights-heading h2 {
  margin-bottom: 0.3rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.tour-highlights-heading p {
  max-width: 610px;
  color: #52647A;
  font-size: 0.91rem;
  line-height: 1.65;
}

.tour-highlights-emblem {
  display: grid;
  flex: 0 0 auto;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid rgba(2, 132, 199, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #0284C7;
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.12);
  font-size: 1.05rem;
  transform: rotate(4deg);
}

.experience-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.experience-highlight {
  position: relative;
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr) auto;
  align-items: center;
  min-height: 84px;
  gap: 0.8rem;
  padding: 0.72rem 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 9px 25px rgba(15, 51, 84, 0.055);
  animation: highlight-card-reveal 0.55s both;
  animation-delay: calc(var(--highlight-index) * 85ms);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.experience-highlight:hover {
  border-color: rgba(2, 132, 199, 0.32);
  box-shadow: 0 16px 32px rgba(2, 83, 136, 0.12);
  transform: translateY(-4px);
}

.experience-highlight-top {
  display: contents;
}

.experience-highlight-icon {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, #E0F2FE, #F0F9FF);
  color: #0284C7;
  box-shadow: inset 0 0 0 1px rgba(2, 132, 199, 0.08);
  font-size: 1.05rem;
  transition: color var(--transition-normal), transform var(--transition-normal);
}

.experience-highlight:hover .experience-highlight-icon {
  color: #0369A1;
  transform: rotate(-5deg) scale(1.06);
}

.experience-highlight-number {
  grid-column: 3;
  grid-row: 1;
  color: #C7D7E7;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.experience-highlight h3 {
  grid-column: 2;
  grid-row: 1;
  color: #1E293B;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.32;
}

.experience-highlight-accent {
  position: absolute;
  right: 0.9rem;
  bottom: 0;
  left: 0.9rem;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #38BDF8, rgba(56, 189, 248, 0));
  opacity: 0.55;
  transform: scaleX(0.34);
  transform-origin: left;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.experience-highlight:hover .experience-highlight-accent {
  opacity: 1;
  transform: scaleX(1);
}

@keyframes highlight-card-reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tour-inclusions-section {
  position: relative;
  padding-top: 2.7rem;
  padding-bottom: 2.7rem;
}

.inclusion-section-heading {
  max-width: 720px;
  margin-bottom: 1.35rem;
}

.inclusion-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  color: #0284C7;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.inclusion-section-eyebrow::before {
  width: 1.35rem;
  height: 2px;
  border-radius: 999px;
  background: #38BDF8;
  content: "";
}

.tour-inclusions-section .inclusion-section-heading h2 {
  margin-bottom: 0.32rem;
  font-size: clamp(1.5rem, 2.7vw, 1.9rem);
}

.inclusion-section-heading p {
  color: #64748B;
  font-size: 0.88rem;
  line-height: 1.65;
}

.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 1rem;
}

.inc-box,
.exc-box {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid #DCE7F1;
  border-radius: 22px;
  background: #FFFFFF;
  box-shadow: 0 15px 38px rgba(15, 51, 84, 0.075);
  animation: inclusion-card-reveal 0.55s both;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

.exc-box {
  animation-delay: 90ms;
}

.inc-box {
  border-color: #CFE9DA;
}

.inc-box::before,
.exc-box::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 3px;
  content: "";
}

.inc-box::before {
  background: linear-gradient(90deg, #55B982, #86D1A7 58%, rgba(134, 209, 167, 0.2));
}

.exc-box::before {
  background: linear-gradient(90deg, #64748B, #94A3B8 58%, rgba(148, 163, 184, 0.18));
}

.inc-box:hover,
.exc-box:hover {
  border-color: rgba(2, 132, 199, 0.26);
  box-shadow: 0 20px 44px rgba(15, 51, 84, 0.11);
  transform: translateY(-3px);
}

.inc-box:hover {
  border-color: rgba(65, 168, 109, 0.38);
  box-shadow: 0 20px 44px rgba(49, 128, 83, 0.12);
}

.inclusion-card-header {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  min-height: 92px;
  padding: 1rem 1.05rem;
  border-bottom: 1px solid rgba(203, 213, 225, 0.65);
}

.inclusion-card-positive .inclusion-card-header {
  background: linear-gradient(135deg, #EEFAF3, #F8FCFA);
}

.inclusion-card-neutral .inclusion-card-header {
  background: linear-gradient(135deg, #F8FAFC, #FFFFFF);
}

.inclusion-card-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 14px;
  font-size: 0.9rem;
}

.inclusion-card-positive .inclusion-card-icon {
  background: linear-gradient(145deg, #45AD73, #70C898);
  color: #FFFFFF;
  box-shadow: 0 8px 18px rgba(69, 173, 115, 0.22);
}

.inclusion-card-neutral .inclusion-card-icon {
  border: 1px solid #D8E2EC;
  background: #FFFFFF;
  color: #64748B;
  box-shadow: 0 7px 16px rgba(71, 85, 105, 0.1);
}

.inclusion-card-label {
  display: block;
  margin-bottom: 0.12rem;
  color: #0284C7;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.inclusion-card-positive .inclusion-card-label {
  color: #2E8357;
}

.inclusion-card-neutral .inclusion-card-label {
  color: #64748B;
}

.inclusion-card-header h3 {
  color: #172033;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.inclusion-card-count {
  padding: 0.34rem 0.52rem;
  border: 1px solid rgba(2, 132, 199, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #64748B;
  font-size: 0.59rem;
  font-weight: 750;
  white-space: nowrap;
}

.inclusion-card-positive .inclusion-card-count {
  border-color: rgba(69, 173, 115, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: #4D7C62;
}

.inc-box ul,
.exc-box ul {
  display: grid;
  gap: 0.16rem;
  padding: 0.85rem;
  list-style: none;
}

.inc-box li,
.exc-box li {
  display: grid;
  grid-template-columns: 1.55rem minmax(0, 1fr);
  align-items: start;
  gap: 0.62rem;
  padding: 0.5rem 0.55rem;
  border-radius: 11px;
  color: #475569;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.inc-box li:hover,
.exc-box li:hover {
  background: #F8FAFC;
  color: #1E293B;
  transform: translateX(2px);
}

.inc-box li i,
.exc-box li i {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border-radius: 8px;
  font-size: 0.62rem;
}

.inc-box li i {
  background: #E5F7EC;
  color: #2F8A5C;
}

.exc-box li i {
  background: #F1F5F9;
  color: #94A3B8;
}

@keyframes inclusion-card-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.itinerary-step {
  display: grid;
  grid-template-columns: 2.15rem 1fr;
  gap: 0.9rem;
  padding: 0 0 1.5rem;
  position: relative;
}

.itinerary-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.15rem;
  bottom: 0;
  left: 1.03rem;
  width: 1px;
  background: #CBD5E1;
}

.itinerary-step-number {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  z-index: 1;
  place-items: center;
  border-radius: 50%;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
}

.itinerary-time {
  display: inline-block;
  margin-bottom: 0.15rem;
  color: #0284C7;
  font-size: 0.72rem;
  font-weight: 800;
}

.itinerary-step h5 {
  margin-bottom: 0.25rem;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.itinerary-step p { color: #64748B; font-size: 0.83rem; line-height: 1.55; }
.meeting-point-copy { margin-bottom: 1rem; color: #475569; line-height: 1.65; }
.meeting-map { overflow: hidden; border: 1px solid #E2E8F0; border-radius: 16px; }
.meeting-map iframe { display: block; border: 0; }

.tour-sticky-sidebar {
  position: sticky;
  top: calc(var(--header-height-scrolled) + 12px);
  scroll-margin-top: calc(var(--header-height-scrolled) + 20px);
}

.sidebar-booking-card {
  padding: 1.35rem;
  border: 1px solid #D8DEE8;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.12);
}

.booking-sidebar-card {
  padding: 1.15rem;
  border-color: #CBD5E1;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
}

.booking-widget-stage {
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.booking-widget-stage .bokunWidget,
.booking-widget-stage .bokunWidget > div,
.booking-widget-stage .bokunWidget iframe {
  width: 100% !important;
  max-width: none !important;
}

.booking-widget-stage .bokunWidget iframe {
  display: block;
  border: 0 !important;
}

.booking-widget-stage .booking-form-panel { margin-top: 0.75rem; }

.sidebar-price-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.sidebar-price-label {
  display: block;
  margin-bottom: 0.1rem;
  color: #64748B;
  font-size: 0.7rem;
  font-weight: 650;
}

.sidebar-price-tag {
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
}

.sidebar-price-unit { color: #64748B; font-size: 0.75rem; font-weight: 600; text-align: right; }
.booking-rating-line {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.85rem 0 1rem;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(2, 132, 199, 0.16);
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.09), rgba(255, 255, 255, 0.96));
  color: #0F172A;
  box-shadow: 0 7px 18px rgba(15, 23, 42, 0.045);
}

.booking-status-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #0284C7, #0EA5E9);
  color: #FFFFFF;
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.22);
}

.booking-rating-line .booking-status-icon i { color: #FFFFFF; }

.booking-status-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.1rem;
}

.booking-status-copy strong {
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 750;
  line-height: 1.25;
}

.booking-status-copy small {
  color: #64748B;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.35;
}
.bokunWidget { margin-bottom: 0.8rem; }

.booking-fallback-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #475569;
  font-size: 0.69rem;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.booking-fallback-link:hover { color: #0284C7; }

.booking-form-panel {
  padding: 1rem;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  background: #F8FAFC;
}

.booking-form-panel h4 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.booking-form-panel h4 i { color: #0284C7; }
.booking-field { margin-bottom: 0.7rem; }
.booking-guests-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.booking-form-panel .form-control { padding: 0.72rem 0.75rem; border-color: #CBD5E1; border-radius: 10px; font-size: 0.82rem; }
.booking-form-panel .form-group label { font-size: 0.72rem; }

.booking-total-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #D8DEE8;
  color: #475569;
  font-size: 0.78rem;
}

.booking-total-row > div {
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

.booking-primary-button {
  display: flex;
  width: 100%;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
  padding: 0.75rem 0.9rem;
  border: 0;
  border-radius: 11px;
  background: var(--cta-gradient);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--cta-shadow);
  transition: all var(--transition-fast);
}

.booking-primary-button:hover {
  background: var(--cta-gradient-hover);
  color: #FFFFFF;
  box-shadow: var(--cta-shadow-hover);
  transform: translateY(-2px);
}
.booking-no-charge { margin-top: 0.65rem; color: #64748B; font-size: 0.67rem; text-align: center; }
.booking-no-charge i { color: #16A34A; }

.guarantees-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #E2E8F0;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 600;
  list-style: none;
}

.guarantees-list li { display: flex; align-items: center; gap: 0.45rem; }
.guarantees-list li i { color: #16A34A; }

.booking-sidebar-guarantees {
  gap: 0.42rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  font-size: 0.67rem;
}

.booking-sidebar-guarantees li {
  align-items: flex-start;
  line-height: 1.4;
}

.mobile-booking-bar { display: none; }

/* Hero Section */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 11rem 0 5rem;
  overflow: hidden;
  background: #0A192F;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-video-bg,
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: brightness(0.96) contrast(1.08) saturate(1.15);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.hero-video-bg.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: 
    radial-gradient(ellipse at 50% 30%, rgba(10, 25, 47, 0.08) 0%, rgba(10, 25, 47, 0.45) 60%, rgba(10, 25, 47, 0.82) 100%),
    linear-gradient(180deg, rgba(10, 25, 47, 0.25) 0%, rgba(10, 25, 47, 0.62) 75%, #0A192F 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 960px;
  position: relative;
  z-index: 2;
}

.hero-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-video-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.3rem 0.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-switch-btn {
  background: transparent;
  border: 1px solid transparent;
  color: rgba(241, 245, 249, 0.75);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: all var(--transition-fast);
}

.video-switch-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.video-switch-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(184, 134, 11, 0.35) 100%);
  border-color: rgba(212, 175, 55, 0.6);
  color: #F3E7C4;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #F3E7C4;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-badge i {
  color: #D4AF37;
  font-size: 0.95rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.6vw, 4.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero-title-gold {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6C8 25%, #D4AF37 65%, #AA771C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(241, 245, 249, 0.92);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 760px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

/* Luxury Trust & Highlights Strip */
.hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: center;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trust-text strong {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.trust-text span {
  color: rgba(203, 213, 225, 0.85);
  font-size: 0.82rem;
  font-weight: 500;
}

@media (max-width: 992px) {
  .hero-trust-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.25rem;
  }
}

@media (max-width: 576px) {
  .hero-trust-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* Features Grid */
.features-section {
  padding: 3.5rem 0;
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 150, 199, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-cyan);
}

.feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Category Tabs */
.tours-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--accent-blue);
  background: #FFFFFF;
  border-color: var(--border-strong);
}

.tab-btn.active {
  background: var(--accent-cyan);
  color: #FFFFFF;
  border-color: var(--accent-cyan);
  box-shadow: 0 4px 16px rgba(0, 150, 199, 0.35);
}

/* Marketplace-style Tour Cards */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.5rem;
}

.tour-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 14px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  outline: none;
}

.tour-card:hover,
.tour-card:focus-visible {
  transform: translateY(-4px);
  border-color: #CBD5E1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.13);
}

.tour-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.22), 0 16px 36px rgba(15, 23, 42, 0.13);
}

.tour-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #E2E8F0;
}

.tour-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover .tour-image {
  transform: scale(1.06);
}

.tour-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  max-width: calc(100% - 1.8rem);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #0F172A;
  padding: 0.42rem 0.72rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tour-badge i {
  color: #0284C7;
}

.tour-body {
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  color: #64748B;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.tour-card-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  color: #0F172A;
  letter-spacing: 0;
  white-space: nowrap;
}

.tour-card-reviews i {
  color: #F59E0B;
}

.tour-card-reviews span {
  color: #64748B;
  font-weight: 600;
}

.tour-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.28;
  margin-bottom: 0.45rem;
  color: #0F172A;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.08rem;
}

.tour-snippet {
  font-size: 0.84rem;
  color: #475569;
  margin-bottom: 0.9rem;
  line-height: 1.48;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
}

.tour-quick-facts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  padding: 0.7rem 0;
  border-top: 1px solid #EEF2F7;
  border-bottom: 1px solid #EEF2F7;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 600;
}

.tour-quick-facts span {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  white-space: nowrap;
}

.tour-quick-facts i {
  color: #0284C7;
}

.tour-inclusions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.8rem 0 1rem;
}

.tour-inclusions-row span {
  max-width: 100%;
  padding: 0.34rem 0.55rem;
  border-radius: var(--radius-full);
  background: #F0FDF4;
  color: #166534;
  font-size: 0.7rem;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tour-inclusions-row i {
  flex: 0 0 auto;
  font-size: 0.62rem;
}

.tour-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.tour-price small {
  display: block;
  margin-bottom: 0.08rem;
  color: #64748B;
  font-size: 0.7rem;
  font-weight: 600;
}

.tour-price div {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.tour-price strong {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  line-height: 1;
  font-weight: 800;
  color: #0F172A;
}

.tour-price span {
  color: #64748B;
  font-size: 0.67rem;
  line-height: 1.25;
}

.btn-card-book {
  background: var(--cta-gradient);
  border: 1px solid var(--cta-primary);
  color: #FFFFFF;
  min-height: 2.55rem;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: var(--cta-shadow);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-card-book:hover {
  background: var(--cta-gradient-hover);
  border-color: var(--cta-primary-deep);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--cta-shadow-hover);
}

/* Luxury VIP Section */
.luxury-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #E2EEF8 50%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.luxury-header .section-tag {
  color: var(--accent-gold-dark);
}

.luxury-header .section-title span {
  color: var(--accent-gold-dark);
}

.luxury-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.luxury-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.luxury-image-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.luxury-badge-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(10, 25, 47, 0.92);
  border: 1px solid var(--accent-gold);
  backdrop-filter: blur(12px);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  color: #FFFFFF;
}

.luxury-badge-overlay h4 {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.luxury-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.perk-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #FFFFFF;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.perk-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.perk-info h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.perk-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* FAQ Accordion */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-deep);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question i {
  color: var(--accent-cyan);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Contact & Meeting Point */
.contact-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info-card {
  background: var(--bg-deep);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid var(--border-strong);
  color: var(--accent-cyan);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}

.info-text h6 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.info-text p, .info-text a {
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
}

/* Form */
.contact-form {
  background: var(--bg-deep);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-control {
  background: #FFFFFF;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-cyan);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form-status.is-error {
  color: #a12622;
}

.contact-form-status.is-success {
  color: #17623e;
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.contact-form .form-control:disabled {
  background: #f4f7f9;
  color: var(--text-secondary);
}

/* Floating Bokun Config Bar */
.bokun-admin-badge {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  background: #0A192F;
  border: 1px solid var(--accent-cyan);
  color: #FFFFFF;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Footer */
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(2, 132, 199, 0.12), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(10, 115, 201, 0.11), transparent 28%),
    #061124;
  color: #FFFFFF;
  border-top: 1px solid rgba(56, 189, 248, 0.18);
  padding: 3.5rem 0 1.5rem;
}

.footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38BDF8 42%, #FF5C69 58%, transparent);
  content: "";
  opacity: 0.75;
}

.footer-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(14, 45, 79, 0.94), rgba(8, 27, 52, 0.92));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.footer-cta-icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, 0.25);
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.12);
  color: #7DD3FC;
  font-size: 1.1rem;
}

.footer-cta-copy > span {
  display: block;
  margin-bottom: 0.18rem;
  color: #7DD3FC;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-cta-copy h2 {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.footer-cta-copy p {
  max-width: 650px;
  margin-top: 0.22rem;
  color: #B6C6D9;
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-cta-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.1rem;
  border-radius: 13px;
  background: var(--cta-gradient);
  color: #FFFFFF;
  box-shadow: var(--cta-shadow);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.footer-cta-button:hover {
  background: var(--cta-gradient-hover);
  box-shadow: var(--cta-shadow-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(2, minmax(170px, 0.8fr)) minmax(245px, 1.1fr);
  gap: clamp(1.75rem, 3vw, 3rem);
  margin: 3.25rem 0 2.6rem;
}

.footer-logo-link {
  display: inline-flex;
  position: relative;
  align-items: center;
}

.footer-logo-link::after {
  position: absolute;
  right: -0.65rem;
  bottom: 0.2rem;
  width: 3px;
  height: 1.15rem;
  border-radius: 999px;
  background: #FF5C69;
  content: "";
}

.footer-logo-image {
  height: 58px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.98;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 1.15rem;
  color: #A9BACD;
  font-size: 0.86rem;
  line-height: 1.7;
}

.footer-port-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 999px;
  background: rgba(14, 45, 79, 0.72);
  color: #D7E7F5;
  font-size: 0.68rem;
  font-weight: 700;
}

.footer-port-badge i {
  color: #38BDF8;
}

.footer-col h5 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-col h5::before {
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: #38BDF8;
  content: "";
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  color: #9FB0C4;
  text-decoration: none;
  font-size: 0.78rem;
  line-height: 1.45;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links a::before {
  width: 0;
  height: 1px;
  margin-right: 0;
  overflow: hidden;
  background: #38BDF8;
  content: "";
  transition: width var(--transition-fast), margin-right var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-links a:hover::before {
  width: 0.75rem;
  margin-right: 0.4rem;
}

.footer-contact-list {
  display: grid;
  gap: 0.65rem;
}

.footer-contact-list > a,
.footer-contact-list > div {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  color: #D8E4F0;
  font-size: 0.74rem;
  text-decoration: none;
}

.footer-contact-list > :is(a, div) > i {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 10px;
  background: rgba(14, 45, 79, 0.72);
  color: #7DD3FC;
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.footer-contact-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-contact-list small {
  display: block;
  margin-bottom: 0.08rem;
  color: #7489A1;
  font-size: 0.61rem;
  font-weight: 700;
}

.footer-contact-list a:hover {
  color: #FFFFFF;
}

.footer-contact-list a:hover > i {
  border-color: rgba(125, 211, 252, 0.42);
  background: rgba(14, 165, 233, 0.16);
  color: #FFFFFF;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-social a {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  color: #AFC1D4;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.footer-social a:hover {
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(14, 165, 233, 0.15);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #72869E;
  font-size: 0.68rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-legal-links a {
  color: #8195AC;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: #FFFFFF;
}

/* Editorial blog */
.blog-preview-section {
  padding: 5.5rem 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(14, 165, 233, 0.09), transparent 30%),
    linear-gradient(180deg, #F8FBFD 0%, #FFFFFF 100%);
}

.blog-preview-heading,
.blog-index-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.blog-preview-heading > div,
.blog-index-heading > div {
  max-width: 760px;
}

.blog-preview-heading .section-title {
  margin-top: 0.6rem;
  margin-bottom: 0.65rem;
}

.blog-preview-heading p,
.blog-index-heading p {
  color: #64748B;
  font-size: 1rem;
  line-height: 1.7;
}

.blog-view-all,
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cta-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  text-decoration: none;
}

.blog-view-all {
  flex: 0 0 auto;
  padding: 0.75rem 1rem;
  border: 1px solid #CFE7F7;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(7, 28, 44, 0.06);
}

.blog-view-all:hover,
.blog-card-link:hover {
  color: #06558F;
}

.blog-preview-grid,
.blog-index-grid,
.blog-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.blog-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #DDE7EF;
  border-radius: 22px;
  background: #FFFFFF;
  box-shadow: 0 14px 38px rgba(7, 28, 44, 0.07);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.blog-card:hover {
  border-color: #B9DDF3;
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(7, 28, 44, 0.12);
}

.blog-card-image {
  position: relative;
  display: block;
  height: 225px;
  overflow: hidden;
  background: #DCEAF3;
}

.blog-card-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 15, 25, 0.32) 100%);
  content: "";
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.045);
}

.blog-card-image > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-full);
  background: rgba(7, 28, 44, 0.74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  margin-bottom: 0.65rem;
  color: #718096;
  font-size: 0.68rem;
  font-weight: 700;
}

.blog-card-meta span::before {
  margin-right: 0.85rem;
  color: #B8C6D1;
  content: "•";
}

.blog-card h3 {
  margin-bottom: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.blog-card h3 a {
  color: #0F172A;
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--cta-primary);
}

.blog-card-body > p {
  display: -webkit-box;
  margin-bottom: 1rem;
  overflow: hidden;
  color: #526176;
  font-size: 0.85rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-card-link {
  margin-top: auto;
  font-size: 0.78rem;
}

.blog-index-hero {
  position: relative;
  padding: calc(var(--header-height) + 4.5rem) 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(14, 165, 233, 0.3), transparent 30%),
    radial-gradient(circle at 12% 95%, rgba(10, 115, 201, 0.22), transparent 28%),
    linear-gradient(135deg, #061927 0%, #0A3450 58%, #075E78 100%);
  color: #FFFFFF;
}

.blog-index-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -14rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.02), 0 0 0 8rem rgba(255, 255, 255, 0.018);
  content: "";
}

.blog-index-hero .container {
  position: relative;
  z-index: 1;
}

.blog-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
}

.blog-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.blog-breadcrumbs a:hover {
  color: #FFFFFF;
}

.blog-breadcrumbs i {
  font-size: 0.55rem;
}

.blog-hero-eyebrow,
.blog-index-heading > div > span,
.blog-more-heading > span,
.blog-related-tours-section > span {
  color: #38BDF8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-index-hero h1 {
  max-width: 850px;
  margin: 0.75rem 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.blog-index-hero > .container > p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.blog-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.blog-hero-stats > span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 700;
}

.blog-hero-stats i {
  color: #7DD3FC;
}

.blog-index-content {
  padding: 5rem 0 6rem;
  background: #F8FAFC;
}

.blog-index-heading {
  align-items: center;
}

.blog-index-heading h2,
.blog-more-heading h2,
.blog-related-tours-section h2 {
  margin-top: 0.35rem;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.blog-index-heading > p {
  max-width: 400px;
  text-align: right;
}

.blog-featured-wrap {
  margin-bottom: 1.5rem;
}

.blog-card-featured {
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.blog-card-featured .blog-card-image {
  height: 100%;
  min-height: 390px;
}

.blog-card-featured .blog-card-body {
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.blog-card-featured h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.blog-card-featured .blog-card-body > p {
  display: block;
  font-size: 0.95rem;
}

.blog-article-hero {
  position: relative;
  height: min(760px, calc(100svh - var(--header-height)));
  min-height: 620px;
  margin-top: var(--header-height);
  overflow: hidden;
  background: #0A192F;
  color: #FFFFFF;
}

.blog-article-hero > img,
.blog-article-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blog-article-hero > img {
  object-fit: cover;
}

.blog-article-shade {
  background:
    linear-gradient(180deg, rgba(3, 15, 25, 0.48) 0%, rgba(3, 15, 25, 0.2) 35%, rgba(3, 15, 25, 0.82) 100%),
    linear-gradient(90deg, rgba(3, 15, 25, 0.44) 0%, transparent 60%);
}

.blog-article-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  padding-top: 1.4rem;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.blog-breadcrumbs-light {
  flex: 0 0 auto;
}

.blog-article-heading {
  max-width: 1000px;
  margin-top: auto;
}

.blog-article-category {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-full);
  background: rgba(3, 15, 25, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #BAE6FD;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-article-heading h1 {
  max-width: 980px;
  margin: 1rem 0;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.6vw, 5.5rem);
  line-height: 0.99;
  letter-spacing: -0.05em;
  text-shadow: 0 5px 30px rgba(3, 15, 25, 0.55);
}

.blog-article-heading > p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  line-height: 1.65;
  text-shadow: 0 2px 16px rgba(3, 15, 25, 0.58);
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
}

.blog-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.blog-article-meta i {
  color: #7DD3FC;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 340px);
  justify-content: space-between;
  gap: clamp(3rem, 6vw, 6rem);
  padding-top: clamp(3rem, 6vw, 5.5rem);
  padding-bottom: 5rem;
}

.blog-article-main {
  min-width: 0;
}

.blog-article-lead {
  margin-bottom: 2rem;
  color: #334155;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.blog-toc {
  margin-bottom: 3rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid #D8E8F2;
  border-left: 4px solid var(--cta-primary);
  border-radius: 0 16px 16px 0;
  background: #F5FAFD;
}

.blog-toc > span {
  display: block;
  margin-bottom: 0.55rem;
  color: #0F172A;
  font-family: var(--font-heading);
  font-weight: 800;
}

.blog-toc ol {
  display: grid;
  gap: 0.35rem;
  padding-left: 1.2rem;
  color: #64748B;
  font-size: 0.82rem;
}

.blog-toc a {
  color: #475569;
  text-decoration: none;
}

.blog-toc a:hover {
  color: var(--cta-primary);
}

.blog-copy-section {
  scroll-margin-top: calc(var(--header-height-scrolled) + 1.5rem);
  margin-bottom: 3rem;
}

.blog-copy-section h2 {
  margin-bottom: 1.15rem;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.blog-copy-section p {
  margin-bottom: 1.15rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.85;
}

.blog-copy-section ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.35rem 0;
  padding: 1.15rem;
  border-radius: 16px;
  background: #F4FBF7;
  list-style: none;
}

.blog-copy-section li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #3F5E4B;
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-copy-section li i {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 1.35rem;
  place-items: center;
  margin-top: 0.12rem;
  border-radius: 50%;
  background: #DDF4E6;
  color: #2F8A5C;
  font-size: 0.55rem;
}

.blog-editorial-note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 3rem 0;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #EFF7FC;
  color: #4A6478;
  font-size: 0.78rem;
  line-height: 1.6;
}

.blog-editorial-note i {
  margin-top: 0.15rem;
  color: var(--cta-primary);
}

.blog-related-tours-section {
  padding-top: 2.5rem;
  border-top: 1px solid #E2E8F0;
}

.blog-related-tours-section h2 {
  margin-bottom: 1.25rem;
  font-size: 2rem;
}

.blog-related-tours {
  display: grid;
  gap: 0.75rem;
}

.blog-related-tour {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: 0.65rem;
  border: 1px solid #DDE7EF;
  border-radius: 15px;
  color: #0F172A;
  text-decoration: none;
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.blog-related-tour:hover {
  border-color: #A9D6F0;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(7, 28, 44, 0.08);
}

.blog-related-tour img {
  width: 86px;
  height: 68px;
  border-radius: 10px;
  object-fit: cover;
}

.blog-related-tour small,
.blog-related-tour strong {
  display: block;
}

.blog-related-tour small {
  margin-bottom: 0.2rem;
  color: #64748B;
  font-size: 0.65rem;
  font-weight: 700;
}

.blog-related-tour strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.25;
}

.blog-related-tour > i {
  padding-right: 0.5rem;
  color: var(--cta-primary);
}

.blog-article-sidebar {
  min-width: 0;
}

.blog-sidebar-cta,
.blog-sidebar-recent {
  border-radius: 20px;
}

.blog-sidebar-cta {
  position: sticky;
  top: calc(var(--header-height-scrolled) + 1rem);
  padding: 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 5%, rgba(125, 211, 252, 0.25), transparent 34%),
    linear-gradient(145deg, #082A42, #0B5575);
  color: #FFFFFF;
  box-shadow: 0 20px 50px rgba(7, 28, 44, 0.18);
}

.blog-sidebar-cta > span {
  color: #7DD3FC;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-sidebar-cta h2 {
  margin: 0.55rem 0 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  line-height: 1.12;
}

.blog-sidebar-cta p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.6;
}

.blog-sidebar-cta a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 11px;
  background: #FFFFFF;
  color: #075E78;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.blog-sidebar-recent {
  margin-top: 1rem;
  padding: 1.2rem;
  border: 1px solid #DDE7EF;
  background: #FFFFFF;
}

.blog-sidebar-recent h2 {
  margin-bottom: 0.9rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.blog-sidebar-recent > a {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0;
  border-top: 1px solid #EDF2F7;
  color: #0F172A;
  text-decoration: none;
}

.blog-sidebar-recent > a:first-of-type {
  border-top: 0;
}

.blog-sidebar-recent img {
  width: 62px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
}

.blog-sidebar-recent small,
.blog-sidebar-recent strong {
  display: block;
}

.blog-sidebar-recent small {
  margin-bottom: 0.12rem;
  color: #718096;
  font-size: 0.58rem;
}

.blog-sidebar-recent strong {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  line-height: 1.25;
}

.blog-more-section {
  padding: 4.5rem 0 5rem;
  background: #F3F8FB;
}

.blog-more-heading {
  margin-bottom: 1.5rem;
}

.blog-more-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Unified feedback for every conversion-focused action */
:is(.btn-primary, .btn-gold, .btn-hero-gold, .nav-tour-cta, .btn-card-book, .booking-primary-button, .mobile-booking-bar button):focus-visible {
  outline: 3px solid var(--cta-focus);
  outline-offset: 3px;
  box-shadow: var(--cta-shadow-hover);
}

:is(.btn-primary, .btn-gold, .btn-hero-gold, .nav-tour-cta, .btn-card-book, .booking-primary-button, .mobile-booking-bar button):active {
  background: var(--cta-primary-active);
  box-shadow: 0 4px 12px rgba(6, 85, 143, 0.28);
  transform: translateY(0) scale(0.98);
}

/* Responsive Media Queries */
@media (max-width: 1180px) {
  :root {
    --header-height: 108px;
    --header-height-scrolled: 108px;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    margin-left: 0;
    padding: 1.25rem max(1.5rem, calc((100vw - 900px) / 2));
    overflow-y: auto;
    background: #FFFFFF;
    box-shadow: var(--shadow-lg);
    transition: left var(--transition-normal);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.05rem;
  }

  .nav-menu > li {
    display: block;
    width: 100%;
  }

  .nav-menu > li > .nav-link {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
  }

  .nav-menu > li > .nav-link:hover,
  .nav-menu > li > .nav-link:focus-visible {
    background: #EFF8FE;
    outline: none;
  }

  .nav-dropdown,
  .nav-dropdown-events {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    background: #F8FBFD;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: max-height var(--transition-normal), opacity var(--transition-fast), padding var(--transition-normal), visibility var(--transition-fast);
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-item-dropdown.open > .nav-dropdown,
  .nav-item-dropdown.open > .nav-dropdown-events {
    max-height: 900px;
    padding: 0.65rem;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown-wide {
    grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.5fr);
  }

  .nav-dropdown-events > .nav-dropdown-eyebrow {
    padding-top: 0.5rem;
  }

  .navbar,
  .navbar.scrolled {
    min-height: 0;
    padding: 0;
  }

  .nav-container,
  .navbar.scrolled .nav-container {
    min-height: 72px;
  }

  .logo img,
  .navbar.scrolled .logo img {
    height: 52px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .lang-selector {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 992px) {
  .tours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-preview-grid,
  .blog-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card-featured {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  }

  .blog-article-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-article-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .blog-sidebar-cta {
    position: static;
  }

  .blog-sidebar-recent {
    margin-top: 0;
  }

  .tour-detail-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tour-sticky-sidebar {
    position: static;
  }

  .tour-detail-hero {
    height: min(680px, calc(100svh - var(--header-height)));
    min-height: 560px;
  }

  .mobile-booking-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem max(1rem, calc((100vw - 960px) / 2));
    border-top: 1px solid #D8DEE8;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.1);
  }

  .mobile-booking-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
  }

  .mobile-booking-price small { color: #64748B; font-size: 0.68rem; }
  .mobile-booking-price strong { color: #0F172A; font-family: var(--font-heading); font-size: 1.25rem; }
  .mobile-booking-price span { color: #64748B; font-size: 0.65rem; }

  .mobile-booking-bar button {
    min-height: 2.75rem;
    padding: 0.65rem 1.2rem;
    border: 0;
    border-radius: 10px;
    background: var(--cta-gradient);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--cta-shadow);
    transition: all var(--transition-fast);
  }

  .mobile-booking-bar button:hover {
    background: var(--cta-gradient-hover);
    box-shadow: var(--cta-shadow-hover);
    transform: translateY(-1px);
  }

  .mobile-booking-bar button:active {
    background: var(--cta-primary-active);
    transform: scale(0.98);
  }

  .inc-exc-grid {
    grid-template-columns: 1fr;
  }

  .tour-inclusions-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .inclusion-section-heading {
    margin-bottom: 1rem;
  }

  .inclusion-card-header {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    min-height: 84px;
    padding: 0.85rem;
  }

  .inclusion-card-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .inclusion-card-count {
    display: none;
  }

  .inc-box ul,
  .exc-box ul {
    padding: 0.65rem;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #FFFFFF;
    flex-direction: column;
    padding: 1.25rem max(1.5rem, calc((100vw - 720px) / 2));
    box-shadow: var(--shadow-lg);
    transition: left var(--transition-normal);
  }

  .nav-menu.active {
    left: 0;
  }

  .navbar,
  .navbar.scrolled {
    min-height: 0;
    padding: 0;
  }

  .logo img,
  .navbar.scrolled .logo img {
    height: 52px;
  }

  .lang-selector {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .luxury-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .footer-cta-button {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 4.45rem;
  }
}

.lang-item[data-lang="ca"] {
  display: none;
}

.tour-title-link {
  color: inherit;
  text-decoration: none;
}

.tour-title-link:hover {
  color: var(--gold, #D4A949);
}

.tour-card-location {
  color: #64748b;
  font-weight: 600;
}

.booking-primary-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.booking-direct-panel p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.booking-secondary-link {
  display: block;
  margin-top: 0.8rem;
  color: #0f5d71;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 640px) {
  :root {
    --header-height: 104px;
    --header-height-scrolled: 104px;
  }

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

  .top-bar-inner {
    gap: 0.75rem;
    padding-inline: 1rem;
  }

  .top-bar-contact {
    gap: 0;
  }

  .top-bar-location,
  .top-bar-contact a[href^="mailto:"] {
    display: none;
  }

  .top-bar-direct-desktop {
    display: none;
  }

  .top-bar-direct-mobile {
    display: inline;
  }

  .top-bar-contact a,
  .top-bar-direct {
    font-size: 0.66rem;
  }

  .tour-detail-section {
    padding-top: var(--header-height);
    padding-bottom: 7rem;
  }

  .blog-preview-section,
  .blog-index-content {
    padding: 3.5rem 0;
  }

  .blog-preview-heading,
  .blog-index-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .blog-index-heading > p {
    text-align: left;
  }

  .blog-preview-grid,
  .blog-index-grid,
  .blog-more-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-featured {
    display: flex;
    min-height: 0;
  }

  .blog-card-featured .blog-card-image {
    height: 235px;
    min-height: 0;
  }

  .blog-card-featured .blog-card-body {
    padding: 1.25rem;
  }

  .blog-card-featured h3 {
    font-size: 1.45rem;
  }

  .blog-index-hero {
    padding: calc(var(--header-height) + 2.75rem) 0 3rem;
  }

  .blog-index-hero h1 {
    font-size: clamp(2.6rem, 13vw, 3.6rem);
  }

  .blog-hero-stats > span:last-child {
    display: none;
  }

  .blog-article-hero {
    height: 640px;
    min-height: 0;
  }

  .blog-article-hero-inner {
    padding: 1rem 1rem 2rem;
  }

  .blog-breadcrumbs {
    margin-bottom: 1.25rem;
  }

  .blog-breadcrumbs-light span {
    display: none;
  }

  .blog-article-heading h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .blog-article-meta span:last-child {
    display: none;
  }

  .blog-article-layout {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .blog-article-lead {
    font-size: 1.15rem;
  }

  .blog-copy-section p {
    font-size: 0.94rem;
    line-height: 1.78;
  }

  .blog-article-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-more-section {
    padding: 3.5rem 0;
  }

  .detail-top-nav {
    align-items: flex-start;
  }

  .breadcrumbs {
    display: none;
  }

  .detail-back-button {
    padding-left: 0;
    border: 0;
  }

  .tour-detail-title {
    font-size: 2rem;
  }

  .detail-heading-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .tour-detail-hero {
    height: 560px;
    min-height: 0;
  }

  .tour-detail-hero-inner {
    padding: 1rem 1rem 1.5rem;
  }

  .detail-back-button.detail-back-button-on-hero {
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(3, 15, 25, 0.24);
  }

  .detail-heading-on-hero .detail-category {
    margin-bottom: 0.8rem;
    padding: 0.38rem 0.65rem;
    font-size: 0.68rem;
  }

  .detail-heading-on-hero .tour-detail-title {
    margin-bottom: 0.75rem;
    font-size: clamp(2.2rem, 10.5vw, 3rem);
    line-height: 1.02;
  }

  .detail-hero-summary {
    margin-bottom: 1rem;
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .detail-heading-meta.detail-heading-meta-on-hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
  }

  .detail-heading-meta-on-hero > span {
    min-height: 0;
    justify-content: flex-start;
    padding: 0.5rem 0.58rem;
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .detail-hero-assurances {
    gap: 0.45rem;
    margin-top: 0.75rem;
    font-size: 0.68rem;
  }

  .detail-hero-assurances span:last-child {
    display: none;
  }

  .tour-detail-content {
    padding-top: 1.5rem;
  }

  .nav-container {
    gap: 0.7rem;
    padding-inline: 1rem;
  }

  .nav-dropdown-wide {
    display: block;
  }

  .nav-dropdown-intro {
    display: none;
  }

  .nav-dropdown-links {
    grid-template-columns: 1fr;
  }

  .nav-dropdown-links > a,
  .nav-dropdown-events > a {
    padding: 0.6rem;
  }

  .logo img,
  .navbar.scrolled .logo img {
    height: 44px;
  }

  .nav-tour-cta {
    display: none;
  }

  .tour-detail-hero-badges {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .hero-badge-pill {
    padding: 0.45rem 0.65rem;
    font-size: 0.68rem;
  }

  .hero-badge-pill:last-child {
    display: none;
  }

  .experience-social-proof {
    grid-template-columns: auto 1fr;
  }

  .social-proof-score {
    display: none;
  }

  .experience-highlights-grid {
    grid-template-columns: 1fr;
  }

  .tour-highlights-section {
    margin: 0.7rem 0;
    padding: 1.15rem;
    border-radius: 21px;
  }

  .tour-highlights-heading {
    gap: 1rem;
    margin-bottom: 1.1rem;
  }

  .tour-highlights-emblem {
    width: 2.75rem;
    height: 2.75rem;
  }

  .experience-highlight {
    min-height: 80px;
  }

  .inc-exc-grid {
    grid-template-columns: 1fr;
  }

  .tour-section-block {
    padding: 1.8rem 0;
  }

  .related-tours-grid {
    grid-template-columns: 1fr;
  }

  .related-tour-link {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 112px;
  }

  .related-tour-thumb { min-height: 110px; }

  .sidebar-booking-card {
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  }

  .mobile-booking-bar {
    padding: 0.7rem 1rem;
  }

  .mobile-booking-price span {
    display: none;
  }

  .tours-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .luxury-grid,
  .contact-grid {
    gap: 1.5rem;
  }

  .luxury-grid > *,
  .contact-grid > * {
    width: 100%;
    min-width: 0;
  }

  .luxury-perks {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .luxury-image-card img {
    height: 360px;
  }

  .luxury-badge-overlay {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 1rem;
  }

  .contact-info-card,
  .contact-form {
    padding: 1.25rem;
  }

  .info-text {
    min-width: 0;
  }

  .info-text p,
  .info-text a {
    overflow-wrap: anywhere;
  }

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

  .footer {
    padding-top: 2.25rem;
  }

  .footer-cta {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    padding: 1rem;
  }

  .footer-cta-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .footer-cta-button {
    width: 100%;
    grid-column: 1 / -1;
    margin-left: 0;
  }

  .footer-grid {
    gap: 2rem;
    margin: 2.5rem 0 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-legal-links {
    justify-content: flex-start;
    gap: 0.65rem 1rem;
  }

  .tour-image-wrap {
    aspect-ratio: 16 / 10;
  }

  .tour-card-footer {
    align-items: center;
  }
}

.legacy-page-hero {
  position: relative;
  overflow: hidden;
  padding: 9.5rem 0 5rem;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(21, 151, 180, 0.38), transparent 34%),
    linear-gradient(135deg, #061b2a 0%, #0b3548 58%, #0d6f85 100%);
}

.legacy-page-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -55% 35%;
  height: 18rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(-8deg);
}

.legacy-page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.legacy-page-eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #8ee4ed;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legacy-page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.legacy-page-hero > .container > p {
  max-width: 760px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.75;
}

.legacy-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.legacy-page-sidebar {
  position: sticky;
  top: 8.5rem;
}

.legacy-preserved-content {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-top: 1px solid #dfe8ec;
  background: linear-gradient(180deg, #f5f9fa 0%, #fff 18rem);
}

.legacy-preserved-content .legacy-rich-content {
  max-width: 980px;
  margin: 0 auto;
}

.legacy-rich-content {
  min-width: 0;
  color: #294453;
  font-size: 1.04rem;
  line-height: 1.78;
}

.legacy-rich-content h2,
.legacy-rich-content h3,
.legacy-rich-content h4,
.legacy-rich-content h5,
.legacy-rich-content h6 {
  margin: 2.3rem 0 0.8rem;
  color: #08283a;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.legacy-rich-content h2 { font-size: clamp(1.75rem, 3vw, 2.55rem); }
.legacy-rich-content h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }

.legacy-rich-content p,
.legacy-rich-content ul,
.legacy-rich-content ol,
.legacy-rich-content blockquote,
.legacy-rich-content table,
.legacy-rich-content figure {
  margin: 0 0 1.2rem;
}

.legacy-rich-content ul,
.legacy-rich-content ol {
  padding-left: 1.35rem;
}

.legacy-rich-content li + li { margin-top: 0.45rem; }

.legacy-rich-content a {
  color: #087d96;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(8, 125, 150, 0.3);
  text-underline-offset: 0.2em;
}

.legacy-rich-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
  border-radius: 1.1rem;
}

.legacy-rich-content iframe,
.legacy-rich-content video {
  display: block;
  width: 100%;
  min-height: 360px;
  margin: 1.5rem 0;
  border: 0;
  border-radius: 1.1rem;
}

.legacy-rich-content blockquote {
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #0d9bb5;
  border-radius: 0 0.8rem 0.8rem 0;
  background: #eef8fa;
}

.legacy-rich-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.legacy-rich-content th,
.legacy-rich-content td {
  padding: 0.7rem 0.85rem;
  border: 1px solid #d9e5ea;
  text-align: left;
}

@media (max-width: 991px) {
  .legacy-page-layout { grid-template-columns: 1fr; }
  .legacy-page-sidebar { position: static; }
}

@media (max-width: 640px) {
  .legacy-page-hero { padding: 7.5rem 0 3.5rem; }
  .legacy-rich-content { font-size: 1rem; }
  .legacy-rich-content iframe,
  .legacy-rich-content video { min-height: 230px; }
}

@media (prefers-reduced-motion: reduce) {
  .experience-highlight,
  .inc-box,
  .exc-box {
    animation: none;
    transition: none;
  }

  .experience-highlight:hover,
  .experience-highlight:hover .experience-highlight-icon,
  .experience-highlight:hover .experience-highlight-accent,
  .inc-box:hover,
  .exc-box:hover,
  .inc-box li:hover,
  .exc-box li:hover {
    transform: none;
  }
}
/* Standalone support pages and optional production tracking controls. */
.support-card { padding: 1.5rem; margin-bottom: 1.5rem; border: 1px solid #dbe6ec; border-radius: 1rem; background: #f6fafc; }
.support-card h2 { margin-top: 0; }
.cookie-notice { position: fixed; z-index: 10000; bottom: 1rem; left: 1rem; width: min(36rem, calc(100% - 2rem)); max-height: calc(100dvh - 2rem); overflow: auto; padding: 1.5rem; border: 1px solid #dbe6ec; border-radius: 1rem; background: #fff; color: #142537; box-shadow: 0 8px 40px #14253733; font-size: 1rem; line-height: 1.5; }
.cookie-notice[hidden] { display: none; }
.cookie-notice h2 { font-size: 1.2rem; margin-bottom: .6rem; }
.cookie-notice a { text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.cookie-actions button { flex: 1; padding: .75rem 1rem; border: 1px solid #0a73c9; border-radius: .5rem; background: #fff; color: #075995; font: inherit; cursor: pointer; }
.cookie-settings { background: none; color: inherit; border: 0; padding: 0; font: inherit; cursor: pointer; text-decoration: underline; }
.cookie-actions button:focus-visible, .cookie-settings:focus-visible { outline: 3px solid #0a73c9; outline-offset: 3px; }
