/* ==========================================================================
   Phuket Elephant Care Park - Main Design System
   Concept: Modern, Minimalist & Eco-friendly Ethical Sanctuary
   Font: Kanit | Icons: Bootstrap Icons
   ========================================================================== */

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

:root {
  --color-forest: #1b4332;
  --color-forest-dark: #0e241b;
  --color-forest-light: #2d6a4f;
  --color-sage: #40916c;
  --color-sage-accent: #52b788;
  --color-sage-light: #d8f3dc;
  --color-sage-bg: #f2f8f4;
  --color-sand: #fbf9f5;
  --color-amber: #d97706;
  --color-amber-light: #fef3c7;
  --color-red: #e63946;
  --color-red-light: #fee2e2;
  --color-dark: #1f2937;
  --color-muted: #6b7280;
  --color-light-gray: #e5e7eb;
  --color-white: #ffffff;

  --font-main: 'Kanit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.05);
  --shadow-md: 0 8px 24px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 16px 40px rgba(27, 67, 50, 0.12);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--color-sand);
  color: var(--color-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-forest);
}

.text-center { text-align: center; }
.text-muted { color: var(--color-muted); }
.text-forest { color: var(--color-forest); }
.text-sage { color: var(--color-sage-accent); }
.font-bold { font-weight: 600; }

/* ==========================================================================
   Enhanced Multilingual Luxury Preloader
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 40%, #1b4332 0%, #0d281e 60%, #071711 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  overflow: hidden;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.65s ease;
}

#preloader.fade-out {
  opacity: 0;
  transform: scale(1.04);
  visibility: hidden;
  pointer-events: none;
}

.preloader-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow-1 {
  width: 380px;
  height: 380px;
  background: rgba(82, 183, 136, 0.28);
  top: 15%;
  left: 20%;
  animation: float-glow-1 6s infinite ease-in-out alternate;
}

.glow-2 {
  width: 320px;
  height: 320px;
  background: rgba(45, 106, 79, 0.35);
  bottom: 15%;
  right: 20%;
  animation: float-glow-2 7s infinite ease-in-out alternate;
}

@keyframes float-glow-1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.25; }
  100% { transform: translate(45px, 35px) scale(1.2); opacity: 0.45; }
}

@keyframes float-glow-2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  100% { transform: translate(-40px, -45px) scale(1.25); opacity: 0.5; }
}

.preloader-container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem;
  max-width: 480px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Brand Logo (Frameless, Clean & Prominent) */
.preloader-logo-wrap {
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.preloader-logo-img {
  height: 96px;
  width: auto;
  max-width: 290px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 25px rgba(82, 183, 136, 0.3));
  animation: logo-float 3s ease-in-out infinite alternate;
}

@keyframes logo-float {
  0% { transform: translateY(0) scale(0.98); }
  100% { transform: translateY(-6px) scale(1.02); }
}

/* Multilingual Dynamic Greeting Box (Top Greeting Word, Bottom Welcome Subtext) */
.preloader-greeting-box {
  text-align: center;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.preloader-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(82, 183, 136, 0.35);
  padding: 0.3rem 0.95rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a7f3d0;
  margin-bottom: 0.85rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.preloader-brand-badge i {
  color: #52b788;
  font-size: 0.85rem;
}

.preloader-greeting-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-greeting-text.text-transition {
  opacity: 0;
  transform: translateY(8px) scale(0.96);
}

/* สวัสดี (Greeting Word) on TOP - Big, bold, glowing emerald */
.greeting-word {
  font-size: 2.2rem;
  font-weight: 700;
  color: #52b788;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 14px rgba(82, 183, 136, 0.45);
}

/* ยินดีต้อนรับ (Welcome Phrase) on BOTTOM - Elegant crisp white */
.greeting-sub {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Progress Bar & Percentage */
.preloader-progress-wrap {
  width: 280px;
  max-width: 85vw;
  margin: 0 auto;
}

.preloader-progress-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.preloader-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2d6a4f 0%, #52b788 50%, #74c69d 100%);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(82, 183, 136, 0.8);
  transition: width 0.15s linear;
}

.preloader-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.65rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
}

.preloader-percentage {
  color: #52b788;
  font-weight: 600;
  font-family: monospace, sans-serif;
}

@media (max-width: 576px) {
  .preloader-logo-wrap {
    margin-bottom: 1.35rem;
  }
  .preloader-logo-img {
    height: 74px;
    max-width: 230px;
  }
  .greeting-word {
    font-size: 1.85rem;
  }
  .greeting-sub {
    font-size: 1.05rem;
  }
  .preloader-greeting-box {
    min-height: 85px;
    margin-bottom: 1.35rem;
  }
  .preloader-progress-wrap {
    width: 250px;
  }
}

/* Header & Navbar - Eco Forest Green Theme */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-forest);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  transition: transform var(--transition-bounce);
}

.brand:hover .brand-logo-img {
  transform: scale(1.06);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.15;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--color-sage-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin-left: auto;
  margin-right: 1.75rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.2rem;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-sage-accent);
}

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

/* Language Switcher */
.lang-dropdown {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 165px;
  list-style: none;
  padding: 0.4rem;
  display: none;
  z-index: 1000;
}

.lang-menu.show {
  display: block;
  animation: fadeIn 0.15s ease-out;
}

.lang-menu li a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--color-dark);
}

.lang-menu li a:hover, .lang-menu li a.active {
  background: var(--color-sage-bg);
  color: var(--color-forest);
  font-weight: 600;
}

/* Navbar Book Now Button */
.btn-nav-book {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--color-amber);
  color: #ffffff;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
  transition: var(--transition);
}

.btn-nav-book:hover {
  background: #b45309;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  min-height: 46px;
  line-height: 1;
}

.btn-primary {
  background: var(--color-forest);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(27, 67, 50, 0.2);
}

.btn-primary:hover {
  background: var(--color-forest-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(27, 67, 50, 0.3);
}

.btn-secondary {
  background: var(--color-sage-bg);
  color: var(--color-forest);
  border: 1px solid var(--color-sage-light);
}

.btn-secondary:hover {
  background: var(--color-sage-light);
  color: var(--color-forest-dark);
}

.btn-accent {
  background: var(--color-amber);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.25);
}

.btn-accent:hover {
  background: #b45309;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
  min-height: 40px;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  min-height: 52px;
}

.btn-block {
  width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.85rem;
  color: #ffffff;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

/* Hero Section with Full Photo Background */
.hero {
  position: relative;
  padding: 6.5rem 0 6rem;
  background: linear-gradient(180deg, rgba(14, 36, 27, 0.70) 0%, rgba(27, 67, 50, 0.82) 100%),
              url('../images/hero-forest-sanctuary.jpg') center center/cover no-repeat fixed;
  color: #ffffff;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(82, 183, 136, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(82, 183, 136, 0.5);
  color: #d8f3dc;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.2rem;
  letter-spacing: -0.5px;
  margin-bottom: 1.35rem;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.25rem;
  line-height: 1.75;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-image-wrap {
  position: relative;
  outline: none;
}

/* Hero Slider Viewport & Layout */
.hero-slider-viewport {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.22);
  background: #0d1f16;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y pinch-zoom;
}

.hero-slider-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #52b788 0%, #74c69d 50%, #d8f3dc 100%);
  width: 0%;
  z-index: 8;
  box-shadow: 0 0 10px rgba(82, 183, 136, 0.8);
}

.hero-slider-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.35, 1);
  will-change: transform;
  width: 100%;
  height: 440px;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #0d1f16;
}

.hero-slide .hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: none;
  box-shadow: none;
  display: block;
  transition: transform 5s ease-out;
}

.hero-slide.active .hero-img-main {
  transform: scale(1.035);
}

/* Slide Counter Badge (Disabled per user request) */
.hero-slide-counter {
  display: none !important;
}

/* Slider Controls (Next / Prev) */
.hero-slider-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(14, 36, 27, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 7;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.15rem;
  padding: 0;
  opacity: 0;
}

.hero-image-wrap:hover .hero-slider-ctrl,
.hero-image-wrap:focus-within .hero-slider-ctrl {
  opacity: 1;
}

@media (hover: none) {
  .hero-slider-ctrl {
    opacity: 0.9;
  }
}

.hero-slider-ctrl:hover {
  background: var(--color-sage-accent, #52b788);
  color: #0b1f16;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  border-color: #52b788;
}

.hero-slider-ctrl.prev {
  left: 12px;
}

.hero-slider-ctrl.next {
  right: 12px;
}

/* Slider Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 14px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 7;
  background: rgba(14, 36, 27, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero-dot.active {
  width: 22px;
  border-radius: 10px;
  background: var(--color-sage-accent, #52b788);
  box-shadow: 0 0 10px rgba(82, 183, 136, 0.7);
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-dark);
  z-index: 10;
  text-align: left;
}

.float-card-icon {
  width: 44px;
  height: 44px;
  background: var(--color-sage-bg);
  color: var(--color-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.float-card-content {
  text-align: left;
  flex: 1;
}

.float-card-title {
  font-weight: 600;
  color: var(--color-forest);
  font-size: 0.95rem;
  text-align: left;
}

.float-card-desc {
  font-size: 0.78rem;
  color: var(--color-muted);
  text-align: left;
}

/* Stats Ribbon */
.stats-ribbon {
  margin-top: 3.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  border-right: 1px solid var(--color-light-gray);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Section Common */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-sage);
  letter-spacing: 1.2px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-muted);
}

/* Package Carousel (Horizontal Swipeable) */
.carousel-wrapper {
  position: relative;
  margin: 0 -1.25rem;
  padding: 0 1.25rem;
}

.carousel-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  color: var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: var(--transition);
}

.carousel-nav-btn:hover {
  background: var(--color-forest);
  color: var(--color-white);
}

.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }

.package-carousel {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1.25rem 0.5rem 2.5rem;
  scrollbar-width: none;
}

.package-carousel::-webkit-scrollbar {
  display: none;
}

.package-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-sage-accent);
}

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.badge-discount-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--color-amber);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-karen-shirt {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.32rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.badge-karen-shirt i {
  color: #fde047;
}

.badge-duration-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(14, 36, 27, 0.85);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

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

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-forest);
  line-height: 1.3;
}

.card-inclusions {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-inclusions li {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.card-inclusions li i {
  color: var(--color-sage-accent);
  font-size: 1.05rem;
  line-height: 1.2;
}

.card-pricing-box {
  background: var(--color-sage-bg);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.price-original {
  font-size: 0.95rem;
  color: var(--color-muted);
  text-decoration: line-through;
}

.price-promo {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1;
}

.price-unit {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 400;
}

.price-child-subtext {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.35rem;
  display: flex;
  justify-content: space-between;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Interactive Modal (Pop-up) */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 36, 27, 0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1.25rem;
}

.modal-backdrop.show {
  display: flex;
  animation: fadeIn 0.2s ease-out;
}

.modal-dialog {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: 1px solid var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 20;
  color: var(--color-dark);
}

.modal-close-btn:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.modal-gallery {
  position: relative;
  background: #000;
}

.modal-main-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.modal-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: #111;
  overflow-x: auto;
}

.modal-thumb-img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
}

.modal-thumb-img.active, .modal-thumb-img:hover {
  opacity: 1;
  outline: 2px solid var(--color-sage-accent);
}

.modal-content-inner {
  padding: 2rem;
}

.modal-header-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.modal-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

/* Timeline */
.timeline-section {
  margin: 1.75rem 0;
}

.timeline-title {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-sage-light);
}

.timeline-step {
  position: relative;
  margin-bottom: 1.25rem;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-forest);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-sage-accent);
}

.step-text {
  font-size: 0.92rem;
  color: var(--color-dark);
}

.modal-lists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.list-box {
  background: var(--color-sand);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-light-gray);
}

.list-box h5 {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.list-box ul {
  list-style: none;
}

.list-box ul li {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.modal-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-light-gray);
  margin-top: 1.5rem;
}

/* Interactive Booking Modal (Airbnb & Klook Style) */
.booking-modal-dialog {
  max-width: 1040px;
  width: 100%;
  background: var(--color-white);
  border-radius: 22px;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.5);
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 92vh;
  overflow: hidden;
  border: 1px solid rgba(82, 183, 136, 0.35);
  animation: modalScaleIn 0.25s ease-out;
}

.booking-modal-header {
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #52b788;
  position: relative;
  z-index: 10;
}

.booking-modal-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.booking-modal-logo-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
}

.booking-modal-logo-icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.booking-modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.booking-modal-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0.25rem 0 0;
  line-height: 1.35;
}

/* Selected Package Highlight Bar (Klook/Airbnb Style) */
.booking-modal-pkg-strip {
  background: #f0fdf4;
  border-bottom: 1px solid #dcfce7;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.booking-modal-pkg-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.booking-modal-pkg-info > div {
  min-width: 0;
}

.booking-modal-pkg-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #52b788;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.booking-modal-pkg-title {
  font-weight: 700;
  font-size: 0.98rem;
  color: #1b4332;
  margin: 0;
  line-height: 1.25;
}

.booking-modal-pkg-meta {
  font-size: 0.78rem;
  color: #52b788;
  display: flex;
  align-items: center;
  flex-wrap: wrap !important;
  gap: 0.4rem 0.45rem;
  margin-top: 0.35rem;
  max-width: 100%;
}

.booking-modal-pkg-meta .badge-duration-tag,
.booking-modal-pkg-meta .badge-discount-tag,
.booking-modal-pkg-meta .badge-karen-shirt {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  padding: 0.22rem 0.55rem !important;
  border-radius: 9999px !important;
  box-shadow: none !important;
  letter-spacing: 0.2px !important;
  vertical-align: middle !important;
  margin: 0 !important;
}

.booking-modal-pkg-meta .badge-duration-tag {
  background: rgba(27, 67, 50, 0.88) !important;
  color: #ffffff !important;
}

.booking-modal-pkg-meta .badge-discount-tag {
  background: #d97706 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
}

.booking-modal-pkg-meta .badge-karen-shirt {
  background: #059669 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.booking-modal-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  overflow-y: auto;
  max-height: calc(92vh - 120px);
}

.booking-modal-body::-webkit-scrollbar {
  width: 7px;
}

.booking-modal-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.booking-modal-form-wrap {
  padding: 2rem 2.25rem;
  background: #ffffff;
}

.booking-modal-sidebar {
  background: linear-gradient(180deg, #1b4332 0%, #0e241b 100%);
  color: #ffffff;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(82, 183, 136, 0.25);
}

/* Call to Action Guarantee Section */
.cta-guarantee-section {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-guarantee-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 3rem;
}

.cta-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.cta-trust-badge-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-trust-badge-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.cta-trust-badge-icon {
  font-size: 1.8rem;
  color: #74c69d;
  margin-bottom: 0.5rem;
}

.cta-trust-badge-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.cta-trust-badge-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  margin: 0;
}

/* Booking Section & Form */
.booking-section {
  background: var(--color-sand);
  position: relative;
}

.booking-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-light-gray);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}

.booking-form-wrap {
  padding: 2.5rem;
}

.booking-sidebar {
  background: var(--color-forest);
  color: var(--color-white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.booking-sidebar h3 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--color-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-light-gray);
  background: var(--color-white);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-sage-accent);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Visitor Counter */
.counter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-sage-bg);
  border: 1px solid var(--color-sage-light);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  margin-bottom: 0.75rem;
}

.counter-info-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-forest);
}

.counter-info-desc {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.counter-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-sage-accent);
  color: var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.counter-btn:hover {
  background: var(--color-forest);
  color: var(--color-white);
}

.counter-val {
  font-size: 1.15rem;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

/* Sidebar Calculation */
.calc-breakdown {
  list-style: none;
  margin: 1.5rem 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 1.25rem 0;
}

.calc-breakdown li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.calc-breakdown li.discount-row {
  color: #fbbf24;
  font-weight: 500;
}

.calc-total-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.total-label {
  font-size: 1.1rem;
  font-weight: 500;
}

.total-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #52b788;
}

/* Agent Referral Notice */
.agent-tag-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Ethics Section */
.section-ethics,
#ethics {
  background: radial-gradient(circle at 50% 12%, rgba(82, 183, 136, 0.16) 0%, transparent 60%), linear-gradient(180deg, #1b4332 0%, #11291e 100%) !important;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  border-top: 1px solid rgba(82, 183, 136, 0.2);
  border-bottom: 1px solid rgba(82, 183, 136, 0.2);
}

#ethics .section-subtitle {
  color: #86efac;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

#ethics .section-title {
  color: #ffffff;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.ethics-video-wrap {
  max-width: 960px;
  margin: 0 auto 3.5rem;
  width: 100%;
}

.ethics-video-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(82, 183, 136, 0.35);
  border: 3px solid rgba(82, 183, 136, 0.45);
  background: #0e241b;
}

.ethics-video-player {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  outline: none;
}

.ethics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ethics-card {
  background: rgba(14, 36, 27, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.6rem;
  border: 1px solid rgba(82, 183, 136, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: var(--transition);
}

.ethics-card:hover {
  transform: translateY(-6px);
  background: rgba(27, 67, 50, 0.92);
  border-color: #52b788;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.ethics-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.35rem;
  border-radius: 50%;
  background: rgba(82, 183, 136, 0.18);
  border: 2px solid rgba(82, 183, 136, 0.4);
  color: #86efac;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  transition: var(--transition);
}

.ethics-card:hover .ethics-icon {
  background: #52b788;
  color: #0e241b;
  transform: scale(1.08);
}

.ethics-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  letter-spacing: 0.2px;
}

.ethics-desc {
  font-size: 0.93rem;
  color: #f8fafc;
  line-height: 1.65;
  font-weight: 400;
  margin: 0;
}

/* E-Ticket Page */
.ticket-wrapper {
  max-width: 740px;
  margin: 3rem auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-light-gray);
  overflow: hidden;
}

.ticket-header {
  background: var(--color-forest);
  color: var(--color-white);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.ticket-header h2 {
  color: var(--color-white);
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.ticket-code-badge {
  display: inline-block;
  background: var(--color-amber);
  color: var(--color-white);
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  margin-top: 0.5rem;
}

.ticket-body {
  padding: 2.5rem;
}

.ticket-qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-sage-bg);
  border-radius: var(--radius-md);
  border: 2px dashed var(--color-sage-accent);
}

#ticket-qrcode {
  padding: 10px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.ticket-item {
  border-bottom: 1px solid var(--color-light-gray);
  padding-bottom: 0.6rem;
}

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

.ticket-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-forest);
}

/* Footer */
.site-footer {
  background: var(--color-forest-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 1.55fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h4 {
  color: var(--color-white);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.footer-title {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

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

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a:hover {
  color: var(--color-sage-accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-policy-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.footer-policy-links a:hover {
  color: var(--color-sage-accent);
}

.footer-policy-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* Legal Policy & Terms Modals */
.policy-modal-dialog {
  max-width: 820px;
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.45);
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 88vh;
  overflow: hidden;
  border: 1px solid rgba(82, 183, 136, 0.25);
  animation: modalScaleIn 0.25s ease-out;
}

@keyframes modalScaleIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.policy-modal-header {
  padding: 1.35rem 2rem;
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  border-bottom: 3px solid #52b788;
}

.policy-modal-header-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #74c69d;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.policy-modal-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.policy-modal-subtitle {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

.policy-modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 5;
}

.policy-modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: rotate(90deg);
}

.policy-modal-body {
  padding: 2rem;
  overflow-y: auto;
  color: #374151;
  font-size: 0.94rem;
  line-height: 1.75;
}

.policy-modal-body::-webkit-scrollbar {
  width: 7px;
}

.policy-modal-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.policy-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.policy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy-section-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: #1b4332;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.policy-section-title i {
  color: #2d6a4f;
  font-size: 1.2rem;
}

.policy-callout-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid #2d6a4f;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #166534;
}

.policy-alert-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid #dc2626;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #991b1b;
}

.policy-list {
  padding-left: 1.5rem;
  margin: 0.85rem 0;
}

.policy-list li {
  margin-bottom: 0.55rem;
  line-height: 1.65;
}

.policy-email-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(45, 106, 79, 0.12);
  color: #1b4332;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-weight: 600;
  font-family: monospace;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(45, 106, 79, 0.25);
}

.policy-email-badge:hover {
  background: #2d6a4f;
  color: #ffffff;
  border-color: #2d6a4f;
}

.policy-modal-footer {
  padding: 1.1rem 2rem;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Reviews Section */
.reviews-section {
  background: var(--color-sand);
  padding: 5rem 0;
  position: relative;
}

.reviews-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.rating-overview-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-sm);
}

.stars-gold {
  color: #f59e0b;
  font-size: 1.15rem;
  display: flex;
  gap: 0.2rem;
}

/* Reviews Horizontal Carousel (3 Cards on Desktop, Swipe/Slide) */
.reviews-carousel-wrapper {
  position: relative;
  margin: 0 -1.25rem;
  padding: 0 1.25rem;
}

.reviews-carousel-wrapper .carousel-nav-btn {
  top: 50%;
}

.reviews-carousel-wrapper .carousel-prev {
  left: -0.25rem;
}

.reviews-carousel-wrapper .carousel-next {
  right: -0.25rem;
}

.reviews-carousel {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1.25rem 0.5rem 2.25rem;
  scrollbar-width: none;
  cursor: grab;
}

.reviews-carousel:active {
  cursor: grabbing;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-light-gray);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

/* Exactly 3 cards visible on desktop with 1.75rem gap */
.reviews-carousel .review-card {
  flex: 0 0 calc((100% - (2 * 1.75rem)) / 3);
  max-width: calc((100% - (2 * 1.75rem)) / 3);
  min-width: 0;
  scroll-snap-align: start;
  box-sizing: border-box;
}

/* Tablet: 2 cards visible */
@media (max-width: 991px) {
  .reviews-carousel {
    gap: 1.25rem;
    padding: 1rem 0.25rem 2rem;
  }
  .reviews-carousel .review-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
    max-width: calc((100% - 1.25rem) / 2);
  }
}

/* Mobile: 1 card visible (with swipe peek) */
@media (max-width: 640px) {
  .reviews-carousel-wrapper {
    margin: 0 -1rem;
    padding: 0 1rem;
  }
  .reviews-carousel {
    gap: 1rem;
    padding: 0.75rem 0.25rem 1.75rem;
  }
  .reviews-carousel .review-card {
    flex: 0 0 calc(85vw - 10px);
    max-width: 340px;
    min-width: 270px;
  }
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-sage-accent);
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-sage-bg);
  color: var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.reviewer-meta {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.review-comment {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.review-photo-wrap {
  margin-top: auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 180px;
  cursor: pointer;
  position: relative;
}

.review-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.review-photo-wrap:hover img {
  transform: scale(1.05);
}

/* Star Rating Picker */
.star-rating-picker {
  display: flex;
  gap: 0.5rem;
  font-size: 1.8rem;
  color: #d1d5db;
  cursor: pointer;
  margin: 0.5rem 0 1rem;
}

.star-rating-picker i:hover,
.star-rating-picker i.active {
  color: #f59e0b;
  transform: scale(1.15);
  transition: all 0.15s ease;
}

/* ===================================================
   Official Booking Partners & OTAs Infinite Marquee
   =================================================== */
.section-agents-marquee {
  background: #fbfbf9;
  border-top: 1px solid rgba(27, 67, 50, 0.08);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  padding: 5rem 0 5.5rem;
  overflow: hidden;
  position: relative;
}

.section-agents-marquee .section-header {
  margin-bottom: 2.5rem;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1.25rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll 44s linear infinite;
}

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

.marquee-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  flex-shrink: 0;
}

.partner-card {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(27, 67, 50, 0.12);
  border-radius: 18px;
  padding: 1.15rem 1.85rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(27, 67, 50, 0.15), 0 4px 10px rgba(0, 0, 0, 0.05);
  border-color: var(--color-sage-accent);
}

.partner-svg {
  display: block;
  height: 46px;
  width: auto;
  max-width: 240px;
  flex-shrink: 0;
}

.partner-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-forest);
  background: rgba(82, 183, 136, 0.14);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(82, 183, 136, 0.3);
  letter-spacing: 0.3px;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .section-agents-marquee {
    padding: 4rem 0 4.5rem;
  }
  .partner-svg {
    height: 38px;
  }
  .partner-card {
    padding: 0.95rem 1.45rem;
    gap: 1rem;
  }
  .partner-badge-pill {
    font-size: 0.76rem;
    padding: 4px 10px;
  }
  .marquee-track {
    animation-duration: 36s;
  }
}

@media (max-width: 640px) {
  .section-agents-marquee {
    padding: 3.25rem 0 3.75rem;
  }
  .marquee-wrapper {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    padding: 0.5rem 0;
  }
  .marquee-group {
    gap: 1.25rem;
    padding-right: 1.25rem;
  }
  .partner-card {
    padding: 0.75rem 1.15rem;
    gap: 0.85rem;
    border-radius: 14px;
  }
  .partner-svg {
    height: 32px;
  }
  .partner-badge-pill {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
  .marquee-track {
    animation-duration: 26s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation-play-state: paused;
  }
}

/* Mobile Nav Drawer Redesign */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-forest-dark);
  color: #ffffff;
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  z-index: 99999;
  overflow-y: auto;
}

.mobile-drawer.open {
  display: flex;
  animation: fadeIn 0.2s ease-out;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0;
  flex: 1;
}

.mobile-drawer-links .nav-link {
  font-size: 1.15rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mobile-drawer-links .nav-link:hover,
.mobile-drawer-links .nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-sage-accent);
}

.mobile-drawer-actions {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Comprehensive Responsive System (Mobile & Tablet First-Class Experience)
   ========================================================================== */

/* 1. Large Tablets & Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.25rem;
  }
  .hero-grid {
    gap: 2.5rem;
  }
  .package-card {
    flex: 0 0 330px;
  }
  .booking-card {
    grid-template-columns: 1.2fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
  }
}

/* 2. Standard Tablets Portrait (max-width: 991px) */
@media (max-width: 991px) {
  /* Switch to Mobile Navigation Drawer to prevent tablet crowding */
  .nav-links {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
  }
  .mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
  }
  .btn-nav-book {
    display: none !important; /* Hidden on mobile & tablet screens per user request */
  }

  /* Hero Section for Tablets */
  .hero {
    padding: 5rem 0 4rem;
    background-attachment: scroll; /* Smoother scrolling on touch devices */
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-badge {
    margin: 0 auto 1.25rem;
  }
  .hero-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    max-width: 700px;
    margin: 0 auto 1.25rem;
  }
  .hero-subtitle {
    max-width: 620px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
  }
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  .hero-image-wrap {
    max-width: 540px;
    margin: 0 auto;
    position: relative;
  }
  .hero-slider-track {
    height: 330px;
  }
  .hero-img-main {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .hero-float-card {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 1.25rem;
    width: 100%;
    max-width: 100%;
    box-shadow: var(--shadow-md);
    text-align: left;
  }

  /* Stats Ribbon */
  .stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 1.75rem;
    margin-top: 3.5rem;
  }
  .stat-item {
    border-right: none;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* Booking Modal Tablet */
  .booking-modal-body {
    grid-template-columns: 1fr;
  }
  .booking-modal-sidebar {
    border-left: none;
    border-top: 1px solid rgba(82, 183, 136, 0.3);
  }
  .cta-guarantee-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .cta-trust-badges {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Booking Card */
  .booking-card {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
  }
  .booking-form-wrap {
    padding: 2.25rem 2rem;
  }
  .booking-sidebar {
    padding: 2.25rem 2rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  /* Ethics Grid */
  .ethics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* 3. Phablets & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
  .site-header {
    height: auto;
  }
  .navbar {
    height: 68px;
  }

  /* Hero Section */
  .hero {
    padding: 4rem 0 3rem;
  }
  .hero-title {
    font-size: 2.15rem;
    line-height: 1.22;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }
  .hero-buttons .btn {
    width: 100%;
    min-height: 50px;
    font-size: 1rem;
  }
  .hero-slider-track {
    height: 270px;
  }
  .hero-slider-ctrl {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
  .hero-slider-dots {
    bottom: 10px;
    right: 12px;
    padding: 4px 8px;
  }
  .hero-slide-counter {
    top: 10px;
    right: 10px;
    font-size: 0.72rem;
    padding: 3px 8px;
  }

  /* Carousel */
  .carousel-wrapper {
    margin: 0 -1rem;
    padding: 0 1rem;
  }
  .carousel-nav-btn {
    display: none; /* Smooth swipe touch experience without overlapping cards */
  }
  .package-carousel {
    padding: 0.75rem 0.25rem 2rem;
    gap: 1.25rem;
  }
  .package-card {
    flex: 0 0 calc(85vw - 10px);
    max-width: 330px;
    min-width: 270px;
  }
  .card-actions {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .card-actions .btn {
    width: 100%;
    min-height: 46px;
  }

  /* Modals */
  .modal-backdrop {
    padding: 0.75rem;
  }
  .modal-dialog {
    max-height: 92vh;
    border-radius: var(--radius-md);
  }
  .modal-main-img {
    height: 220px;
  }
  .modal-content-inner {
    padding: 1.35rem 1rem;
  }
  .modal-title {
    font-size: 1.35rem;
  }
  .modal-lists-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .modal-footer-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    text-align: center;
  }
  .modal-footer-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  /* Form & Inputs */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-control {
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
    min-height: 46px;
  }
  .counter-box {
    padding: 0.75rem 1rem;
  }
  .counter-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  /* Reviews */
  .reviews-section {
    padding: 3.5rem 0;
  }
  .reviews-header-flex {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1.25rem;
  }
  .rating-overview-badge {
    margin: 0 auto;
  }
  .reviews-header-flex .btn {
    width: 100%;
    min-height: 48px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-policy-links {
    justify-content: center;
  }

  /* Policy Modal Mobile */
  .policy-modal-dialog {
    max-height: 94vh;
    border-radius: var(--radius-md);
  }
  .policy-modal-header {
    padding: 1.1rem 1.25rem;
  }
  .policy-modal-title {
    font-size: 1.15rem;
  }
  .policy-modal-body {
    padding: 1.25rem;
    font-size: 0.9rem;
  }
  .policy-modal-footer {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .policy-modal-footer .btn {
    width: 100%;
  }

  /* Ticket Page */
  .ticket-wrapper {
    margin: 1.5rem auto;
  }
  .ticket-header {
    padding: 1.5rem 1rem;
  }
  .ticket-body {
    padding: 1.5rem 1rem;
  }
  .ticket-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ticket-actions {
    flex-direction: column !important;
    width: 100%;
    gap: 0.75rem !important;
  }
  .ticket-actions .btn {
    width: 100%;
    min-height: 48px;
  }
}

/* 4. Standard Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  .navbar {
    height: 64px;
  }
  .brand {
    gap: 0.55rem;
  }
  .brand-logo-img {
    height: 38px;
    max-width: 72px;
  }
  .brand-name {
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    line-height: 1.1;
  }
  .brand-tag {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
  .nav-actions {
    gap: 0.45rem;
  }
  .lang-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    height: 38px;
  }
  .mobile-toggle {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }

  /* Hero Section */
  .hero {
    padding: 3rem 0 2.25rem;
  }
  .hero-title {
    font-size: 1.85rem;
    line-height: 1.22;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }
  .hero-slider-track {
    height: 220px;
  }
  .hero-slider-ctrl {
    display: none;
  }
  .hero-float-card {
    padding: 0.85rem 1rem;
    gap: 0.65rem;
    text-align: left;
  }
  .float-card-content {
    text-align: left;
  }
  .float-card-title {
    font-size: 0.92rem;
    text-align: left;
  }
  .float-card-desc {
    font-size: 0.78rem;
    text-align: left;
  }

  /* Stats Ribbon Mobile */
  .stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    padding: 1rem 0.75rem;
    margin-top: 2.25rem;
    border-radius: 14px;
  }
  .stat-item {
    padding: 0.75rem 0.35rem;
    border-radius: 10px;
  }
  .stat-num {
    font-size: 1.45rem;
    margin-bottom: 0.15rem;
  }
  .stat-label {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  /* Packages */
  .section {
    padding: 3.5rem 0;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-title {
    font-size: 1.75rem;
    line-height: 1.25;
  }
  .section-desc {
    font-size: 0.92rem;
  }

  /* Booking Form & Modal Mobile */
  .booking-modal-dialog {
    max-height: 96vh;
    border-radius: 16px;
  }
  .booking-modal-header {
    padding: 1rem 1.25rem;
  }
  .booking-modal-title {
    font-size: 1.15rem;
  }
  .booking-modal-pkg-strip {
    padding: 0.75rem 1.25rem;
  }
  .booking-modal-form-wrap {
    padding: 1.25rem 1rem;
  }
  .booking-modal-sidebar {
    padding: 1.5rem 1rem;
  }
  .cta-trust-badges {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .booking-form-wrap {
    padding: 1.5rem 1rem;
  }
  .booking-sidebar {
    padding: 1.5rem 1rem;
  }
  .counter-box {
    padding: 0.75rem 0.85rem;
  }
  .counter-info-title {
    font-size: 0.88rem;
  }
  .counter-info-desc {
    font-size: 0.72rem;
  }
  .counter-val {
    font-size: 1.15rem;
  }
  .total-price {
    font-size: 1.75rem;
  }
  #submitBookingBtn {
    min-height: 52px;
    font-size: 1rem;
  }

  /* Ethics */
  .ethics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ethics-card {
    padding: 1.25rem 1rem;
  }

  /* Contact & Map */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Modals */
  .modal-backdrop {
    padding: 0.5rem;
  }
  .modal-close-btn {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  .modal-main-img {
    height: 180px;
  }
  .modal-thumbs {
    padding: 0.4rem;
  }
  .modal-thumb-img {
    height: 42px;
    width: 60px;
  }
  .modal-content-inner {
    padding: 1.15rem 0.85rem;
  }
  .modal-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

/* 5. Extra Small Compact Phones (max-width: 390px, e.g. iPhone SE, Galaxy 360px) */
@media (max-width: 390px) {
  .brand-name {
    font-size: 0.85rem;
  }
  .brand-tag {
    font-size: 0.6rem;
  }
  .hero-title {
    font-size: 1.65rem;
  }
  .stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
  }
  .stat-num {
    font-size: 1.3rem;
  }
  .stat-label {
    font-size: 0.68rem;
  }
  .counter-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
  .counter-controls {
    align-self: flex-end;
  }
}


/* Print Friendly Styles for E-Ticket */
@media print {
  body {
    background: #fff !important;
  }
  .site-header, .site-footer, .no-print, .btn-download {
    display: none !important;
  }
  .ticket-wrapper {
    box-shadow: none !important;
    border: 2px solid #000 !important;
    margin: 0 !important;
    max-width: 100% !important;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Fallback Polyfill for bi-shield-heart-fill (maps to official shield-fill-check in Bootstrap Icons) */
.bi-shield-heart-fill::before {
  content: "\f531" !important;
}

/* Cookie Consent Banner (PDPA & GDPR Compliance) */
.cookie-consent-wrap {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 960px;
  margin: 0 auto;
  z-index: 99999;
  background: rgba(17, 41, 30, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(82, 183, 136, 0.4);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.38);
  padding: 1.25rem 1.65rem;
  color: #ffffff;
  animation: cookieSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.cookie-consent-content {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex: 1;
  min-width: 280px;
}

.cookie-consent-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(82, 183, 136, 0.2);
  border: 1px solid rgba(82, 183, 136, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: #86efac;
  flex-shrink: 0;
}

.cookie-consent-text {
  flex: 1;
}

.cookie-consent-title {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.cookie-consent-desc {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-policy-link {
  color: #86efac;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.cookie-policy-link:hover {
  color: #bbf7d0;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-cookie-essential {
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 12px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
}

.btn-cookie-essential:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .cookie-consent-wrap {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 20px 20px 0 0;
    padding: 1.15rem 1.25rem 1.4rem;
  }
  .cookie-consent-inner {
    flex-direction: column;
    gap: 1.15rem;
    align-items: stretch;
  }
  .cookie-consent-actions {
    width: 100%;
    flex-direction: row;
  }
  .cookie-consent-actions button {
    flex: 1;
    justify-content: center;
    padding: 0.7rem 0.75rem;
    font-size: 0.88rem;
  }
}
