/* =========================================================
   WAIKIKI FIREWORKS CRUISE — THEME CSS
   ========================================================= */

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.35s ease;
  background: transparent;
}

.site-header--scrolled {
  background: rgba(4, 13, 24, 0.95);
  backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.site-header--hidden { transform: translateY(-100%); }

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo / Wordmark */
.site-header__wordmark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.site-header__wordmark-icon {
  font-size: 1.5rem;
  color: var(--clr-gold);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 8px rgba(245,197,24,0.4); }
  50%       { text-shadow: 0 0 20px rgba(245,197,24,0.8); }
}
.site-header__logo a { text-decoration: none; }
.site-header__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.1;
}
.site-header__tagline {
  display: block;
  font-size: 0.65rem;
  color: var(--clr-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Navigation */
.site-nav { margin-left: auto; }
.site-nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-nav__menu li { position: relative; }
.site-nav__menu a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--clr-text);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.site-nav__menu a:hover,
.site-nav__menu .current-menu-item > a {
  color: var(--clr-gold);
  background: rgba(245,197,24,0.08);
}

/* Dropdown */
.site-nav__menu .sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  list-style: none;
}
.site-nav__menu li:hover > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.site-nav__menu .sub-menu a {
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  display: block;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}
.hamburger__bar {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger--open .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger--open .hamburger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger--open .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
}
.nav-overlay--active { display: block; }

/* Site header CTA */
.site-header__cta { flex-shrink: 0; }

@media (max-width: 1024px) {
  .site-header__cta { display: none; }
  .hamburger { display: flex; }
  .site-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: var(--clr-bg2);
    border-left: 1px solid var(--clr-border);
    padding: 5rem 2rem 2rem;
    z-index: 1001;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    margin-left: 0;
  }
  .site-nav--open { right: 0; }
  .site-nav__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .site-nav__menu li { width: 100%; }
  .site-nav__menu a { font-size: 1rem; padding: 0.85rem 1rem; }
  .site-nav__menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: transparent;
  }
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #041228 0%, #071c38 40%, #0d1f2d 70%, #0a0e1a 100%);
}
.hero__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4,13,24,0.2) 0%,
    rgba(4,13,24,0.1) 40%,
    rgba(4,13,24,0.7) 80%,
    rgba(4,13,24,1) 100%
  );
}
.hero__particles {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 6rem;
  max-width: 800px;
}
.hero__text { max-width: 700px; }
.hero__eyebrow { margin-bottom: 1.5rem; display: inline-block; }
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.hero__trust-item strong { font-size: 1.1rem; color: var(--clr-gold); font-family: var(--font-heading); }
.hero__trust-sep { color: rgba(255,255,255,0.3); font-size: 1.5rem; }

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(0.7) translateY(0); }
  50%       { opacity: 1;   transform: scaleY(1) translateY(6px); }
}

/* =========================================================
   FIREWORKS COUNTER SECTION
   ========================================================= */
.counter-section {
  background: linear-gradient(135deg, var(--clr-bg2) 0%, var(--clr-bg) 100%);
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}
.counter-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}
.counter-section__label h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}
.counter-section__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-orange));
}
.stat-card__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-card__unit {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.stat-card__label { font-size: 0.75rem; color: var(--clr-text2); }

.stat-card--live { border-color: var(--clr-teal); }
.stat-card--live::before { background: linear-gradient(90deg, var(--clr-teal), #00a896); }
.stat-card--live .stat-card__number { font-size: 1.1rem; color: var(--clr-teal); }

.stat-card__live-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--clr-teal);
  border: 1px solid var(--clr-teal);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.stat-card--tonight .stat-card__number { color: var(--clr-coral); font-size: 1.4rem; }
.stat-card--tonight::before { background: linear-gradient(90deg, var(--clr-coral), var(--clr-orange)); }

@media (max-width: 1024px) {
  .counter-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .counter-section__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .counter-section__stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* =========================================================
   TOURS SECTION
   ========================================================= */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.tours-grid .tour-card { grid-column: span 2; }
@media (max-width: 1024px)  { .tours-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)   { .tours-grid { grid-template-columns: repeat(2, 1fr); } }
/* 1 orphan on last row: center in the middle column pair */
@media (min-width: 1025px)  { .tours-grid .tour-card:last-child:nth-child(3n+1) { grid-column: 3 / 5; } }
/* 2 orphans on last row: center the pair with equal margin */
@media (min-width: 1025px)  { .tours-grid .tour-card:nth-last-child(2):nth-child(3n+1) { grid-column: 2 / 4; } }
@media (min-width: 1025px)  { .tours-grid .tour-card:last-child:nth-child(3n+2) { grid-column: 4 / 6; } }

.tour-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

.tour-card--featured {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 1px rgba(245,197,24,0.3), var(--shadow-glow);
}

.tour-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
}

.tour-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.tour-card__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,13,24,0.7) 0%, transparent 50%);
  pointer-events: none;
}
.tour-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-card__image img { transform: scale(1.08); }

.tour-card__body { padding: 1.75rem; }
.tour-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tour-card__rating { font-size: 0.85rem; color: var(--clr-text2); }
.tour-card__reviews { color: var(--clr-text2); }
.tour-card__duration { font-size: 0.82rem; color: var(--clr-text2); }

.tour-card__title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--clr-text);
}
.tour-card__excerpt {
  font-size: 0.9rem;
  color: var(--clr-text2);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--clr-border);
}
.tour-card__price { font-size: 0.88rem; color: var(--clr-text2); }
.tour-card__price strong { font-size: 1.4rem; font-family: var(--font-heading); color: var(--clr-gold); }
.tour-card__price span { font-size: 0.78rem; }
.tour-card__price-orig { font-size: 0.88rem; color: var(--clr-text2); opacity: 0.6; margin-right: 0.35rem; text-decoration: line-through; }

/* =========================================================
   FIREWORKS INFO SECTION
   ========================================================= */
.fireworks-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.fireworks-info__text h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 1.25rem; }
.fireworks-info__text .eyebrow { margin-bottom: 0.75rem; display: block; }

.fireworks-info__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--clr-bg3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
}
.fact-item__icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.fact-item strong { display: block; font-size: 0.9rem; color: var(--clr-text); margin-bottom: 0.2rem; }
.fact-item span { font-size: 0.82rem; color: var(--clr-text2); }

.fireworks-info__visual { position: relative; }
.fireworks-info__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}
.fireworks-info__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.fireworks-info__image-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--clr-gold);
  color: #040d18;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-family: var(--font-heading);
}
.fireworks-info__image-badge span { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.fireworks-info__image-badge strong { display: block; font-size: 2rem; line-height: 1; }

.fireworks-info__review-card {
  position: absolute;
  bottom: -2rem; left: -2rem;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  max-width: 280px;
  box-shadow: var(--shadow-card);
}
.fireworks-info__review-card p { font-size: 0.82rem; color: var(--clr-text2); margin: 0.5rem 0; font-style: italic; }
.fireworks-info__reviewer strong { display: block; font-size: 0.88rem; color: var(--clr-text); }
.fireworks-info__reviewer span { font-size: 0.78rem; color: var(--clr-text2); }

@media (max-width: 1024px) {
  .fireworks-info__grid { grid-template-columns: 1fr; gap: 3rem; }
  .fireworks-info__review-card { position: static; max-width: 100%; margin-top: 1.5rem; }
}

/* =========================================================
   FEATURES SECTION
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 1.75rem 1.25rem;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(245,197,24,0.4); }
.feature-card__icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.feature-card__title { font-size: 1rem; margin-bottom: 0.5rem; font-family: var(--font-body); font-weight: 700; }
.feature-card__desc { font-size: 0.85rem; color: var(--clr-text2); }

@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .features-grid { grid-template-columns: 1fr; } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.testimonial-card__stars { margin-bottom: 0.75rem; }
.testimonial-card__text {
  font-style: italic;
  color: var(--clr-text);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  border: none; padding: 0; background: transparent;
  border-radius: 0;
}
.testimonial-card__footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.testimonial-card__author strong { display: block; font-size: 0.9rem; color: var(--clr-text); }
.testimonial-card__author span  { font-size: 0.8rem; color: var(--clr-gold); }
.testimonial-card__source { font-size: 0.75rem; color: var(--clr-text2); }

@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* =========================================================
   BLOG PREVIEW
   ========================================================= */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.blog-card__image { aspect-ratio: 16/9; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body { padding: 1.5rem; }
.blog-card__meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.blog-card__date  { font-size: 0.78rem; color: var(--clr-text2); }
.blog-card__read  { font-size: 0.78rem; color: var(--clr-text2); }
.blog-card__title { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--clr-text); font-family: var(--font-body); font-weight: 700; }
.blog-card__link  { font-size: 0.85rem; color: var(--clr-gold); font-weight: 600; text-decoration: none; }
.blog-card__link:hover { color: var(--clr-orange); }

@media (max-width: 1024px) { .blog-preview-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #041228, #071c38);
}
.cta-section__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,197,24,0.08) 0%, rgba(4,13,24,0.6) 70%);
}
.cta-section__content { position: relative; z-index: 1; }
.cta-section__title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.25rem; }
.cta-section__subtitle { font-size: 1.05rem; max-width: 560px; margin: 0 auto 2.5rem; color: rgba(255,255,255,0.8); }
.cta-section__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cta-section__note { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.cta-section--compact { padding: 5rem 0; }
.cta-section--compact h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.cta-section--compact p  { max-width: 480px; margin: 0 auto 2rem; }

/* =========================================================
   TOUR PAGE LAYOUT
   ========================================================= */
.tour-hero {
  position: relative;
  padding: 8rem 0 3.5rem;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
}
.tour-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(4,13,24,0.25) 0%, rgba(4,13,24,0.55) 100%);
  pointer-events: none;
}
.tour-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: end;
}
.tour-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.tour-hero__subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }
.tour-hero__meta { display: flex; gap: 1.25rem; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.tour-hero__highlights {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
  background: rgba(4, 13, 24, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tour-hero__highlights li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.9rem; color: rgba(255,255,255,0.88); }
.tour-hero__highlights li span { font-size: 1.1rem; flex-shrink: 0; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--clr-text2);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--clr-text2); text-decoration: none; }
.breadcrumb a:hover { color: var(--clr-gold); }

/* Full-page fixed background for tour pages */
.tour-page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.tour-page-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

/* Tour Layout: slider row + content/sidebar */
.tour-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  grid-template-rows: auto auto;
  gap: 2rem 3rem;
  padding: 2.5rem;
  align-items: start;
  background: rgba(4, 13, 24, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}
.tour-slider-wrap { grid-column: 1 / -1; grid-row: 1; }
.tour-layout__content { grid-column: 1; grid-row: 2; min-width: 0; }
.tour-layout__sidebar { grid-column: 2; grid-row: 2; position: relative; }

/* Sections */
.tour-section { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--clr-border); }
.tour-section:last-child { border-bottom: none; }
.tour-section-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--clr-gold);
  display: inline-block;
}

/* Price Block (mobile) */
.tour-price-block {
  background: var(--clr-card);
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
}
.tour-price-block__inner { text-align: center; }
.price-promo-badge { display: inline-block; background: var(--clr-coral); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 50px; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; }
.price-was { font-size: 1rem; color: var(--clr-text2); text-decoration: line-through; }
.price-from { font-size: 0.85rem; color: var(--clr-text2); }
.price-now { font-family: var(--font-heading); font-size: 3rem; color: var(--clr-gold); line-height: 1.1; margin: 0.25rem 0; }
.price-now span { font-size: 1rem; font-family: var(--font-body); color: var(--clr-text2); font-weight: 400; }
.price-child { font-size: 0.9rem; color: var(--clr-text2); margin-bottom: 0.75rem; }
.price-countdown { font-size: 0.85rem; color: var(--clr-text2); margin-bottom: 1.25rem; }
.price-countdown strong { color: var(--clr-coral); }
.price-note { font-size: 0.78rem; color: var(--clr-text2); margin-top: 0.75rem; }

/* Calendar Block (sidebar compact version still used) */
.calendar-placeholder--compact { padding: 1.5rem; text-align: center; border-radius: var(--radius-md); overflow: hidden; }
.calendar-placeholder--compact p { font-size: 0.88rem; color: var(--clr-text2); }

/* Tour Image Slider */
.tour-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.tour-slider__track {
  position: relative;
  height: 480px;
}
.tour-slider__slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.tour-slider__slide.active {
  opacity: 1;
  pointer-events: auto;
}
.tour-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tour-slider__prev,
.tour-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-slider__prev { left: 0.85rem; }
.tour-slider__next { right: 0.85rem; }
.tour-slider__prev:hover,
.tour-slider__next:hover { background: rgba(0, 0, 0, 0.75); }
.tour-slider__dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.tour-slider__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.tour-slider__dot.active {
  background: var(--clr-gold);
  transform: scale(1.35);
}

/* Highlights */
.highlights-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
.highlights-list__item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; background: var(--clr-bg3); border-radius: var(--radius-sm); padding: 0.85rem 1rem; border: 1px solid var(--clr-border); color: var(--clr-text); }
.highlights-list__icon { flex-shrink: 0; }

@media (max-width: 1024px) { .highlights-list { grid-template-columns: 1fr; } }

/* Includes */
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.includes-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--clr-text); }
.includes-item__check { color: var(--clr-teal); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
@media (max-width: 1024px) { .includes-grid { grid-template-columns: 1fr; } }

/* Details Table */
.details-table { background: var(--clr-bg3); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--clr-border); }
.details-table__row { display: flex; padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--clr-border); }
.details-table__row:last-child { border-bottom: none; }
.details-table__label { font-weight: 600; color: var(--clr-text); font-size: 0.88rem; min-width: 140px; flex-shrink: 0; }
@media (max-width: 1024px) { .details-table__row { flex-direction: column; gap: 0.25rem; } .details-table__label { min-width: unset; } }
.details-table__value { font-size: 0.88rem; color: var(--clr-text2); }

/* Cancellation */
.cancellation-box { background: rgba(0,201,183,0.08); border: 1px solid rgba(0,201,183,0.3); border-radius: var(--radius-md); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.cancellation-box__icon { font-size: 1.75rem; flex-shrink: 0; }
.cancellation-box strong { display: block; font-size: 1rem; color: var(--clr-teal); margin-bottom: 0.35rem; }
.cancellation-box p { font-size: 0.9rem; color: var(--clr-text2); margin: 0; }

/* Important Items */
.important-list { display: flex; flex-direction: column; gap: 0.75rem; }
.important-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.9rem; }
.important-item--info    { background: rgba(141,180,204,0.08); border: 1px solid rgba(141,180,204,0.2); color: var(--clr-text2); }
.important-item--warning { background: rgba(255,140,0,0.08);   border: 1px solid rgba(255,140,0,0.25);  color: var(--clr-text2); }

/* FAQ */
.faq-list { border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--clr-border); }
.faq-item:last-child { border-bottom: none; }
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text);
  transition: background var(--transition);
}
.faq-item__question:hover { background: var(--clr-bg3); }
.faq-item__question[aria-expanded="true"] { color: var(--clr-gold); }
.faq-item__icon { font-size: 1.2rem; flex-shrink: 0; margin-left: 1rem; color: var(--clr-gold); }
.faq-item__answer { padding: 0 1.5rem 1.25rem; }
.faq-item__answer p { font-size: 0.9rem; color: var(--clr-text2); margin: 0; }

/* Booking Card (sidebar) */
.tour-layout__sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tour-layout__sidebar::-webkit-scrollbar { display: none; }
.booking-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.booking-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; flex-wrap: wrap; gap: 0.5rem; }
.booking-card__rating { font-size: 0.85rem; color: var(--clr-text2); display: flex; align-items: center; gap: 0.5rem; }
.booking-card__promo-wrap { margin-bottom: 1.5rem; padding: 1.25rem; background: rgba(212,175,55,0.1); border: 2px solid var(--clr-gold); border-radius: var(--radius-md); text-align: center; }
.booking-card__promo-pct { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--clr-gold); line-height: 1.1; margin-bottom: 0.4rem; }
.booking-card__promo-code { font-size: 0.85rem; color: rgba(255,255,255,0.75); letter-spacing: 0.05em; }
.booking-card__promo-code strong { color: #fff; font-size: 1rem; letter-spacing: 0.1em; }
.booking-card__was { font-size: 0.9rem; color: var(--clr-text2); text-decoration: line-through; }
.booking-card__from { font-size: 0.82rem; color: var(--clr-text2); }
.booking-card__amount { font-family: var(--font-heading); font-size: 2.5rem; color: var(--clr-gold); line-height: 1; margin-bottom: 0.25rem; }
.booking-card__amount span { font-size: 0.9rem; font-family: var(--font-body); color: var(--clr-text2); font-weight: 400; }
.booking-card__child { font-size: 0.85rem; color: var(--clr-text2); margin-bottom: 1rem; }
.booking-card__countdown { font-size: 0.82rem; color: var(--clr-text2); margin-bottom: 1rem; }
.booking-card__countdown strong { color: var(--clr-coral); }
.booking-card__calendar { margin-bottom: 1.25rem; border-radius: var(--radius-md); overflow: hidden; }
.booking-card__calendar iframe, .booking-card__calendar table { border-radius: var(--radius-md); overflow: hidden; }
.booking-card__trust { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.78rem; color: var(--clr-text2); padding: 1rem 0; border-top: 1px solid var(--clr-border); border-bottom: 1px solid var(--clr-border); margin: 1rem 0; }
.booking-card__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
@media (max-width: 1024px) { .booking-card__stats { grid-template-columns: 1fr; gap: 0.25rem; } .booking-stat { display: flex; justify-content: space-between; align-items: center; padding: 0.4rem 0; border-bottom: 1px solid var(--clr-border); } .booking-stat strong { display: inline; } }
.booking-stat { text-align: center; }
.booking-stat strong { display: block; font-size: 0.9rem; color: var(--clr-gold); }
.booking-stat span   { font-size: 0.75rem; color: var(--clr-text2); }

/* Help Card */
.help-card {
  margin-top: 1.5rem;
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}
.help-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.help-card p  { font-size: 0.85rem; color: var(--clr-text2); margin-bottom: 1.25rem; }

/* Full-width button */
.btn--full { width: 100%; justify-content: center; }

/* Mobile tour layout: slider → sidebar → content */
@media (max-width: 1024px) {
  .tour-hero__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .tour-hero__right { display: none; }
  .tour-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .tour-slider-wrap  { order: 1; width: 100%; }
  .tour-layout__sidebar { order: 2; display: block; position: static; width: 100%; }
  .tour-layout__content { order: 3; width: 100%; }
}

/* =========================================================
   BLOG SINGLE
   ========================================================= */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  padding: 3rem 0;
  align-items: start;
}
.blog-header { padding: 8rem 0 3rem; }
.blog-header__category { margin-bottom: 1.25rem; display: inline-block; }
.blog-header__title { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.blog-header__meta { display: flex; align-items: center; gap: 1.25rem; font-size: 0.88rem; color: var(--clr-text2); flex-wrap: wrap; }
.blog-header__author { font-weight: 600; color: var(--clr-text); }

.entry-content { color: var(--clr-text2); line-height: 1.8; }
.entry-content h2, .entry-content h3, .entry-content h4 { color: var(--clr-text); margin: 2rem 0 1rem; }
.entry-content h2 { font-size: 1.7rem; }
.entry-content h3 { font-size: 1.35rem; }
.entry-content p  { margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol { margin-bottom: 1.25rem; padding-left: 1.75rem; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content a  { color: var(--clr-gold); text-decoration: underline; }
.entry-content a:hover { color: var(--clr-orange); }
.entry-content img { border-radius: var(--radius-md); margin: 2rem 0; }
.entry-content blockquote { margin: 2rem 0; }
.entry-content strong { color: var(--clr-text); }

@media (max-width: 1024px) { .blog-layout { grid-template-columns: 1fr; } }

/* =========================================================
   PAGE TEMPLATES (About, Contact, etc.)
   ========================================================= */
.page-hero {
  padding: 9rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--clr-bg2) 0%, var(--clr-bg) 100%);
  border-bottom: 1px solid var(--clr-border);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero p  { font-size: 1.05rem; max-width: 560px; margin: 1rem auto 0; }

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--clr-text); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--clr-text2); opacity: 0.6; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-message { padding: 0.85rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.9rem; margin-top: 1rem; }
.form-message--success { background: rgba(0,201,183,0.1); border: 1px solid rgba(0,201,183,0.3); color: var(--clr-teal); }
.form-message--error   { background: rgba(255,94,87,0.1);  border: 1px solid rgba(255,94,87,0.3);  color: var(--clr-coral); }

@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; } }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-image-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1024px) { .about-story-grid { grid-template-columns: 1fr; } }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-card__photo { aspect-ratio: 1; border-radius: 50%; overflow: hidden; width: 140px; margin: 0 auto 1.25rem; border: 3px solid var(--clr-gold); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name  { font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-card__title { font-size: 0.82rem; color: var(--clr-gold); margin-bottom: 0.5rem; }
.team-card__bio   { font-size: 0.85rem; color: var(--clr-text2); }
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--clr-bg2); border-top: 1px solid var(--clr-border); }

/* Main Footer */
.footer-main { padding: 4rem 0; }
.footer-main__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand__icon { font-size: 1.3rem; color: var(--clr-gold); }
.footer-brand__name { font-family: var(--font-heading); font-size: 1.2rem; color: var(--clr-text); font-weight: 700; }
.footer-brand__desc { font-size: 0.85rem; color: var(--clr-text2); margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-social__link {
  width: 38px; height: 38px;
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--clr-text2);
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social__link:hover { background: var(--clr-gold); color: #040d18; border-color: var(--clr-gold); }

.footer-contact-info { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-info__item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: var(--clr-text2); text-decoration: none; }
.footer-contact-info__item:hover { color: var(--clr-gold); }

.footer-col__title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
}
.footer-col__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col__list a { font-size: 0.88rem; color: var(--clr-text2); text-decoration: none; transition: color var(--transition); }
.footer-col__list a:hover { color: var(--clr-gold); }

.footer-schedule-note p { color: var(--clr-text2); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 1.5rem 0;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom__copy { font-size: 0.82rem; color: var(--clr-text2); margin: 0; }
.footer-bottom__trust { display: flex; gap: 1rem; flex-wrap: wrap; }
.trust-badge { font-size: 0.75rem; color: var(--clr-text2); background: var(--clr-bg3); padding: 0.3rem 0.75rem; border-radius: 50px; border: 1px solid var(--clr-border); }

@media (max-width: 1024px) { .footer-main__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-main__grid { grid-template-columns: 1fr; } .footer-newsletter__fields input { min-width: 100%; } }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 46px; height: 46px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  color: var(--clr-gold);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top--visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--clr-gold); color: #040d18; }

/* =========================================================
   ANIMATION UTILITIES
   ========================================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}
.lightbox-overlay--active { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-md); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--clr-gold); color: #040d18; }
.lightbox-close { top: -3rem; right: 0; }
.lightbox-prev  { left: -3rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: -3rem; top: 50%; transform: translateY(-50%); }

/* =========================================================
   WIDGET STYLES
   ========================================================= */
.widget { margin-bottom: 2rem; }
.widget__title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--clr-gold);
  display: inline-block;
}
.widget ul { list-style: none; padding: 0; }
.widget ul li { padding: 0.5rem 0; border-bottom: 1px solid var(--clr-border); font-size: 0.88rem; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--clr-text2); text-decoration: none; }
.widget ul li a:hover { color: var(--clr-gold); }

/* =========================================================
   POLICY / LEGAL PAGES
   ========================================================= */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}
.policy-content h2 { font-size: 1.4rem; margin: 2.5rem 0 1rem; color: var(--clr-text); }
.policy-content h3 { font-size: 1.1rem; margin: 1.75rem 0 0.75rem; color: var(--clr-gold); }
.policy-content p  { font-size: 0.95rem; color: var(--clr-text2); margin-bottom: 1rem; }
.policy-content ul { margin-bottom: 1.25rem; }
.policy-content li { font-size: 0.95rem; color: var(--clr-text2); }

/* =========================================================
   404 PAGE
   ========================================================= */
.error-404 { text-align: center; padding: 10rem 0; }
.error-404 .error-code { font-size: clamp(6rem, 15vw, 12rem); font-family: var(--font-heading); color: var(--clr-gold); opacity: 0.3; line-height: 1; }
.error-404 h1 { font-size: 2rem; margin-bottom: 1rem; }
.error-404 p  { max-width: 400px; margin: 0 auto 2rem; }

/* =========================================================
   TOUR COMPARISON CHART
   ========================================================= */
.tour-compare {
  background: linear-gradient(135deg, var(--clr-bg2) 0%, var(--clr-bg) 100%);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.tour-compare::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}
.tour-compare::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}
.tour-compare__scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
}
.tour-compare-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.tour-compare-table th,
.tour-compare-table td {
  padding: 0.85rem 0.8rem;
  text-align: center;
  border-bottom: 1px solid var(--clr-border);
  vertical-align: middle;
  line-height: 1.3;
  color: var(--clr-text);
}
.tour-compare-table th {
  background: var(--clr-bg3);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
}
.tour-compare-table th a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--transition);
  display: block;
  line-height: 1.4;
}
.tour-compare-table th a:hover { color: var(--clr-orange); }
.tour-compare-table th .cmp-emoji { font-size: 1.1rem; display: block; margin-bottom: 0.25rem; }
.tour-compare-table td:first-child,
.tour-compare-table th:first-child {
  text-align: left;
  background: var(--clr-bg3);
  font-weight: 600;
  color: var(--clr-text2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  min-width: 148px;
  position: sticky;
  left: 0;
  z-index: 2;
  border-right: 1px solid var(--clr-border);
}
.tour-compare-table th:first-child {
  z-index: 3;
  color: var(--clr-teal);
  font-size: 0.75rem;
}
.tour-compare-table tr:nth-child(even) td { background: rgba(13,31,53,0.35); }
.tour-compare-table tr:nth-child(even) td:first-child { background: var(--clr-bg3); }
.tour-compare-table tr:last-child td { border-bottom: none; }
.cmp-yes   { color: #4ade80; font-size: 1.15rem; font-weight: 700; line-height: 1; }
.cmp-no    { color: var(--clr-border); font-size: 1rem; }
.cmp-price { color: var(--clr-gold); font-weight: 700; font-size: 1.05rem; display: block; }
.cmp-note  { font-size: 0.72rem; color: var(--clr-text2); display: block; margin-top: 0.15rem; }
.cmp-small { font-size: 0.75rem; color: var(--clr-text2); display: block; margin-top: 0.2rem; }
.cmp-badge {
  display: inline-block;
  font-size: 0.68rem;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.cmp-badge--family  { background: rgba(0,201,183,0.12);  color: var(--clr-teal);   border: 1px solid rgba(0,201,183,0.3); }
.cmp-badge--party   { background: rgba(255,140,0,0.12);  color: var(--clr-orange); border: 1px solid rgba(255,140,0,0.3); }
.cmp-badge--romance { background: rgba(255,94,87,0.12);  color: var(--clr-coral);  border: 1px solid rgba(255,94,87,0.3); }
.cmp-badge--value   { background: rgba(245,197,24,0.12); color: var(--clr-gold);   border: 1px solid rgba(245,197,24,0.3); }
.cmp-badge--groups  { background: rgba(141,180,204,0.12);color: var(--clr-text2);  border: 1px solid rgba(141,180,204,0.3); }
.cmp-badge--evening { background: rgba(245,197,24,0.12); color: var(--clr-gold);   border: 1px solid rgba(245,197,24,0.3); }
.tour-compare__scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.75rem;
  color: var(--clr-text2);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
@media (max-width: 960px) {
  .tour-compare__scroll-hint { display: block; }
}
@media (max-width: 600px) {
  .tour-compare-table { font-size: 0.8rem; }
  .tour-compare-table th, .tour-compare-table td { padding: 0.65rem 0.55rem; }
  .cmp-price { font-size: 0.95rem; }
}

/* =========================================================
   PRINT STYLES
   ========================================================= */
@media print {
  .site-header, .site-footer, .back-to-top, .hero__particles { display: none !important; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}
