/* =========================================================
   TRUE PARADISE — Master Stylesheet
   Developed by Mask Media Digital Solutions
   ========================================================= */

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

/* ── CSS Custom Properties ── */
:root {
  --color-primary: #112445;
  --color-primary-dark: #0a162b;
  --color-primary-light: #1f3c6d;
  --color-gold: #c9a227;
  --color-gold-light: #e8c460;
  --color-gold-dark: #a07d10;
  --color-dark: #0d0d0d;
  --color-surface: #f8f5f0;
  --color-white: #ffffff;
  --color-text: #2c2c2c;
  --color-muted: #6b7280;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 0 30px rgba(201,162,39,0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  /* Dynamic theme (overridden by admin) */
  --theme-primary: #112445;
  --theme-accent: #c9a227;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-surface);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { font-size: 1rem; line-height: 1.75; }

/* ── Section Utilities ── */
.section { padding: 6rem 0; }
.section-sm { padding: 3rem 0; }
.container { width: 90%; max-width: 1280px; margin: 0 auto; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 400;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  margin: 1rem auto;
  border-radius: 2px;
}
.text-gold { color: var(--color-gold); }
.text-primary { color: var(--color-primary); }

/* ── Glassmorphism ── */
.glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.glass-dark {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.glass-white {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(10, 22, 43, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-slow);
}
.navbar.scrolled {
  background: rgba(10, 22, 43, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.6rem 0;
  box-shadow: var(--shadow-md);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-logo img.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}
.navbar-logo > div {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.navbar-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  white-space: nowrap;
}
.navbar-logo .logo-sub {
  font-size: 1.15rem;
  color: var(--color-gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .navbar-logo > div {
    gap: 0.3rem;
  }
  .navbar-logo .logo-text {
    font-size: 1.35rem;
  }
  .navbar-logo .logo-sub {
    font-size: 0.95rem;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--color-gold-light);
  background: rgba(255,255,255,0.1);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.7rem;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(10, 22, 43, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  min-width: 200px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 0;
}
.nav-cta {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark)) !important;
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover {
  background: var(--color-gold-light) !important;
  color: var(--color-dark) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 18, 36, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: white;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--color-gold-light); }
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================================================
   HERO SECTION — SKY ANIMATION
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}
/* Sky background slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1; /* behind hero-content */
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
  animation: kenBurns 8s ease-out forwards;
}
.hero-slideshow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 12, 24, 0.18) 0%, rgba(5, 12, 24, 0.42) 75%, #faf8f5 100%);
  z-index: 3; /* overlay on top of slides but behind content */
}

@keyframes kenBurns {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  100% {
    transform: scale(1.15) translate(-1%, -0.5%);
  }
}

/* Hero images — Sigiriya Center (Full cover layout) */
.hero-images {
  position: absolute;
  inset: 0; /* Cover the entire hero container */
  z-index: 3; /* Rendered in front of stars and celestial bodies, but behind clouds */
  pointer-events: none;
}
.hero-img-center {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom; /* Keep rock citadel positioned at the bottom */
  opacity: 1; /* Removed opacity restriction for full clear view */
  transition: filter 1.5s ease;
}


/* Ground / horizon line */
.hero-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  z-index: 5;
}

/* Hero content */
.hero-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5rem; /* Adjusted to 5rem (approx. 2cm) from the left edge of the screen */
  transform: none;
  width: auto;
  max-width: 800px; /* Restrict width to allow 2x font sizes to span nicely */
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Left-aligned content on desktop */
  justify-content: center;
  text-align: left; /* Left-aligned text on desktop */
  padding: 2rem 0;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.5);
  color: var(--color-gold-light);
  font-size: clamp(0.6rem, 0.9vw, 0.75rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  animation: fadeSlideDown 1s ease forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5.5vw, 6.5rem); /* Scaled exactly 2x from clamp(1.5rem, 4vw, 3.25rem) */
  font-weight: 900;
  color: white;
  text-shadow: 0 4px 25px rgba(0,0,0,0.55);
  line-height: 0.95;
  letter-spacing: -0.02em;
  animation: fadeSlideUp 1s 0.3s ease both;
}
.hero-title span {
  color: var(--color-gold-light);
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 0.4rem;
}
.hero-rating-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0.6rem 0 1rem;
  animation: fadeSlideUp 1s 0.4s ease both;
}
@media (max-width: 768px) {
  .hero-rating-block {
    align-items: center;
  }
}
.hero-rating-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.85rem); /* Scaled up to be larger and more prominent */
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-stars {
  display: flex;
  gap: 0.35rem;
  color: var(--color-gold-light);
}
.hero-stars i {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  animation: starPulse 2s infinite ease-in-out;
  display: inline-block;
}
.hero-stars i:nth-child(1) { animation-delay: 0s; }
.hero-stars i:nth-child(2) { animation-delay: 0.15s; }
.hero-stars i:nth-child(3) { animation-delay: 0.3s; }
.hero-stars i:nth-child(4) { animation-delay: 0.45s; }
.hero-stars i:nth-child(5) { animation-delay: 0.6s; }

@keyframes starPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(201, 162, 39, 0.4));
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.85));
    color: #fffbeb;
  }
}
.hero-subtitle {
  font-size: clamp(0.7rem, 1.3vw, 1rem); /* Scaled 1.5x smaller */
  color: rgba(255,255,255,0.9);
  max-width: 580px;
  margin: 1.1rem 0 2rem;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  line-height: 1.6;
  animation: fadeSlideUp 1s 0.5s ease both;
}
.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-start; /* Left-aligned buttons */
  pointer-events: all;
  animation: fadeSlideUp 1s 0.7s ease both;
}
.hero-buttons .btn {
  padding: clamp(0.6rem, 1.5vw, 0.825rem) clamp(1.5rem, 3vw, 2.25rem) !important;
  font-size: clamp(1rem, 2vw, 1.23rem) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
}
.hero-sl-time {
  position: absolute;
  top: 110px;
  right: 2rem;
  z-index: 10;
  text-align: right;
  pointer-events: none;
}
.sl-time-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.sl-time-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  font-weight: 600;
}
.sl-time-period {
  font-size: 0.7rem;
  color: var(--color-gold-light);
  letter-spacing: 0.1em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 5.5rem; /* Elevated above the simulator bar */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollDot 1.5s ease infinite;
}
@keyframes scrollDot { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(12px); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

/* =========================================================
   SIMULATOR BAR
   ========================================================= */
.simulator-bar {
  position: absolute; /* Set to absolute so it doesn't float site-wide */
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(10, 20, 40, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  min-width: 340px;
  max-width: 90vw;
  transition: var(--transition);
}
.simulator-bar:hover {
  background: rgba(10, 20, 40, 0.7);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.sim-icon { font-size: 1.1rem; min-width: 22px; text-align: center; }
.sim-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}
.sim-time-display {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: white;
  font-weight: 600;
  min-width: 55px;
  text-align: center;
  text-shadow: 0 0 10px rgba(255,200,0,0.4);
}
.sim-slider {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-gold) var(--sim-pct, 50%), rgba(255,255,255,0.2) var(--sim-pct, 50%));
  outline: none;
  cursor: pointer;
  min-width: 120px;
}
.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 3px rgba(201,162,39,0.5), 0 2px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.15s;
}
.sim-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.sim-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 3px rgba(201,162,39,0.5);
  cursor: pointer;
  border: none;
}
.sim-reset {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sim-reset::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.sim-reset:hover { background: rgba(255,255,255,0.2); color: white; }
.sim-reset.is-live {
  color: #4ade80; /* Light green text */
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.1);
}
.sim-reset.is-live::before {
  background: #4ade80; /* Light green dot */
  box-shadow: 0 0 8px #4ade80; /* Green glow */
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0% { transform: scale(1); box-shadow: 0 0 4px #4ade80; }
  50% { transform: scale(1.3); box-shadow: 0 0 10px #4ade80; }
  100% { transform: scale(1); box-shadow: 0 0 4px #4ade80; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(17, 36, 69, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(17, 36, 69, 0.45);
}
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: white;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: translateY(-2px);
}
.btn-outline-green {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline-green:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

/* ── Review Platform Buttons ── */
.btn-review-tripadvisor,
.btn-review-google,
.btn-review-facebook {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-review-tripadvisor:hover,
.btn-review-google:hover,
.btn-review-facebook:hover {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: white;
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-icon { width: 42px; height: 42px; padding: 0; border-radius: 50%; justify-content: center; }

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img { transform: scale(1.05); }
.card-img-wrapper {
  overflow: hidden;
  position: relative;
}
.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xl);
}
.card-badge-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
}
.card-body { padding: 1.5rem; }
.card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.card-text { color: var(--color-muted); font-size: 0.9rem; line-height: 1.6; }
.card-meta {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f0ebe4;
  font-size: 0.8rem;
  color: var(--color-muted);
}
.card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.card-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 0.75rem;
}
.card-price span { font-size: 0.9rem; font-weight: 400; color: var(--color-muted); }

/* Destination grid & card */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.25rem;
}
.dest-grid .dest-card:first-child {
  grid-row: span 2;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: var(--transition);
}
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
}
.dest-info h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.dest-info p { font-size: 0.8rem; opacity: 0.8; }
.dest-tag {
  display: inline-block;
  background: var(--color-gold);
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.4rem;
}

/* Feature card */
.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-primary);
}
.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(17,36,69,0.1), rgba(17,36,69,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  transform: rotate(10deg) scale(1.1);
}

/* =========================================================
   TRUST BADGES — Booking, TripAdvisor, Trustpilot
   ========================================================= */
.trust-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: 4rem 0;
}
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 1rem 1.75rem;
  border-radius: var(--radius-md);
  color: white;
  transition: var(--transition);
  text-decoration: none;
}
.trust-badge:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.trust-badge-icon { font-size: 2rem; }
.trust-badge-info { display: flex; flex-direction: column; }
.trust-badge-name { font-weight: 700; font-size: 1rem; }
.trust-badge-desc { font-size: 0.75rem; opacity: 0.75; }

/* Rating stars */
.stars { color: #FFD700; font-size: 0.9rem; letter-spacing: 1px; }

/* =========================================================
   REVIEWS / TESTIMONIALS
   ========================================================= */
.reviews-section { background: var(--color-surface); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(17,36,69,0.08);
  line-height: 1;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 1rem; color: var(--color-text); }
.reviewer-location { font-size: 0.8rem; color: var(--color-muted); }
.review-text { font-size: 0.9rem; color: var(--color-muted); line-height: 1.7; font-style: italic; }
.review-stars { margin-bottom: 0.75rem; }

/* =========================================================
   ABOUT / DISCOVERY SECTION
   ========================================================= */
.about-section { background: white; }
#about.about-section {
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('../images/tea.jpg') no-repeat center center / cover;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrapper {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  width: 48%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
  bottom: -30px;
  right: -30px;
}
.about-stat-card {
  position: absolute;
  top: 30px;
  left: -30px;
  background: var(--color-primary);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold-light);
}
.about-stat-label { font-size: 0.75rem; opacity: 0.85; margin-top: 0.25rem; }

/* =========================================================
   ITINERARY / DAY TOUR PAGES
   ========================================================= */
.itinerary-hero {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 10rem 0 5rem;
  color: white;
}
.itinerary-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.itinerary-day {
  border-left: 3px solid var(--color-primary-light);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.itinerary-day::before {
  content: attr(data-day);
  position: absolute;
  left: -1.5rem;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}
.itinerary-day-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.itinerary-day-text { font-size: 0.9rem; color: var(--color-muted); }

/* Booking sidebar */
.booking-sidebar {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e0d8;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  transition: var(--transition);
  outline: none;
  background: #faf8f5;
  margin-bottom: 1rem;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--color-primary);
  background: white;
}
.booking-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  columns: 4;
  column-gap: 1rem;
  gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,36,69,0.5);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: white; font-size: 2rem; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
  z-index: 2001;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.7;
  transition: var(--transition);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 2001;
}
.lightbox-nav:hover { opacity: 1; background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* =========================================================
   CHATBOT
   ========================================================= */
.chatbot-fab {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(17,36,69,0.4), 0 0 0 0 rgba(17,36,69,0.4);
  cursor: pointer;
  transition: var(--transition);
  animation: chatPulse 2s ease-in-out infinite;
}
.chatbot-fab:hover { transform: scale(1.1); }
@keyframes chatPulse {
  0% { box-shadow: 0 4px 20px rgba(17,36,69,0.4), 0 0 0 0 rgba(17,36,69,0.3); }
  70% { box-shadow: 0 4px 20px rgba(17,36,69,0.4), 0 0 0 14px rgba(17,36,69,0); }
  100% { box-shadow: 0 4px 20px rgba(17,36,69,0.4), 0 0 0 0 rgba(17,36,69,0); }
}
.chatbot-window {
  position: fixed;
  bottom: 7.5rem;
  right: 1.5rem;
  z-index: 500;
  width: 360px;
  max-width: calc(100vw - 3rem);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: 520px;
  transform: scale(0.9) translateY(20px);
  transform-origin: bottom right;
  transition: var(--transition);
  opacity: 0;
}
.chatbot-window.open {
  display: flex;
  transform: scale(1) translateY(0);
  opacity: 1;
}
.chatbot-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  padding: 1rem 1.25rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.chatbot-name { font-weight: 600; font-size: 0.95rem; }
.chatbot-status { font-size: 0.72rem; opacity: 0.8; }
.chatbot-status::before { content: '● '; color: #4ade80; }
.chatbot-close-btn { margin-left: auto; background: none; border: none; color: white; font-size: 1.1rem; cursor: pointer; opacity: 0.7; }
.chatbot-close-btn:hover { opacity: 1; }
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scroll-behavior: smooth;
}
.chat-msg {
  max-width: 82%;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0.6rem 1rem;
  border-radius: 18px;
}
.chat-msg-bot {
  background: #f0f7f4;
  color: var(--color-text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg-user {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
}
.chat-suggestion-btn {
  background: rgba(17,36,69,0.08);
  border: 1px solid rgba(17,36,69,0.2);
  color: var(--color-primary);
  font-size: 0.75rem;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.chat-suggestion-btn:hover { background: var(--color-primary); color: white; }
.chatbot-input-area {
  padding: 0.75rem 1rem;
  border-top: 1px solid #f0ebe4;
  display: flex;
  gap: 0.5rem;
}
.chatbot-input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1.5px solid #e5e0d8;
  border-radius: 25px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}
.chatbot-input:focus { border-color: var(--color-primary); }
.chatbot-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.chatbot-send:hover { background: var(--color-primary-light); transform: scale(1.1); }

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.1) rotate(-5deg); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, rgba(17,36,69,0.8) 100%);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
  color: white;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--color-gold-light); }
.breadcrumb span { color: var(--color-gold-light); }

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(17,36,69,0.1), rgba(17,36,69,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-info-value { font-weight: 600; color: var(--color-text); font-size: 1rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #0a1a0f;
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}
.footer-brand .brand-sub {
  font-size: 0.7rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 280px; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--color-primary); border-color: var(--color-primary); color: white; transform: translateY(-3px); }
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--color-gold-light); padding-left: 4px; }
.footer-links a::before { content: '→'; font-size: 0.7rem; opacity: 0; transition: var(--transition); }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-icon { color: var(--color-gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-dev-credit a {
  color: var(--color-gold);
  font-weight: 600;
  transition: var(--transition);
}
.footer-dev-credit a:hover { color: var(--color-gold-light); text-decoration: underline; }
.sltda-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--color-gold-light);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-top: 1rem;
}

/* =========================================================
   ADMIN PANEL
   ========================================================= */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: var(--color-primary-dark);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar-logo {
  padding: 0 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border-left: 3px solid transparent;
}
.admin-nav-link:hover, .admin-nav-link.active {
  color: white;
  background: rgba(255,255,255,0.08);
  border-left-color: var(--color-gold);
}
.admin-main { background: #f8f7f4; padding: 2.5rem; }
.admin-panel-section {
  display: none;
  animation: fadeSlideUp 0.3s ease;
}
.admin-panel-section.active { display: block; }
.admin-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.admin-input, .admin-select, .admin-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #e5e0d8;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  background: #faf8f5;
  margin-bottom: 0.75rem;
}
.admin-input:focus, .admin-select:focus, .admin-textarea:focus {
  border-color: var(--color-primary);
  background: white;
}
.admin-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}
.admin-item-list { display: flex; flex-direction: column; gap: 0.75rem; }
.admin-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #faf8f5;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #e5e0d8;
}
.admin-item-text { flex: 1; font-size: 0.875rem; }
.admin-delete-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  border: none;
}
.admin-delete-btn:hover { background: #dc3545; color: white; }

/* Login screen */
.admin-login-screen {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-login-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* =========================================================
   GRIDS
   ========================================================= */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
  .gallery-grid { columns: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { right: 20px; bottom: -20px; }
  .about-stat-card { left: 20px; }
  .itinerary-details { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero {
    height: 100dvh !important;
    min-height: 560px !important;
  }
  .hero-img-left, .hero-img-right { width: 50%; }
  .section { padding: 4rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  /* Stats strip: keep 2-column on small phones so 4 numbers fit as 2×2 */
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  /* Reduce huge stat numbers on small screens */
  .grid-4 [data-count] { font-size: 2rem !important; }
  .gallery-grid { columns: 1; }
  .trust-badges { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { height: auto; position: relative; }
  .scroll-indicator { display: none !important; } /* Hide mouse scroll indicator on mobile */
  .simulator-bar {
    min-width: unset !important;
    width: calc(100% - 2.5rem) !important;
    max-width: 360px !important;
    padding: 0.55rem 0.9rem !important;
    gap: 0.5rem !important;
    bottom: 5.5rem !important; /* Lifted higher to prevent browser bar overlap and match scroll indicator position */
    border-radius: 40px !important;
    z-index: 100 !important;
  }
  .sim-label { display: none !important; }
  .sim-icon { font-size: 1rem !important; min-width: 18px !important; }
  .sim-time-display { font-size: 0.9rem !important; min-width: 42px !important; }
  .sim-slider { min-width: 80px !important; height: 3px !important; }
  .sim-slider::-webkit-slider-thumb { width: 14px !important; height: 14px !important; }
  .sim-reset { font-size: 0.62rem !important; padding: 0.2rem 0.5rem !important; }
  .hero-sl-time { right: 1rem; top: 90px; }
  .booking-sidebar { position: static; }
  .hero-content {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 2.5rem) !important;
    max-width: 480px !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1.5rem !important;
  }
  .hero-subtitle {
    margin: 0.75rem auto 1.5rem !important;
  }
  .hero-buttons {
    justify-content: center !important;
  }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .chatbot-window { right: 0; bottom: 7rem; border-radius: 20px 20px 0 0; width: 100%; max-width: 100%; }
  /* Extra compact simulator on very small phones */
  .simulator-bar {
    width: calc(100% - 2rem) !important;
    padding: 0.45rem 0.75rem !important;
    gap: 0.4rem !important;
  }
  .sim-slider { min-width: 60px !important; }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }
  .reviews-section {
    overflow: hidden !important;
  }

  #sun-el, .sun-wrapper {
    width: 80px !important;
    height: 80px !important;
  }
  .sun-core {
    width: 80px !important;
    height: 80px !important;
    box-shadow:
      0 0 35px 15px rgba(255, 220, 100, 0.65),
      0 0 70px 30px rgba(255, 170, 50, 0.5),
      0 0 140px 60px rgba(255, 120, 0, 0.3) !important;
  }
  #moon-el, .moon-wrapper {
    width: 80px !important;
    height: 80px !important;
  }
  .moon-body {
    width: 60px !important;
    height: 60px !important;
  }
  .moon-glow-ring {
    inset: -20px !important;
    box-shadow: 0 0 50px 15px rgba(218, 184, 80, 0.25) !important;
  }
  .moon-glow-ring2 {
    inset: -35px !important;
    box-shadow: 0 0 75px 30px rgba(255, 255, 255, 0.15) !important;
  }
  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }
  .section-subtitle {
    text-align: center !important;
    padding: 0 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  /* Container gutters */
  .container {
    width: 88% !important;
  }

  /* About section mobile adjustments */
  .about-section {
    text-align: center !important;
  }
  .about-section h2 {
    text-align: center !important;
  }
  .about-section p {
    text-align: center !important;
    padding: 0 0.5rem !important;
  }
  .about-section .gold-line {
    margin: 1rem auto !important;
  }
  .about-section .grid-2 {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    margin: 0 auto 2rem !important;
    text-align: left !important;
    width: auto !important;
    max-width: 290px !important;
    gap: 0.75rem !important;
  }
  .about-section .btn {
    display: inline-flex !important;
    margin: 0 auto !important;
  }
  .about-img-wrapper {
    height: 420px !important;
    width: 88% !important;
    margin: 0 auto 4rem !important;
    overflow: visible !important;
  }
  .about-img-main {
    width: 82% !important;
    height: 280px !important;
    margin-left: 0 !important;
  }
  .about-img-accent {
    width: 52% !important;
    height: 170px !important;
    right: 0 !important;
    bottom: -1.5rem !important;
    border: 3px solid white !important;
  }
  .about-stat-card {
    display: none !important;
  }

  /* Destinations grid responsive scaling */
  .dest-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 0.5rem !important;
  }
  .dest-grid .dest-card:first-child {
    grid-row: span 1 !important;
  }

  /* Footer layout and centering on mobile */
  .footer {
    text-align: center !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem 1.5rem !important;
  }
  .footer-brand {
    grid-column: span 2 !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 1.5rem !important;
  }
  .footer-brand p {
    max-width: 100% !important;
    margin: 0.5rem auto 1.5rem !important;
  }
  .footer-social {
    justify-content: center !important;
    margin-top: 1rem !important;
  }
  .footer-links {
    align-items: center !important;
    margin-bottom: 0.5rem !important; /* reduced to fit side-by-side look nicely */
  }
  .footer-grid > div:last-child {
    grid-column: span 2 !important;
    margin-top: 1rem !important;
  }
  .footer-contact-item {
    justify-content: center !important;
    text-align: center !important;
  }
  .sltda-badge {
    margin-top: 0.5rem !important;
  }

  /* Horizontal scroll-snap reviews on mobile */
  .reviews-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 1.25rem !important;
    padding: 0.5rem 6vw 1.5rem 6vw !important;
    margin: 0 -6vw !important;
  }
  .reviews-grid::-webkit-scrollbar {
    display: none !important;
  }
  .review-card {
    flex: 0 0 85% !important;
    min-width: 280px !important;
    max-width: 380px !important;
    scroll-snap-align: center !important;
    margin: 0 !important;
  }

  /* Support toggle button (floating chat toggle) */
  .support-toggle-btn {
    display: flex !important;
    position: fixed;
    bottom: 9.5rem !important; /* Positioned above the simulator bar */
    right: 1.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border: none;
    outline: none;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 15px rgba(17, 36, 69, 0.4);
    z-index: 1001; /* higher than FABs and chatbot window */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .support-toggle-btn.active {
    background: #ef4444 !important; /* red when active to close */
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4) !important;
  }

  /* Reposition FABs to slide out from the toggle button on mobile */
  .chatbot-fab {
    bottom: 13.5rem !important; /* Stacked above the toggle button */
    right: 1.5rem !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 1.15rem !important;
    z-index: 1000 !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  }
  .whatsapp-fab {
    bottom: 17.1rem !important; /* Stacked above the chatbot FAB */
    right: 1.5rem !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 1.45rem !important;
    z-index: 1000 !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  }

  /* Hidden state for FABs */
  .chatbot-fab.hidden-fab,
  .whatsapp-fab.hidden-fab {
    opacity: 0 !important;
    display: none !important;
    transform: translateY(25px) scale(0.7) !important;
    pointer-events: none !important;
  }

  /* Hide support toggle button when chatbot window is active */
  .chatbot-window.open ~ .support-toggle-btn {
    display: none !important;
  }

  /* Reposition hero cover photo to align Sigiriya monolith nicely in center on mobile */
  .hero-img-center {
    object-position: 80% bottom !important;
  }

  /* Only display icon and heading in "Why Travel With True Paradise" cards on mobile */
  [aria-labelledby="why-us-heading"] .feature-card {
    padding: 1.5rem 1rem !important;
  }
  [aria-labelledby="why-us-heading"] .feature-card h3 {
    margin-bottom: 0 !important;
  }
  [aria-labelledby="why-us-heading"] .feature-card p {
    display: none !important;
  }

  /* Wallet Mode styles for .dest-grid */
  .dest-grid.wallet-mode {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important; /* no gap for clean stacking overlap */
    padding: 2.5rem 0 !important; /* extra spacing for transitions */
    position: relative !important;
    overflow: visible !important;
    min-height: 520px !important;
    transition: all 0.5s ease;
  }

  .dest-grid.wallet-mode .dest-card {
    position: relative !important;
    width: 100% !important;
    height: 250px !important;
    margin-top: -180px !important; /* pull cards up to stack (70px peeking height) */
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2) !important;
    transform-origin: center center !important;
    opacity: 1 !important;
    filter: blur(0px) !important;
  }

  .dest-grid.wallet-mode .dest-card img {
    height: 100% !important;
    object-fit: cover !important;
  }

  .dest-grid.wallet-mode .dest-card:first-child {
    margin-top: 0 !important;
    z-index: 5 !important;
  }
  .dest-grid.wallet-mode .dest-card:nth-child(2) {
    z-index: 4 !important;
    transform: scale(0.96) !important;
  }
  .dest-grid.wallet-mode .dest-card:nth-child(3) {
    z-index: 3 !important;
    transform: scale(0.92) !important;
  }
  .dest-grid.wallet-mode .dest-card:nth-child(4) {
    z-index: 2 !important;
    transform: scale(0.88) !important;
  }
  .dest-grid.wallet-mode .dest-card:nth-child(5) {
    z-index: 1 !important;
    transform: scale(0.84) !important;
  }

  /* Non-active cards in wallet mode: collapse text content to fit inside peek space */
  .dest-grid.wallet-mode .dest-card .dest-info {
    padding: 1rem !important; /* smaller padding for collapsed look */
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 65%, transparent 100%) !important;
    transition: padding 0.4s ease, background 0.4s ease !important;
  }

  .dest-grid.wallet-mode .dest-card .dest-info h4 {
    font-size: 1.25rem !important;
    margin-bottom: 0.15rem !important;
    transition: font-size 0.4s ease !important;
  }

  .dest-grid.wallet-mode .dest-card .dest-info p {
    max-height: 0 !important;
    opacity: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease !important;
  }

  /* Hover peek effect in closed wallet state */
  .dest-grid.wallet-mode:not(.has-active-card) .dest-card:hover {
    transform: translateY(-12px) scale(1.01) !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3) !important;
    z-index: 10 !important;
  }

  /* Wallet Focus (Active Card) State */
  .dest-grid.wallet-mode.has-active-card .dest-card {
    opacity: 0.25 !important;
    filter: blur(5px) !important;
    transform: scale(0.9) translateY(0) !important;
    pointer-events: none; /* disable clicks on blurred cards */
  }

  /* The active focused card */
  .dest-grid.wallet-mode .dest-card.active-card {
    opacity: 1 !important;
    filter: blur(0px) !important;
    transform: scale(1.06) translateY(-40px) !important; /* pop out and scale up */
    z-index: 100 !important; /* bring to front */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4) !important;
    pointer-events: auto; /* enable interactions */
  }

  /* Expand info on active card */
  .dest-grid.wallet-mode .dest-card.active-card .dest-info {
    padding: 1.5rem !important;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%) !important;
  }

  .dest-grid.wallet-mode .dest-card.active-card .dest-info h4 {
    font-size: 1.4rem !important;
  }

  .dest-grid.wallet-mode .dest-card.active-card .dest-info p {
    max-height: 80px !important;
    opacity: 0.9 !important;
    margin-top: 0.4rem !important;
  }

  /* Gallery Card Wallet Mode styles */
  #gallery-grid.wallet-mode {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 2.5rem 0 !important;
    position: relative !important;
    overflow: visible !important;
    min-height: 520px !important;
    transition: all 0.5s ease;
  }

  #gallery-grid.wallet-mode .gallery-item {
    position: relative !important;
    width: 100% !important;
    height: 250px !important;
    margin-bottom: 0 !important; /* overrides masonry styles */
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2) !important;
    transform-origin: center center !important;
    opacity: 1 !important;
    filter: blur(0px) !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden !important;
  }

  #gallery-grid.wallet-mode .gallery-item img {
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s ease !important;
  }

  /* Gallery Hover peek effect in closed wallet state */
  #gallery-grid.wallet-mode:not(.has-active-card) .gallery-item:hover {
    transform: translateY(-12px) scale(1.01) !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3) !important;
    z-index: 20 !important;
  }

  /* Wallet Focus (Active Card) State */
  #gallery-grid.wallet-mode.has-active-card .gallery-item {
    opacity: 0.25 !important;
    filter: blur(5px) !important;
    transform: scale(0.9) translateY(0) !important;
    pointer-events: none; /* disable clicks on blurred cards */
  }

  /* The active focused gallery item */
  #gallery-grid.wallet-mode .gallery-item.active-card {
    opacity: 1 !important;
    filter: blur(0px) !important;
    transform: scale(1.06) translateY(-40px) !important; /* pop out and scale up */
    z-index: 100 !important; /* bring to front */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4) !important;
    pointer-events: auto; /* enable interactions */
  }

  /* Show overlay on active card */
  #gallery-grid.wallet-mode .gallery-item.active-card .gallery-item-overlay {
    opacity: 1 !important;
  }

  /* About section read more styles for mobile */
  .about-read-more-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem auto 1.5rem auto !important;
    padding: 0.55rem 1.25rem !important;
    background: transparent !important;
    color: var(--color-primary) !important;
    border: 1.5px solid var(--color-primary) !important;
    border-radius: 30px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    outline: none !important;
  }
  .about-read-more-btn:hover {
    background: var(--color-primary) !important;
    color: white !important;
    transform: translateY(-1px) !important;
  }
  .about-read-more-btn i {
    transition: transform 0.3s ease;
  }

  .about-read-more-wrapper {
    transition: opacity 0.4s ease, max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease;
    overflow: hidden;
    max-height: 800px;
    opacity: 1;
  }
  .about-read-more-wrapper.collapsed-text {
    opacity: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none;
  }
}

@media (max-width: 640px) {
  /* Destinations grid single column on mobile */
  .dest-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 0.5rem !important;
  }
  .dest-grid .dest-card {
    height: 260px !important;
  }
  .dest-grid .dest-card img {
    height: 100% !important;
  }
}

/* Base style for desktop: hide mobile toggle elements */
.support-toggle-btn,
.wallet-toggle-btn,
.about-read-more-btn {
  display: none;
}

/* Outbound destinations redesigned grid & cards */
.intl-grid-container {
  background: rgba(255, 255, 255, 0.03); /* Subtle backdrop tint */
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
  width: 100%;
  box-sizing: border-box;
}

.intl-pkg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  width: 100%;
}

.intl-pkg-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.08); /* Transparent dark glassmorphism */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  color: inherit;
}

.intl-pkg-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.intl-pkg-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.intl-pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.intl-pkg-card:hover .intl-pkg-img {
  transform: scale(1.08);
}

.intl-pkg-header {
  background: rgba(255, 255, 255, 0.04); /* Sleek glass header */
  padding: 2.5rem 1rem 1.25rem;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.intl-pkg-icon-badge {
  width: 46px;
  height: 46px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2.3rem; /* Overlap image wrapper */
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
}

.intl-pkg-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.2rem 0;
  color: white;
  letter-spacing: 0.02em;
}

.intl-pkg-subtitle {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  display: block;
  line-height: 1.3;
  max-width: 95%;
  margin: 0 auto;
}

.intl-pkg-body {
  padding: 1.25rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.intl-pkg-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7); /* Light text for readability */
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

.intl-pkg-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.intl-pkg-highlights li {
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85); /* Bright text for highlights */
  line-height: 1.35;
}

.intl-pkg-highlights li::before {
  content: "✓";
  color: #e5c158; /* Gold checkmark */
  font-weight: 900;
  margin-right: 8px;
  font-size: 0.85rem;
}

.intl-pkg-price-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: center;
  width: 100%;
}

.intl-pkg-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(201, 162, 39, 0.1);
  color: #e5c158;
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.intl-pkg-price-badge i {
  font-size: 0.7rem;
  color: #e5c158;
  transition: all 0.3s ease;
}

/* Hover micro-animation for price badge */
.intl-pkg-card:hover .intl-pkg-price-badge {
  background: #c9a227;
  color: white;
  border-color: #c9a227;
}

.intl-pkg-card:hover .intl-pkg-price-badge i {
  color: white;
}

/* Mobile height override for wrapper container */
#international-img-col.about-img-wrapper {
  height: auto !important;
}

@media (max-width: 1024px) {
  .intl-pkg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .intl-pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .intl-pkg-grid {
    grid-template-columns: 1fr;
  }
  .intl-grid-container {
    padding: 1.5rem 1.25rem;
  }
}

/* ── Why Travel Section 3D Styles ── */
.why-choose-section {
  background: 
    url('../images/colombo_line.png') no-repeat center bottom / 100% auto, 
    linear-gradient(135deg, var(--color-primary-dark) 0%, #0c1a33 100%);
  position: relative;
  overflow: hidden;
}
.why-choose-section .section-title {
  color: white !important;
}
.why-choose-section .section-subtitle {
  color: rgba(255, 255, 255, 0.75) !important;
}
.why-choose-section .feature-card-3d {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.why-choose-section .feature-card-3d:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3), 
    0 0 25px rgba(201, 162, 39, 0.18);
}
.grid-4-3d {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  perspective: 1000px;
}
@media(max-width: 992px) {
  .grid-4-3d { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 576px) {
  .grid-4-3d { grid-template-columns: 1fr; }
}

.feature-card-3d {
  background: linear-gradient(145deg, #182e56, #0e1d38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 
    0 15px 35px rgba(10, 22, 43, 0.2), 
    0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: 
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), 
    box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), 
    border-color 0.3s;
  transform-style: preserve-3d;
  position: relative;
}
.feature-card-3d:hover {
  transform: translateY(-10px) rotateX(6deg) rotateY(-3deg);
  box-shadow: 
    0 30px 60px rgba(10, 22, 43, 0.4), 
    0 12px 25px rgba(201, 162, 39, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.08);
  border-color: rgba(201, 162, 39, 0.5);
}

.feature-icon-3d {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  font-size: 2.2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateZ(20px);
}
.feature-card-3d:hover .feature-icon-3d {
  transform: translateZ(45px) scale(1.1) rotate(10deg);
}

/* Modifier classes for colorful 3D look */
.feature-icon-3d.icon-gold {
  background: linear-gradient(135deg, #ffd700 0%, #c9a227 50%, #8b6914 100%);
  box-shadow: 
    0 8px 20px rgba(201, 162, 39, 0.45), 
    inset 0 4px 6px rgba(255, 255, 255, 0.55), 
    inset 0 -4px 6px rgba(0, 0, 0, 0.2);
}
.feature-card-3d:hover .feature-icon-3d.icon-gold {
  box-shadow: 
    0 15px 30px rgba(201, 162, 39, 0.6), 
    inset 0 4px 6px rgba(255, 255, 255, 0.65), 
    inset 0 -4px 6px rgba(0, 0, 0, 0.15);
}

.feature-icon-3d.icon-green {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 50%, #196f3d 100%);
  box-shadow: 
    0 8px 20px rgba(39, 174, 96, 0.45), 
    inset 0 4px 6px rgba(255, 255, 255, 0.55), 
    inset 0 -4px 6px rgba(0, 0, 0, 0.2);
}
.feature-card-3d:hover .feature-icon-3d.icon-green {
  box-shadow: 
    0 15px 30px rgba(39, 174, 96, 0.6), 
    inset 0 4px 6px rgba(255, 255, 255, 0.65), 
    inset 0 -4px 6px rgba(0, 0, 0, 0.15);
}

.feature-icon-3d.icon-blue {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 50%, #1b4f72 100%);
  box-shadow: 
    0 8px 20px rgba(41, 128, 185, 0.45), 
    inset 0 4px 6px rgba(255, 255, 255, 0.55), 
    inset 0 -4px 6px rgba(0, 0, 0, 0.2);
}
.feature-card-3d:hover .feature-icon-3d.icon-blue {
  box-shadow: 
    0 15px 30px rgba(41, 128, 185, 0.6), 
    inset 0 4px 6px rgba(255, 255, 255, 0.65), 
    inset 0 -4px 6px rgba(0, 0, 0, 0.15);
}

.feature-icon-3d.icon-red {
  background: linear-gradient(135deg, #ff6b6b 0%, #e84118 50%, #b32d15 100%);
  box-shadow: 
    0 8px 20px rgba(232, 65, 24, 0.45), 
    inset 0 4px 6px rgba(255, 255, 255, 0.55), 
    inset 0 -4px 6px rgba(0, 0, 0, 0.2);
}
.feature-card-3d:hover .feature-icon-3d.icon-red {
  box-shadow: 
    0 15px 30px rgba(232, 65, 24, 0.6), 
    inset 0 4px 6px rgba(255, 255, 255, 0.65), 
    inset 0 -4px 6px rgba(0, 0, 0, 0.15);
}

.feature-title-3d {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  transform: translateZ(25px);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature-card-3d:hover .feature-title-3d {
  transform: translateZ(35px);
}

.feature-desc-3d {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  transform: translateZ(15px);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature-card-3d:hover .feature-desc-3d {
  transform: translateZ(25px);
}

/* Mobile override for 3D elements */
@media (max-width: 768px) {
  [aria-labelledby="why-us-heading"] .feature-card-3d {
    padding: 1.75rem 1.25rem !important;
    transform: none !important;
    box-shadow: var(--shadow-sm) !important;
  }
  [aria-labelledby="why-us-heading"] .feature-card-3d .feature-icon-3d {
    transform: none !important;
    margin-bottom: 1rem !important;
    width: 65px !important;
    height: 65px !important;
    font-size: 1.8rem !important;
  }
  [aria-labelledby="why-us-heading"] .feature-card-3d .feature-title-3d {
    transform: none !important;
    font-size: 1.2rem !important;
    margin-bottom: 0 !important;
  }
  [aria-labelledby="why-us-heading"] .feature-card-3d .feature-desc-3d {
    display: none !important;
  }
}

/* ── Scroll Animation: From Right to Left ── */
.animate-on-scroll.from-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.animate-on-scroll.from-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   ── Destinations Marquee (Option 1) ──
   ========================================================= */
.dest-marquee-container {
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 2rem 0;
}

/* Gradient fade overlays for edges */
.dest-marquee-container::before,
.dest-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}
.dest-marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-surface) 0%, rgba(248, 245, 240, 0) 100%);
}
.dest-marquee-container::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-surface) 0%, rgba(248, 245, 240, 0) 100%);
}

.dest-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 50s linear infinite;
  padding-left: 0.75rem; /* balances gap at wrap */
}

.dest-marquee-track:hover {
  animation-play-state: paused;
}

.dest-marquee-track .dest-card {
  width: 320px;
  height: 380px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.dest-marquee-track .dest-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.dest-marquee-track .dest-card img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments for marquee cards */
@media (max-width: 768px) {
  .dest-marquee-container {
    padding: 1rem 0;
  }
  .dest-marquee-track .dest-card {
    width: 260px;
    height: 320px;
  }
  .dest-marquee-container::before,
  .dest-marquee-container::after {
    width: 50px;
  }
}

/* =========================================================
   ── Destination Details Modal ──
   ========================================================= */
.dest-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 22, 43, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 1.5rem;
}

.dest-modal.open {
  opacity: 1;
  visibility: visible;
}

.dest-modal-content {
  background: linear-gradient(145deg, #0e1d38, #081224);
  border: 1px solid rgba(201, 162, 39, 0.25); /* gold border highlight */
  width: 95%;
  max-width: 960px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: white;
}

.dest-modal.open .dest-modal-content {
  transform: scale(1);
}

.dest-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.dest-modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(90deg);
}

.dest-modal-grid {
  display: grid;
  grid-template-columns: 45% 55%;
}

.dest-modal-img-wrapper {
  position: relative;
  height: 100%;
  min-height: 480px;
}

.dest-modal-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-modal-body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dest-modal-body h3 {
  font-size: 2.2rem;
  color: white;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.dest-modal-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.dest-modal-highlights h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
}

.dest-modal-highlights ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dest-modal-highlights li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.dest-modal-highlights li::before {
  content: '✓';
  color: var(--color-gold-light);
  font-weight: bold;
  font-size: 1rem;
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
  .dest-modal-grid {
    grid-template-columns: 1fr;
  }
  .dest-modal-img-wrapper {
    min-height: 220px;
    height: 220px;
  }
  .dest-modal-body {
    padding: 2rem 1.5rem;
  }
  .dest-modal-body h3 {
    font-size: 1.8rem;
  }
  .dest-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }
}

/* =========================================================
   ── 3D Trust Badges Icons ──
   ========================================================= */
.trust-icon-3d {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
}

/* Booking.com Blue 3D */
.trust-icon-3d.booking-3d {
  background: linear-gradient(135deg, #0056b3 0%, #00254d 100%);
  box-shadow: 
    0 5px 15px rgba(0, 86, 179, 0.35),
    inset 0 2px 3px rgba(255,255,255,0.35),
    inset 0 -2px 3px rgba(0,0,0,0.25);
  border: 1px solid rgba(0, 86, 179, 0.2);
}

/* TripAdvisor Green 3D */
.trust-icon-3d.tripadvisor-3d {
  background: linear-gradient(135deg, #00af87 0%, #006b52 100%);
  box-shadow: 
    0 5px 15px rgba(0, 175, 135, 0.35),
    inset 0 2px 3px rgba(255,255,255,0.35),
    inset 0 -2px 3px rgba(0,0,0,0.25);
  border: 1px solid rgba(0, 175, 135, 0.2);
}

/* Trustpilot Dark Green 3D (star color) */
.trust-icon-3d.trustpilot-3d {
  background: linear-gradient(135deg, #00b67a 0%, #00704b 100%);
  box-shadow: 
    0 5px 15px rgba(0, 182, 122, 0.35),
    inset 0 2px 3px rgba(255,255,255,0.35),
    inset 0 -2px 3px rgba(0,0,0,0.25);
  border: 1px solid rgba(0, 182, 122, 0.2);
}

/* SLTDA Golden 3D */
.trust-icon-3d.sltda-3d {
  background: linear-gradient(135deg, #e8c460 0%, #a07d10 100%);
  box-shadow: 
    0 5px 15px rgba(201, 162, 39, 0.35),
    inset 0 2px 3px rgba(255,255,255,0.4),
    inset 0 -2px 3px rgba(0,0,0,0.25);
  border: 1px solid rgba(201, 162, 39, 0.25);
}

/* Trust Badge Hover transitions to the nested 3D icon */
.trust-badge:hover .trust-icon-3d {
  transform: translateY(-3px) scale(1.08) rotate(5deg);
}

.trust-badge:hover .trust-icon-3d.booking-3d {
  box-shadow: 
    0 10px 22px rgba(0, 86, 179, 0.5),
    inset 0 2px 3px rgba(255,255,255,0.45),
    inset 0 -2px 3px rgba(0,0,0,0.18);
}

.trust-badge:hover .trust-icon-3d.tripadvisor-3d {
  box-shadow: 
    0 10px 22px rgba(0, 175, 135, 0.5),
    inset 0 2px 3px rgba(255,255,255,0.45),
    inset 0 -2px 3px rgba(0,0,0,0.18);
}

.trust-badge:hover .trust-icon-3d.trustpilot-3d {
  box-shadow: 
    0 10px 22px rgba(0, 182, 122, 0.5),
    inset 0 2px 3px rgba(255,255,255,0.45),
    inset 0 -2px 3px rgba(0,0,0,0.18);
}

.trust-badge:hover .trust-icon-3d.sltda-3d {
  box-shadow: 
    0 10px 22px rgba(201, 162, 39, 0.5),
    inset 0 2px 3px rgba(255,255,255,0.5),
    inset 0 -2px 3px rgba(0,0,0,0.18);
}
