/**
 * Wishey Tour Theme — Production Stylesheet
 *
 * Premium spiritual and pilgrimage travel-tech design system.
 * Incorporates 21st.dev inspired modern UI patterns:
 * - Glassmorphic navbar with scroll transitions
 * - Ambient mesh lighting and keyframe entrance animations
 * - Destination cards with image zooms and hover micro-interactions
 * - Accessibility: full prefers-reduced-motion overrides
 *
 * @package WisheyTour
 * @version 1.0.0
 */

/* ==========================================================================
   1. Design Tokens & CSS Custom Properties
   ========================================================================== */
:root {
  /* Brand Palettes (defaults overridden dynamically by inc/enqueue.php) */
  --wishey-color-primary: #183832;       /* Deep Temple Emerald */
  --wishey-color-primary-rgb: 24, 56, 50;
  --wishey-color-accent: #d4af37;        /* Sacred Gold */
  --wishey-color-accent-rgb: 212, 175, 55;
  --wishey-color-accent-hover: #b89428;
  --wishey-color-surface: #faf8f5;       /* Warm Alabaster Ivory */
  --wishey-color-dark: #0c1a17;          /* Midnight Obsidian */
  --wishey-color-dark-rgb: 12, 26, 23;

  /* Neutral Spectrum */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-text-on-dark: #f8fafc;
  --color-text-muted-on-dark: #cbd5e1;

  /* Functional Status Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-info: #3b82f6;

  /* Typography System */
  --font-serif: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Elevation Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.09), 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.14), 0 8px 16px rgba(0, 0, 0, 0.06);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.25);

  /* Borders & Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-glass: rgba(255, 255, 255, 0.16);

  /* Animation & Transition Tokens (ADR v3 specification) */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-base: 300ms;
  --dur-slow: 500ms;
  --dur-hero: 800ms;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 840px;
  --header-height: 72px;
  --header-height-scrolled: 64px;
}

/* ==========================================================================
   2. Reset & Global Typography
   ========================================================================== */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background-color: var(--wishey-color-surface);
  color: var(--color-text-main);
  font-family: var(--font-sans);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-main);
  background-color: var(--wishey-color-surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--wishey-color-primary);
  margin-top: 0;
  letter-spacing: -0.01em;
}

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* Screen reader text for accessibility */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link:focus {
  background-color: var(--wishey-color-accent);
  color: var(--wishey-color-dark);
  clip: auto !important;
  clip-path: none;
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  height: auto;
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  width: auto;
  z-index: 100000;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   3. Buttons & Interactive Controls
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.65rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-spring);
  position: relative;
  white-space: nowrap;
}

.btn--gold {
  background-color: var(--wishey-color-accent);
  color: var(--wishey-color-dark);
  border-color: var(--wishey-color-accent);
}

.btn--gold:hover {
  background-color: var(--wishey-color-accent-hover);
  border-color: var(--wishey-color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--glow {
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.btn--glass {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.btn--glass:hover {
  background-color: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--wishey-color-primary);
  border-color: var(--wishey-color-primary);
}

.btn--outline:hover {
  background-color: var(--wishey-color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background-color: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

.btn--whatsapp:hover {
  background-color: #1eb857;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.btn--sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 0.95rem 2.25rem;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

.btn-arrow {
  transition: transform var(--dur-fast) var(--ease-spring);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   4. Header & Navigation (Glassmorphic Sticky)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--dur-base) var(--ease-smooth);
  background: transparent;
}

/* When transparent at page top (Hero backdrop) */
.site-header .brand-title {
  color: var(--color-white);
}

.site-header .brand-mark {
  color: var(--wishey-color-accent);
}

.site-header .nav-menu a {
  color: rgba(255, 255, 255, 0.9);
}

.site-header .nav-menu a:hover {
  color: var(--wishey-color-accent);
}

.site-header .header-phone-link {
  color: rgba(255, 255, 255, 0.85);
}

.site-header .hamburger-inner,
.site-header .hamburger-inner::before,
.site-header .hamburger-inner::after {
  background-color: var(--color-white);
}

/* State: Scrolled Glassmorphic Navbar */
.site-header.is-scrolled {
  height: var(--header-height-scrolled);
  background-color: rgba(12, 26, 23, 0.88);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.site-branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: max-content;
  margin-right: 1.25rem;
  justify-self: start;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.brand-mark {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--wishey-color-accent);
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-smooth);
}

/* Primary Nav Menu */
.site-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  justify-self: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-menu li {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-menu li a,
.nav-menu a {
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  padding: 0.45rem 0;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-smooth);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--wishey-color-accent);
  transition: width var(--dur-base) var(--ease-spring);
  border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after {
  width: 100%;
}

/* Header Action Elements */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  justify-self: end;
}

.header-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-phone-link .phone-number {
  white-space: nowrap;
}

.header-phone-link:hover {
  color: var(--wishey-color-accent);
}

/* Mobile Trigger Button */
.mobile-menu-trigger {
  display: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  transition: background-color var(--dur-fast) var(--ease-smooth);
}

.mobile-menu-trigger:focus-visible {
  outline: 2px solid var(--wishey-color-accent);
  outline-offset: 2px;
}

.mobile-menu-trigger:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  position: absolute;
  transition: transform var(--dur-base) var(--ease-spring);
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: inherit;
  border-radius: 2px;
  position: absolute;
  transition: transform var(--dur-base) var(--ease-spring);
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

@media (max-width: 1240px) {
  .header-inner {
    gap: 1rem;
  }
  .site-nav .nav-menu {
    gap: 1rem;
  }
  .site-nav .nav-menu li a,
  .site-nav .nav-menu a {
    font-size: 0.875rem;
  }
  .header-phone-link {
    display: none;
  }
}

@media (max-width: 991px) {
  .site-nav,
  .header-phone-link {
    display: none;
  }

  /* With nav hidden, collapse grid to brand | spacer | actions */
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .mobile-menu-trigger {
    display: flex;
  }
}

@media (max-width: 576px) {
  .header-actions .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .site-branding {
    min-width: 0;
    overflow: hidden;
    justify-self: start;
  }

  .site-branding .brand-link {
    max-width: 100%;
    overflow: hidden;
  }

  .site-branding .brand-title {
    font-size: 1.1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }

  .header-actions {
    gap: 0.5rem;
    justify-self: end;
  }

  .mobile-menu-trigger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   5. Mobile Drawer Navigation
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear var(--dur-base);
}

.mobile-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-drawer__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-smooth);
}

.mobile-drawer.is-open .mobile-drawer__backdrop {
  opacity: 1;
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100%;
  background-color: var(--wishey-color-dark);
  color: var(--color-white);
  padding: 2rem 1.5rem;
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-spring);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
}

.mobile-drawer__close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--dur-fast) var(--ease-smooth);
}

.mobile-drawer__close:hover {
  color: var(--wishey-color-accent);
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-list a {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  transition: color var(--dur-fast) var(--ease-smooth);
}

.mobile-nav-list a:hover {
  color: var(--wishey-color-accent);
}

.mobile-drawer__cta {
  margin-bottom: 2.5rem;
}

.mobile-drawer__contact {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer__contact-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wishey-color-accent);
  margin-bottom: 1rem;
}

.mobile-drawer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mobile-drawer__contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   6. Hero Section & Entrance Keyframes
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  background-color: var(--wishey-color-dark);
  color: var(--color-white);
  overflow: hidden;
}

@keyframes heroSlideShow {
  0%    { opacity: 1; }
  15%   { opacity: 1; }
  20%   { opacity: 0; }
  100%  { opacity: 0; }
}

@keyframes heroKenBurnsA {
  0%   { transform: scale(1.0) translate3d(0, 0, 0); }
  100% { transform: scale(1.05) translate3d(-1%, -0.5%, 0); }
}
@keyframes heroKenBurnsB {
  0%   { transform: scale(1.0) translate3d(0, 0, 0); }
  100% { transform: scale(1.05) translate3d(1%, -0.5%, 0); }
}
@keyframes heroKenBurnsC {
  0%   { transform: scale(1.04) translate3d(-0.5%, 0.5%, 0); }
  100% { transform: scale(1.0) translate3d(0.5%, -0.5%, 0); }
}

.hero-slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.92) contrast(1.03);
  opacity: 0;
  animation: heroSlideShow 40s ease-in-out infinite;
  will-change: opacity, transform;
}

/* Hero slide Ken Burns animation assignments — images via inline style from WP Media Library */
.hero-slide--1 { animation-delay: 0s;   animation-name: heroSlideShow, heroKenBurnsA; }
.hero-slide--2 { animation-delay: -40s; animation-name: heroSlideShow, heroKenBurnsB; }
.hero-slide--3 { animation-delay: -32s; animation-name: heroSlideShow, heroKenBurnsC; }
.hero-slide--4 { animation-delay: -24s; animation-name: heroSlideShow, heroKenBurnsA; }
.hero-slide--5 { animation-delay: -16s; animation-name: heroSlideShow, heroKenBurnsB; }
.hero-slide--6 { animation-delay: -8s;  animation-name: heroSlideShow, heroKenBurnsC; }

.hero-slide--fallback {
    background: linear-gradient(
        135deg,
        var(--wishey-color-primary) 0%,
        var(--wishey-color-dark) 60%
    );
    opacity: 1 !important;
    animation: none !important;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    /* Localized elliptical vignette directly behind central text & CTAs for maximum readability */
    radial-gradient(ellipse 960px 540px at 50% 40%, rgba(12, 26, 23, 0.42) 0%, rgba(12, 26, 23, 0.18) 55%, transparent 100%),
    /* Restrained top vignette for header text contrast, soft bottom fade into next section */
    linear-gradient(
      180deg,
      rgba(12, 26, 23, 0.48) 0%,
      rgba(12, 26, 23, 0.08) 22%,
      transparent 45%,
      rgba(12, 26, 23, 0.15) 75%,
      rgba(12, 26, 23, 0.58) 100%
    );
  z-index: 2;
  pointer-events: none;
}

@keyframes atmosphericLightDrift {
  0% {
    transform: translate(-60%, -25%) scale(0.95);
    opacity: 0.35;
  }
  35% {
    transform: translate(-38%, -15%) scale(1.12);
    opacity: 0.60;
  }
  70% {
    transform: translate(-46%, -28%) scale(1.04);
    opacity: 0.45;
  }
  100% {
    transform: translate(-60%, -25%) scale(0.95);
    opacity: 0.35;
  }
}

@keyframes atmosphericHazeShift {
  0% {
    transform: translate(0, 0) scale(0.92);
    opacity: 0.35;
  }
  50% {
    transform: translate(-7%, 5%) scale(1.10);
    opacity: 0.65;
  }
  100% {
    transform: translate(5%, -4%) scale(0.98);
    opacity: 0.45;
  }
}

.hero-ambient-glow {
  position: absolute;
  width: 900px;
  height: 650px;
  top: 10%;
  left: 50%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.22) 0%, rgba(24, 56, 50, 0.08) 50%, transparent 75%);
  filter: blur(85px);
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
  animation: atmosphericLightDrift 20s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-ambient-glow::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 60% 40%, rgba(212, 175, 55, 0.16) 0%, rgba(255, 245, 220, 0.06) 40%, transparent 70%);
  filter: blur(65px);
  animation: atmosphericHazeShift 26s ease-in-out infinite alternate;
}

.hero-container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-content {
  max-width: 920px;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

@keyframes sacredShimmer {
  0%, 100% {
    opacity: 0.85;
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3));
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.85));
  }
}

.eyebrow-icon {
  display: inline-block;
  color: var(--wishey-color-accent);
  font-size: 0.9rem;
  animation: sacredShimmer 3.5s ease-in-out infinite;
}

.eyebrow-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65), 0 4px 28px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* Hero Pilgrimage Search Bar */
.hero-search-bar {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  max-width: min(1200px, 92vw);
  margin: 0 auto;
}

.search-bar-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.search-bar-col {
  flex: 1 1 160px;
  min-width: 145px;
  text-align: left;
  padding: 0.25rem 0.5rem;
}

.search-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-icon {
  color: var(--wishey-color-accent);
  flex-shrink: 0;
}

.search-select {
  border: none;
  background: transparent;
  width: 100%;
  font-weight: 600;
  color: var(--wishey-color-primary);
  outline: none;
  cursor: pointer;
}

.search-bar-divider {
  width: 1px;
  height: 38px;
  background-color: rgba(0, 0, 0, 0.1);
}

.search-bar-submit {
  flex-shrink: 0;
}

.search-submit-btn {
  padding: 0.85rem 1.75rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .search-bar-form {
    flex-direction: column;
    align-items: stretch;
  }
  .search-bar-divider {
    display: none;
  }
  .search-submit-btn {
    width: 100%;
  }
}

/* ==========================================================================
   7. Keyframe Entrance Animations
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.45);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp var(--dur-hero) var(--ease-spring) both;
}

.animate-fade-in-down {
  animation: fadeInDown var(--dur-hero) var(--ease-spring) both;
}

.delay-1 {
  animation-delay: 150ms;
}

.delay-2 {
  animation-delay: 300ms;
}

.delay-3 {
  animation-delay: 450ms;
}

.delay-4 {
  animation-delay: 600ms;
}

/* Scroll Reveal classes driven by IntersectionObserver */
.js-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-slow) var(--ease-spring), transform var(--dur-slow) var(--ease-spring);
}

.js-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   8. Trust Strip
   ========================================================================== */
.trust-strip {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 0;
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.5rem 1rem;
}

.trust-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  color: var(--wishey-color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.trust-card__details {
  display: flex;
  flex-direction: column;
}

.trust-card__number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wishey-color-primary);
  line-height: 1.1;
}

.trust-card__label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

@media (max-width: 991px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   9. Featured Tours & Destination Cards
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wishey-color-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--wishey-color-primary);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin: 0;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 1024px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .tours-grid {
    grid-template-columns: 1fr;
  }
}

/* Destination Card Architecture */
.tour-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base) var(--ease-spring), border-color var(--dur-base) var(--ease-smooth);
  position: relative;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 175, 55, 0.4);
}

.tour-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--wishey-color-primary);
}

.tour-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-spring);
}

.tour-card:hover .tour-card__image {
  transform: scale(1.06);
}

.tour-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}

.tour-card__badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  z-index: 2;
}

.tour-card__location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(12, 26, 23, 0.75);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.tour-card__duration-chip {
  position: absolute;
  bottom: 0.85rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--wishey-color-dark);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

/* Availability Badge */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.badge--success {
  color: #065f46;
}
.badge--success .badge-dot {
  background-color: var(--color-success);
}

.badge--warning {
  color: #92400e;
}
.badge--warning .badge-dot {
  background-color: var(--color-warning);
  animation: pulseGlow 1.8s infinite;
}

.badge--danger {
  color: #991b1b;
}
.badge--danger .badge-dot {
  background-color: var(--color-danger);
}

.badge--info {
  color: #1e40af;
}
.badge--info .badge-dot {
  background-color: var(--color-info);
}

/* Card Content Area */
.tour-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card__rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.tour-card__rating .stars {
  color: #eab308;
}

.tour-card__rating .rating-score {
  font-weight: 700;
  color: var(--color-text-main);
}

.tour-card__rating .review-count {
  color: var(--color-text-muted);
}

.tour-card__title {
  font-size: 1.25rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.tour-card__title a:hover {
  color: var(--wishey-color-accent);
}

.tour-card__subtitle {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.tour-card__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tour-card__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-text-main);
}

.highlight-bullet {
  color: var(--wishey-color-accent);
  font-weight: bold;
}

.tour-card__footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tour-card__pricing {
  display: flex;
  flex-direction: column;
}

.price-prefix {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wishey-color-primary);
  line-height: 1.1;
}

.price-suffix {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.section-footer-cta {
  text-align: center;
}

/* ==========================================================================
   10. Testimonials Section
   ========================================================================== */
.testimonials-section {
  background-color: var(--wishey-color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.testimonials-section .section-title {
  color: var(--color-white);
}

.testimonials-section .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  position: relative;
}

.testimonial-card__stars {
  color: var(--wishey-color-accent);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.testimonial-card__quote {
  margin: 0 0 1.5rem 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  flex-grow: 1;
}

.testimonial-card__author-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wishey-color-accent);
  color: var(--wishey-color-dark);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--color-white);
}

.author-location {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--wishey-color-accent);
  font-weight: 600;
}

/* ==========================================================================
   11. Conversion & Enquiry CTA Strip
   ========================================================================== */
.cta-strip-section {
  position: relative;
  background-color: var(--wishey-color-dark);
  color: var(--color-white);
  overflow: hidden;
}

.cta-strip-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(24, 56, 50, 0.7) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-strip-container {
  position: relative;
  z-index: 10;
}

.cta-strip-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 991px) {
  .cta-strip-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wishey-color-accent);
  margin-bottom: 1rem;
}

.cta-title {
  font-size: 2.75rem;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.cta-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.cta-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--wishey-color-accent);
  color: var(--wishey-color-dark);
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-white);
}

.feature-text span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Consultation Form Card */
.cta-strip__form-card {
  background: var(--color-white);
  color: var(--color-text-main);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-xl);
}

.form-card-header {
  margin-bottom: 1.75rem;
}

.form-card-title {
  font-size: 1.5rem;
  color: var(--wishey-color-primary);
  margin-bottom: 0.35rem;
}

.form-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
}

.enquiry-form .form-group {
  margin-bottom: 1.15rem;
}

.enquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .enquiry-form .form-row {
    grid-template-columns: 1fr;
  }
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text-main);
}

.form-label .required {
  color: var(--color-danger);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--color-text-main);
  font-size: 0.92rem;
  transition: border-color var(--dur-fast) var(--ease-smooth), box-shadow var(--dur-fast) var(--ease-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--wishey-color-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-actions {
  margin-top: 1.5rem;
}

/* Spinner inside button */
.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--wishey-color-dark);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.btn.is-loading .btn-spinner {
  display: inline-block;
}

.btn.is-loading .btn-text {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-alert {
  margin-top: 1.25rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  line-height: 1.4;
}

.form-alert.is-success {
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-alert.is-error {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ==========================================================================
   12. Footer
   ========================================================================== */
.site-footer {
  background-color: var(--wishey-color-dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.footer-top {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo .brand-title {
  color: var(--color-white);
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--wishey-color-accent);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--dur-fast) var(--ease-smooth);
}

.footer-menu a:hover {
  color: var(--wishey-color-accent);
}

.footer-contact-text {
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.footer-contact-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-items li,
.footer-contact-items a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-items a:hover {
  color: var(--wishey-color-accent);
}

.footer-bottom {
  padding: 1.75rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--dur-fast) var(--ease-smooth);
}

.back-to-top:hover {
  color: var(--wishey-color-accent);
}

@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   13. Empty State & 404 Pages
   ========================================================================== */
.empty-state,
.error-404-card {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  max-width: 600px;
  margin: 0 auto;
}

.empty-state__icon-wrap {
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

.empty-state__title,
.error-title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.empty-state__description,
.error-description {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.error-code {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--wishey-color-accent);
  display: block;
  margin-bottom: 0.5rem;
}

.error-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   14. Typography Flow (Page / Single)
   ========================================================================== */
.typography-flow h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.typography-flow h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.typography-flow ul,
.typography-flow ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.typography-flow blockquote {
  border-left: 4px solid var(--wishey-color-accent);
  padding-left: 1.25rem;
  margin-left: 0;
  font-style: italic;
  color: var(--color-text-muted);
}

.entry-header {
  margin-bottom: 2rem;
}

.entry-title {
  font-size: 2.75rem;
}

.entry-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.entry-featured-media {
  margin-bottom: 2.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ==========================================================================
   15. Accessibility & Prefers Reduced Motion Overrides
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Slideshow: show only first image statically, freeze all motion */
  .hero-slide {
    animation: none !important;
    transform: none !important;
    opacity: 0 !important;
  }

  .hero-slide--1 {
    opacity: 1 !important;
  }

  .eyebrow-icon {
    animation: none !important;
    transform: none !important;
  }

  .hero-ambient-glow,
  .hero-ambient-glow::after {
    animation: none !important;
    transform: none !important;
  }

  .js-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .tour-card:hover {
    transform: none !important;
  }

  .tour-card:hover .tour-card__image {
    transform: none !important;
  }

  .btn:hover {
    transform: none !important;
  }

  .btn:hover .btn-arrow {
    transform: none !important;
  }

  .badge--warning .badge-dot {
    animation: none !important;
  }
}

/* ==========================================================================
   Toast Notification System (Lightweight, Non-blocking)
   ========================================================================== */
.wishey-toast-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  max-width: 90vw;
}

.wishey-toast {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  background: rgba(12, 26, 23, 0.94);
  color: #f8fafc;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 16px rgba(212, 175, 55, 0.12);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  user-select: none;
}

.wishey-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wishey-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .wishey-toast-container {
    bottom: 1.5rem;
    max-width: calc(100vw - 2rem);
  }

  .wishey-toast {
    font-size: 0.82rem;
    padding: 0.65rem 1rem;
    white-space: normal;
    text-align: center;
  }
}
