/*
Theme Name: Himalayan Full Moon Meditation Retreat
Theme URI: https://ladakh.retreat.com
Author: Balaji Tours & Meditation Trips
Author URI: https://ladakh.retreat.com
Description: Premium WordPress theme for the Himalayan Full Moon Meditation Retreat Leh Ladakh 2026. Includes interactive map timeline, winds canvas physics, and automated booking emailers.
Version: 1.0.0
Text Domain: himalayan-retreat-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Premium Palette */
  --deep-blue: #0A1E3F;
  --moonlight-white: #F8F8F5;
  --gold-accent: #D4AF37;
  --gold-hover: #F3E5AB;
  --tibetan-maroon: #7A1E1E;
  --stone-grey: #E5E5E5;
  --card-bg-dark: rgba(10, 30, 63, 0.7);
  --card-bg-light: rgba(248, 248, 245, 0.85);
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s ease;
  --shadow-luxury: 0 20px 40px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.3);
  --shadow-moon: 0 0 50px rgba(248, 248, 245, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--deep-blue);
  color: var(--moonlight-white);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Typography Selection & Scrollbar */
::selection {
  background-color: var(--gold-accent);
  color: var(--deep-blue);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--deep-blue);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-accent);
  border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

p {
  font-weight: 300;
  letter-spacing: 0.01em;
  opacity: 0.9;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Base Layout Containers */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background-color: var(--deep-blue);
  color: var(--moonlight-white);
}

.section-light {
  background-color: var(--moonlight-white);
  color: var(--deep-blue);
}

/* Dynamic Floating Canvas Elements (Prayer flags & Moon Glow) */
#prayer-flags-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  pointer-events: none;
  z-index: 10;
}

.moon-glow-container {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* Navigation Shell */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 25px 0;
}

header.scrolled {
  background: rgba(10, 30, 63, 0.92);
  backdrop-filter: blur(15px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--moonlight-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--gold-accent);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.logo-sub {
  font-size: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  display: block;
  opacity: 0.8;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
  position: relative;
  padding: 5px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--gold-accent);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

nav a:hover {
  color: var(--gold-accent);
}

nav a:hover::after {
  width: 100%;
}

.nav-active {
  color: var(--gold-accent) !important;
}

.nav-active::after {
  width: 100% !important;
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold-accent);
  padding: 8px 18px;
  border-radius: 2px;
  color: var(--gold-accent) !important;
  font-weight: 500 !important;
}

.nav-cta:hover {
  background: var(--gold-accent);
  color: var(--deep-blue) !important;
  box-shadow: var(--shadow-gold);
}

/* Mobile Nav Toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--moonlight-white);
  font-size: 1.8rem;
  z-index: 1100;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--moonlight-white);
  padding: 0;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 30, 63, 0.45) 0%, rgba(10, 30, 63, 0.9) 100%);
  z-index: 2;
}

.hero-fallback-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 25s infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin-top: 50px;
}

.hero-sub {
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-accent);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease forwards;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
  animation: fadeInUp 1.2s ease forwards;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
  opacity: 0.95;
  max-width: 750px;
  animation: fadeInUp 1.4s ease forwards;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1.6s ease forwards;
}

/* Premium CTAs & Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  border-radius: 3px;
  transition: var(--transition-smooth);
  cursor: pointer;
  gap: 12px;
}

.btn-primary {
  background: var(--gold-accent);
  color: var(--deep-blue);
  border: 1px solid var(--gold-accent);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-hover);
  color: var(--deep-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background: rgba(10, 30, 63, 0.5);
  color: var(--moonlight-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--moonlight-white);
  color: var(--deep-blue);
  border-color: var(--moonlight-white);
  transform: translateY(-3px);
}

/* Floating Elements (WhatsApp & Prayer Flags Overlay) */
.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 999;
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.whatsapp-sticky::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s infinite;
  opacity: 0.7;
}

.whatsapp-sticky:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Glassmorphism Section Title Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  position: relative;
  z-index: 10;
}

.section-header .subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-accent);
  font-weight: 600;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
  position: relative;
}

.section-header h2::after {
  content: '✦';
  display: block;
  color: var(--gold-accent);
  font-size: 1.2rem;
  margin-top: 15px;
}

.section-header.dark h2 {
  color: var(--moonlight-white);
}

.section-header.light h2 {
  color: var(--deep-blue);
}

/* SECTION 1: Why Join (Luxury Cards Grid) */
.luxury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 5;
}

.luxury-card {
  background: var(--card-bg-dark);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 4px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  transform: translateX(-100%);
  transition: var(--transition-smooth);
}

.luxury-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-luxury), var(--shadow-gold);
}

.luxury-card:hover::before {
  transform: translateX(100%);
}

.card-icon {
  font-size: 2.8rem;
  color: var(--gold-accent);
  margin-bottom: 25px;
  display: inline-block;
  transition: var(--transition-smooth);
}

.luxury-card:hover .card-icon {
  transform: scale(1.15) rotate(5deg);
}

.luxury-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--moonlight-white);
}

.luxury-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* SECTION 2: Destinations Interactive Visual Timeline */
.destinations-section {
  background: linear-gradient(180deg, var(--deep-blue) 0%, #061226 100%);
}

.timeline-wrapper {
  margin-top: 40px;
  position: relative;
}

.timeline-map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  perspective: 1000px;
}

.timeline-svg-map {
  width: 100%;
  max-width: 900px;
  height: auto;
  filter: drop-shadow(0px 15px 30px rgba(0, 0, 0, 0.5));
}

.map-route-path {
  fill: none;
  stroke: rgba(212, 175, 55, 0.2);
  stroke-width: 3;
  stroke-dasharray: 8 8;
  transition: var(--transition-smooth);
}

.map-route-path.active {
  stroke: var(--gold-accent);
  stroke-width: 4;
  stroke-dasharray: none;
  animation: dashDraw 4s linear infinite;
}

.map-node {
  fill: var(--deep-blue);
  stroke: rgba(212, 175, 55, 0.5);
  stroke-width: 2;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.map-node:hover, .map-node.active {
  fill: var(--gold-accent);
  stroke: var(--moonlight-white);
  stroke-width: 3;
  filter: drop-shadow(0 0 10px var(--gold-accent));
}

.map-label {
  fill: var(--moonlight-white);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  text-anchor: middle;
  pointer-events: none;
  letter-spacing: 0.05em;
  opacity: 0.75;
  transition: var(--transition-smooth);
}

.map-label.active {
  fill: var(--gold-accent);
  font-size: 15px;
  opacity: 1;
}

/* Dest Timeline UI Slider */
.timeline-slider {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 50px;
}

.timeline-slider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(212, 175, 55, 0.2);
  z-index: 1;
  transform: translateY(-50%);
}

.timeline-step {
  z-index: 2;
  background: var(--deep-blue);
  border: 2px solid rgba(212, 175, 55, 0.3);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: bold;
  color: var(--gold-accent);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.timeline-step.active, .timeline-step:hover {
  background: var(--gold-accent);
  color: var(--deep-blue);
  border-color: var(--moonlight-white);
  box-shadow: var(--shadow-gold);
  transform: scale(1.2);
}

.dest-detail-card {
  background: rgba(10, 30, 63, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  backdrop-filter: blur(15px);
  min-height: 400px;
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-smooth);
}

.dest-image-side {
  position: relative;
  overflow: hidden;
}

.dest-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.dest-detail-card:hover .dest-image-side img {
  transform: scale(1.08);
}

.dest-info-side {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dest-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--tibetan-maroon);
  color: var(--moonlight-white);
  padding: 6px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  margin-bottom: 25px;
}

.dest-info-side h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--moonlight-white);
}

.dest-info-side p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* SECTION 3: Full Day Itinerary (Expandable accordion) */
.itinerary-accordion {
  max-width: 950px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  margin-bottom: 15px;
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}

.accordion-header:hover {
  background: rgba(212, 175, 55, 0.05);
}

.accordion-title-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.day-badge {
  background: var(--gold-accent);
  color: var(--deep-blue);
  font-weight: 700;
  font-family: var(--font-sans);
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: 2px;
  min-width: 75px;
  text-align: center;
}

.day-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--moonlight-white);
}

.day-meta-indicator {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
  margin-left: 15px;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--gold-accent);
  transition: var(--transition-smooth);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  padding: 0 20px;
  background: rgba(10, 30, 63, 0.3);
}

.accordion-inner {
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding-top: 25px;
}

.accordion-inner-left h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.accordion-inner-left p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.85;
}

.itinerary-meta-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 4px;
  padding: 20px;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.meta-item:last-child {
  margin-bottom: 0;
}

.meta-label {
  opacity: 0.6;
}

.meta-val {
  font-weight: 500;
  color: var(--gold-accent);
}

/* Expanded State */
.accordion-item.active .accordion-content {
  max-height: 1000px;
  transition: max-height 1s cubic-bezier(1, 0, 1, 0);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-header {
  background: rgba(212, 175, 55, 0.08);
}

/* SECTION 4: Full Moon Ceremony Feature */
.moon-ceremony-section {
  background: radial-gradient(circle at top, #0f274f 0%, var(--deep-blue) 70%);
  position: relative;
}

.moon-artwork-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 50px;
}

.glowing-moon {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f1efe6 60%, #e2dcb9 100%);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(248, 248, 245, 0.6), 0 0 150px rgba(212, 175, 55, 0.35);
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.glowing-moon:hover {
  transform: scale(1.05);
  box-shadow: 0 0 100px rgba(248, 248, 245, 0.8), 0 0 200px rgba(212, 175, 55, 0.5);
}

.moon-aura-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(248, 248, 245, 0.15);
  animation: pulse-ring 4s infinite linear;
  z-index: 1;
}

.moon-ceremony-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.ceremony-intro h3 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--moonlight-white);
}

.ceremony-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 30px;
}

.ceremony-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.ceremony-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition-fast);
  backdrop-filter: blur(5px);
}

.ceremony-pill:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-accent);
  transform: translateY(-3px);
}

.ceremony-pill .pill-number {
  font-family: var(--font-serif);
  color: var(--gold-accent);
  font-size: 1.2rem;
  font-weight: bold;
}

.ceremony-pill h4 {
  font-size: 1.1rem;
  color: var(--moonlight-white);
}

.ceremony-pill p {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* SECTION 5: Accommodation Section */
.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.accomm-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accomm-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-luxury);
}

.accomm-img-box {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.accomm-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.accomm-card:hover .accomm-img-box img {
  transform: scale(1.08);
}

.accomm-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10, 30, 63, 0.85);
  border: 1px solid var(--gold-accent);
  color: var(--gold-accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 5px 12px;
  border-radius: 2px;
  backdrop-filter: blur(5px);
}

.accomm-info-box {
  padding: 30px;
}

.accomm-info-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--moonlight-white);
}

.accomm-info-box p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.accomm-amenities {
  display: flex;
  gap: 15px;
  list-style: none;
  font-size: 0.8rem;
  opacity: 0.6;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 15px;
}

.accomm-amenities li {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* SECTION 6: Pinterest Gallery Grid */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--moonlight-white);
  padding: 8px 22px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-pill:hover, .filter-pill.active {
  background: var(--gold-accent);
  color: var(--deep-blue);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-gold);
}

.masonry-grid {
  column-count: 3;
  column-gap: 25px;
  width: 100%;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.05);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 30, 63, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition-fast);
  pointer-events: none;
}

.masonry-item:hover .gallery-overlay {
  opacity: 1;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay h4 {
  font-size: 1.1rem;
  color: var(--moonlight-white);
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 0.8rem;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 30, 63, 0.98);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  box-shadow: var(--shadow-luxury);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 2px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.lightbox-caption {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--moonlight-white);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--moonlight-white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--gold-accent);
}

/* SECTION 7: Testimonial Video Carousel */
.testimonials-section {
  background: radial-gradient(circle at center, #0e2954 0%, var(--deep-blue) 100%);
}

.carousel-outer {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.testimonial-video-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 350px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-luxury);
}

.testimonial-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(10, 30, 63, 0.85);
  border: 1px solid var(--gold-accent);
  color: var(--gold-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1.5rem;
  padding-left: 4px;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold-accent);
  color: var(--deep-blue);
  box-shadow: var(--shadow-gold);
}

.testimonial-quote-box {
  padding: 20px;
}

.stars-rating {
  color: var(--gold-accent);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testimonial-quote-box blockquote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  opacity: 0.95;
}

.testimonial-author {
  font-family: var(--font-sans);
}

.author-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--moonlight-white);
  margin-bottom: 5px;
}

.author-desc {
  font-size: 0.85rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Carousel Nav Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 30, 63, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-accent);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.carousel-nav-btn:hover {
  background: var(--gold-accent);
  color: var(--deep-blue);
  border-color: var(--gold-accent);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition-fast);
}

.indicator-dot.active {
  background: var(--gold-accent);
  width: 25px;
  border-radius: 4px;
}

/* SECTION 8: About Meditation Trips Storytelling */
.about-story-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-left h3 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.about-story-left p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-gold-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  border-left: 3px solid var(--gold-accent);
  padding-left: 25px;
  margin: 35px 0;
  color: var(--gold-accent);
  font-style: italic;
}

.about-story-right {
  position: relative;
}

.story-img-wrapper {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.story-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.experience-stat-overlay {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--deep-blue);
  border: 1px solid var(--gold-accent);
  border-radius: 4px;
  padding: 25px 35px;
  box-shadow: var(--shadow-luxury);
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-accent);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

/* SECTION 9: Instagram Feed Grid */
.insta-handle-box {
  text-align: center;
  margin-bottom: 40px;
}

.insta-handle-box a {
  font-size: 1.2rem;
  color: var(--gold-accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.insta-handle-box a:hover {
  color: var(--moonlight-white);
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.05);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.insta-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 30, 63, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-accent);
  opacity: 0;
  transition: var(--transition-fast);
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-item:hover .insta-hover-overlay {
  opacity: 1;
}

/* SECTION 10: Booking & Contact Portal */
.booking-section {
  background: radial-gradient(circle at bottom, #11284d 0%, var(--deep-blue) 80%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-details-side h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.contact-details-side p {
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-cards-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 4px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition-fast);
}

.contact-info-card:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--gold-accent);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  font-size: 1.3rem;
}

.contact-card-text h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.5;
  margin-bottom: 5px;
}

.contact-card-text p {
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-card-text a:hover {
  color: var(--gold-accent);
}

/* Premium Booking Form */
.booking-form-box {
  background: var(--card-bg-dark);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  padding: 50px 40px;
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-luxury), var(--shadow-gold);
}

.booking-form-box h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--gold-accent);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  padding: 12px 18px;
  font-size: 0.95rem;
  color: var(--moonlight-white);
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-accent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

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

.form-btn-submit {
  width: 100%;
  border: none;
  margin-top: 10px;
}

/* Form AJAX feedback notifications */
.form-status-msg {
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
  font-size: 0.9rem;
  display: none;
  text-align: center;
  font-weight: 500;
}
.form-status-msg.success {
  display: block;
  background: rgba(22, 163, 74, 0.2);
  border: 1px solid #16a34a;
  color: #4ade80;
}
.form-status-msg.error {
  display: block;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid #dc2626;
  color: #fca5a5;
}

/* FOOTER SHELL */
footer {
  background-color: #050E1D;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 80px 0 30px 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--moonlight-white);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--gold-accent);
}

.footer-col p {
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  gap: 15px;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moonlight-white);
  transition: var(--transition-fast);
}

.social-circle:hover {
  background: var(--gold-accent);
  color: var(--deep-blue);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-gold);
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  opacity: 0.75;
}

.footer-links-list a:hover {
  opacity: 1;
  color: var(--gold-accent);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.5;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
  font-size: 0.8rem;
  opacity: 0.5;
}

.footer-bottom-links a:hover {
  opacity: 1;
  color: var(--gold-accent);
}

/* Custom Page Elements: ACCOMMODATION / ITINERARY deep dive */
.subpage-hero {
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.subpage-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 30, 63, 0.5) 0%, var(--deep-blue) 100%);
  z-index: 2;
}

.subpage-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.subpage-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin-top: 80px;
}

.subpage-hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* Checklist elements */
.luxury-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}

.checklist-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.checklist-bullet {
  color: var(--gold-accent);
  font-size: 1.2rem;
  line-height: 1;
}

.checklist-text h4 {
  font-size: 1.1rem;
  color: var(--moonlight-white);
  margin-bottom: 5px;
}

.checklist-text p {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-content {
    margin-top: 100px;
  }
  .dest-detail-card {
    grid-template-columns: 1fr;
  }
  .dest-info-side {
    padding: 35px;
  }
  .accordion-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .moon-ceremony-details {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testimonial-slide {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .testimonial-video-card {
    height: 280px;
  }
  .about-story-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--deep-blue);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 100px 40px 40px 40px;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 25px;
  }
  
  nav a {
    font-size: 1.1rem;
    display: block;
  }
  
  .timeline-slider {
    overflow-x: auto;
    padding-bottom: 15px;
    gap: 15px;
  }
  
  .timeline-step {
    flex-shrink: 0;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .masonry-grid {
    column-count: 1;
  }
  
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .luxury-checklist-grid {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-sticky {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Animations */
@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-ring {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

@keyframes dashDraw {
  to {
    stroke-dashoffset: -40;
  }
}
