@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css');

:root {
  /* â”€â”€ Brand Palette â”€â”€ */
  --color-primary: #0F3D2E;
  /* Emerald Green   */
  --color-primary-hover: #0a2a1f;
  /* Deeper Emerald  */
  --color-accent: #C9A44C;
  /* Champagne Gold  */
  --color-accent-hover: #b08d3a;
  /* Darker Gold     */
  --color-highlight: #8FAF9B;
  /* Sage Green      */

  /* Homepage Footer Variable Aliases */
  --dark-green: #0F3D2E;
  --gold: #C9A44C;
  --gold-light: #D4B46A;
  --font-serif: 'Poppins', sans-serif;

  /* â”€â”€ Backgrounds â”€â”€ */
  --color-bg-main: #FFFFFF;
  /* Pure White      */
  --color-bg-alt: #F5F3EE;
  /* Ivory           */
  --color-bg-card: #FFFFFF;

  /* â”€â”€ Text â”€â”€ */
  --color-text-dark: #1C2B22;
  /* Deep forest green-black */
  --color-text-gray: #6B7C6E;
  /* Muted sage-gray */

  /* â”€â”€ Typography â”€â”€ */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* â”€â”€ Spacing â”€â”€ */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* â”€â”€ Layout â”€â”€ */
  --max-width: 1400px;

  /* â”€â”€ Borders & Shadows â”€â”€ */
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 9999px;

  --shadow-sm: 0 8px 24px rgba(15, 61, 46, 0.12);
  --shadow-md: 0 16px 40px rgba(15, 61, 46, 0.20);
  --shadow-lg: 0 24px 50px rgba(15, 61, 46, 0.12);
  --shadow-gold: 0 12px 24px rgba(201, 164, 76, 0.20);

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   BASE RESET
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

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

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-padding {
  padding: var(--spacing-xl) 0;
}

.bg-alt {
  background-color: var(--color-bg-alt);
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-sm {
  gap: var(--spacing-sm);
}

.gap-md {
  gap: var(--spacing-md);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(213, 155, 61, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), #e8b84b);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(15, 61, 46, 0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(213, 155, 61, 0.4);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  z-index: 999;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* ============================================
   HEADER & NAVIGATION â€” DESKTOP
   ============================================ */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1002;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* Desktop nav links â€” sit between logo and CTA */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  /* push to right before CTA */
  list-style: none;
}

.nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color 0.3s ease;
  font-family: var(--font-serif);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
  border-radius: 1px;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Desktop CTA button */
.nav-actions {
  flex-shrink: 0;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  background: #fff;
  color: var(--color-primary);
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  text-transform: uppercase;
  font-family: var(--font-serif);
}

.nav-cta-btn:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(213, 155, 61, 0.35);
}

/* Mobile toggle â€” hidden on desktop */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 1002;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  margin-left: auto;
  transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   MOBILE SIDEBAR
   ============================================ */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--color-primary);
  z-index: 1030;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none;
}

.mobile-sidebar.active {
  right: 0;
}

.msb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.msb-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.msb-logo span {
  color: var(--color-accent);
}

.msb-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.msb-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.msb-links {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  flex: 1;
  font-family: var(--font-heading);
}

.msb-link {
  display: flex;
  align-items: center;
  gap: 1.95rem;
  padding: 0.9rem 1.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.msb-link i {
  font-size: 1.15rem;
  opacity: 0.65;
  width: 18px;
  text-align: center;
}

.msb-link:hover,
.msb-link.active {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 2.1rem;
}

.msb-link.active i {
  opacity: 1;
}

.msb-cta {
  padding: 1.5rem 1.75rem 0;
}

.msb-cta-btn {
  display: block;
  text-align: center;
  padding: 0.9rem 1rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 500;
  font-size: 1.12rem;
  border-radius: 8px;
  transition: background 0.3s ease;
  letter-spacing: 0.3px;
  font-family: 'Poppins';
}

.msb-cta-btn:hover {
  background: var(--color-accent-hover);
}

.msb-contact {
  padding: 1.25rem 1.75rem 2rem;
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  font-family: var(--font-heading);
}

.msb-contact a {
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.msb-contact a:hover {
  color: var(--color-accent);
}

.msb-contact i {
  color: var(--color-accent);
}

/* ============================================
   OVERLAY (mobile)
   ============================================ */
.nav-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1025;
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   LOGO DYNAMIC VISIBILITY RULES
   ============================================ */
.main-header .logo-dark {
  display: block;
}

.main-header .logo-light {
  display: none;
}

.main-header.use-white-logo .logo-dark {
  display: none;
}

.main-header.use-white-logo .logo-light {
  display: block;
}

.main-header.scrolled .logo-dark {
  display: none !important;
}

.main-header.scrolled .logo-light {
  display: block !important;
}

/* ============================================
   MOBILE BREAKPOINT (< 992px)
   ============================================ */
@media (max-width: 991px) {

  /* Hide desktop nav elements */
  .nav-links,
  .nav-actions {
    display: none !important;
  }

  /* Show hamburger */
  .mobile-menu-toggle {
    display: flex !important;
  }

  /* Mobile Sticky Navigation Header */
  .main-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1020;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 16px rgba(15, 61, 46, 0.07);
    padding: 0.75rem 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  }

  .main-header .logo img {
    height: 60px;
  }

  .main-header .mobile-menu-toggle {
    color: var(--color-primary) !important;
    font-size: 2.4rem;
    width: 55px;
    height: 50px;
  }

  /* Mobile Scrolled State */
  .main-header.scrolled {
    background: rgba(15, 61, 46, 0.98) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2) !important;
    padding: 0.65rem 0;
  }

  .main-header.scrolled .mobile-menu-toggle {
    color: #fff !important;
  }

  /* Mobile logo visibility defaults */
  .main-header .logo-dark {
    display: block !important;
  }

  .main-header .logo-light {
    display: none !important;
  }

  .main-header.scrolled .logo-dark {
    display: none !important;
  }

  .main-header.scrolled .logo-light {
    display: block !important;
  }

  /* Make header transparent on top position for pages using white logo (like single pages) */
  .main-header.use-white-logo:not(.scrolled) {
    background: transparent !important;
    box-shadow: none !important;
  }

  .main-header.use-white-logo:not(.scrolled) .mobile-menu-toggle,
  .main-header.use-white-logo:not(.scrolled) .mobile-phone-btn {
    color: #fff !important;
  }

  .main-header.use-white-logo:not(.scrolled) .mobile-nav-separator {
    background: rgba(255, 255, 255, 0.3) !important;
  }

  .main-header.use-white-logo:not(.scrolled) .logo-dark {
    display: none !important;
  }

  .main-header.use-white-logo:not(.scrolled) .logo-light {
    display: block !important;
  }
}


/* ============================================
   HERO (Inner Pages)
   ============================================ */
.hero-wrapper {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(13, 63, 84, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 var(--spacing-sm);
}

.hero-title {
  font-size: 5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-family: var(--font-body);
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 3rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-subtitle {
  color: var(--color-accent);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 3rem;
  color: var(--color-primary);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.card-img-wrapper {
  height: 280px;
  overflow: hidden;
  position: relative;
}

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

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

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fff;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

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

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-meta {
  display: flex;
  gap: 1rem;
  color: var(--color-text-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.card-meta i {
  color: var(--color-accent);
}

.card-desc {
  color: var(--color-text-gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card-price {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.card-price span {
  font-size: 0.8rem;
  color: var(--color-text-gray);
  font-weight: 400;
}

.card-link {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   IMAGE TILES / DESTINATIONS
   ============================================ */
.tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
}

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

.tile:hover img {
  transform: scale(1.05);
}

.tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 61, 46, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.tile-title {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-stars {
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
}

/* ============================================
   FEATURES / WHY US
   ============================================ */
.feature-box {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(213, 155, 61, 0.1);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem auto;
  transition: var(--transition);
}

.feature-box:hover .feature-icon {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-5px);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-desc {
  color: var(--color-text-gray);
  font-size: 0.95rem;
}

/* ============================================
   SPLIT STORYTELLING SECTION
   ============================================ */
.split-section {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
  position: relative;
}

.split-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.split-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.split-badge-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
  margin: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  object-fit: cover;
}

.hp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   HP FOOTER (Applied globally)
   ============================================ */
.hp-footer {
  background: var(--dark-green);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.hp-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.hp-footer .fg-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
}

.hp-footer .fg-logo span {
  color: var(--gold);
}

.hp-footer .fg-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}

.hp-footer .fg-socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hp-footer .fg-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  transition: var(--transition);
}

.hp-footer .fg-socials a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.hp-footer .fg-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hp-footer .fg-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hp-footer .fg-col-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.hp-footer .fg-col-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.hp-footer .newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 0.75rem;
}

.hp-footer .newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px 0 0 6px;
  font-size: 0.85rem;
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hp-footer .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.hp-footer .newsletter-form button {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.hp-footer .newsletter-form button:hover {
  background: #a87820;
}

.hp-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   FOOTER (inner pages)
   ============================================ */
.main-footer {
  background: var(--color-primary);
  color: #fff;
  padding: var(--spacing-xl) 0 var(--spacing-md) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
}

.footer-title {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* ============================================
   ANIMATION UTILITY CLASSES
   (Initial hidden states for GSAP)
   ============================================ */
.gsap-reveal-up {
  opacity: 0;
  transform: translateY(60px);
}

.gsap-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
}

.gsap-reveal-right {
  opacity: 0;
  transform: translateX(60px);
}

.gsap-reveal-scale {
  opacity: 0;
  transform: scale(0.85);
}

.gsap-reveal-fade {
  opacity: 0;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hp-footer .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .split-section {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .split-badge {
    display: none;
  }

  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }

  .hp-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner h2 {
    font-size: 2rem;
  }

  .cta-banner {
    border-radius: var(--radius-md);
    padding: 3.5rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-wrapper {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1.25rem;
  }

  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .floating-whatsapp {
    bottom: 5.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  /* HP Footer Responsive */
  .hp-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .hp-footer {
    padding: 3rem 0 1.5rem;
  }
}

/* ============================================
   Custom Responsive Enhancements for Tours & Destinations
   ============================================ */
.split-content.pad-l {
  padding-left: 3rem;
}

.split-content.pad-r {
  padding-right: 3rem;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.tour-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-lg);
}

.filter-bar {
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-bar select {
  padding: 0.55rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  outline: none;
  background: #fff;
  font-family: var(--font-body);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text-dark);
}

.filter-bar select:focus {
  border-color: var(--color-accent);
}

.filter-options {
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 1024px) {

  .split-content.pad-l,
  .split-content.pad-r {
    padding-left: 0;
    padding-right: 0;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .tour-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Featured Blog Post Horizontal Card */
.card-horizontal {
  flex-direction: row;
}

.card-horizontal .card-img-wrapper {
  height: auto;
  flex: 1.5;
}

.card-horizontal .card-body {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .card-horizontal {
    flex-direction: column;
  }

  .card-horizontal .card-img-wrapper {
    height: 300px;
    flex: none;
  }

  .card-horizontal .card-body {
    padding: 2rem;
  }

  /* Center align Footer on mobile globally */
  .hp-footer {
    text-align: center;
  }

  .hp-footer .fg-logo {
    display: flex;
    justify-content: center;
  }

  .hp-footer .fg-socials {
    justify-content: center;
  }

  .hp-footer .fg-col-links {
    align-items: center;
  }

  .hp-footer .newsletter-form {
    justify-content: center;
  }
}

/* ============================================
   Professional Tour Itinerary Layout
   ============================================ */
.tour-card-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.tour-overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.itinerary-timeline {
  position: relative;
  margin-left: 0.5rem;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-accent);
  opacity: 0.3;
}

.itinerary-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}

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

.itinerary-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--color-accent);
}

.itinerary-item h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .tour-card-box {
    padding: 1.5rem;
  }

  .tour-overview-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ============================================
   EXPLORE CARDS & POPUP SYSTEM (Destinations & Things to Do)
   ============================================ */
.explore-section {
  padding: 4rem 0 6rem 0;
  background-color: var(--color-bg-main);
}

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

@media (max-width: 991px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .explore-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.explore-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 61, 46, 0.06);
  border: 1px solid rgba(15, 61, 46, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(201, 164, 76, 0.3);
}

.explore-card-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.explore-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-card:hover .explore-card-img-wrapper img {
  transform: scale(1.08);
}

.explore-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 61, 46, 0.65) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 1;
}

.explore-card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.explore-card-title {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.explore-card:hover .explore-card-title {
  color: var(--color-accent);
}

.explore-card-desc {
  color: var(--color-text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.explore-card-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.explore-card-action i {
  font-size: 0.8rem;
  color: var(--color-accent);
  transition: transform 0.3s;
}

.explore-card:hover .explore-card-action {
  color: var(--color-accent);
}

.explore-card:hover .explore-card-action i {
  transform: translateX(4px);
}

/* Modal Popup System */
.explore-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1rem;
}

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

.explore-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 61, 46, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.explore-modal-window {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 90vh;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  z-index: 2010;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.explore-modal.modal-active .explore-modal-window {
  transform: scale(1) translateY(0);
}

.explore-modal-banner {
  position: relative;
  height: 380px;
  width: 100%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .explore-modal-banner {
    height: 250px;
  }
}

.explore-modal-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-modal-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(15, 61, 46, 0.85) 100%);
}

.explore-modal-banner-content {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  right: 2.5rem;
  color: #fff;
  z-index: 2;
}

@media (max-width: 768px) {
  .explore-modal-banner-content {
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
  }
}

.explore-modal-badge {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.95rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.explore-modal-title {
  font-size: 2.75rem;
  color: #fff;
  font-family: var(--font-heading);
  line-height: 1.1;
}

@media (max-width: 768px) {
  .explore-modal-title {
    font-size: 1.8rem;
  }
}

.explore-modal-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  color: var(--color-primary);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 2020;
}

@media (max-width: 991px) {
  .explore-modal-close {
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

.explore-modal-close:hover {
  background: var(--color-accent);
  color: #fff;
  transform: rotate(90deg);
}

.explore-modal-body {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  background: #ffffff;
}

@media (max-width: 991px) {
  .explore-modal-body {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
}

.explore-modal-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.explore-modal-sec-title {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.explore-modal-sec-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
}

.explore-modal-story {
  color: var(--color-text-dark);
  font-size: 1.05rem;
  line-height: 1.75;
}

.explore-modal-story p {
  margin-bottom: 1.25rem;
}

.explore-modal-highlights {
  background: var(--color-bg-alt);
  padding: 1.75rem;
  border-radius: 16px;
  border-left: 4px solid var(--color-accent);
}

.explore-modal-hl-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .explore-modal-hl-list {
    grid-template-columns: 1fr;
  }
}

.explore-modal-hl-list li {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.explore-modal-hl-list li i {
  color: var(--color-accent);
  font-size: 1rem;
}

.explore-modal-gallery {
  margin-top: 1rem;
}

.explore-modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .explore-modal-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.explore-modal-gallery-item {
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.explore-modal-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.explore-modal-gallery-item:hover img {
  transform: scale(1.1);
}

.explore-modal-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.explore-modal-sidebar-card {
  background: var(--color-bg-alt);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(15, 61, 46, 0.05);
}

.explore-modal-facts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.explore-modal-fact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.explore-modal-fact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 164, 76, 0.12);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.explore-modal-fact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-text-gray);
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.explore-modal-fact-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.explore-modal-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.explore-modal-cta-btn:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* â”€â”€ MOBILE NAV ACTIONS (Phone + Toggle) â”€â”€ */
.mobile-nav-actions {
  display: none;
  align-items: center;
  margin-left: auto;
  z-index: 1002;
}

@media (max-width: 991px) {
  .mobile-nav-actions {
    display: flex !important;
  }

  .mobile-menu-toggle {
    margin-left: 0 !important;
  }
}

.mobile-phone-btn {
  color: #fff;
  font-size: 2.45rem;
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-phone-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-nav-separator {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 0.1rem;
  transition: background 0.3s ease;
}

/* Color states mirroring mobile-menu-toggle */
@media (max-width: 991px) {
  .main-header .mobile-phone-btn {
    color: var(--color-primary) !important;
  }

  .main-header .mobile-nav-separator {
    background: rgb(28 43 34) !important;
  }

  .main-header.scrolled .mobile-phone-btn {
    color: #fff !important;
  }

  .main-header.scrolled .mobile-nav-separator {
    background: rgba(255, 255, 255, 0.3) !important;
  }
}

/* ============================================
   SINGLE PAGE LISTICLE STYLES
   ============================================ */
.single-content-wrapper {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.single-header {
  margin-bottom: 2rem;
  text-align: center;
}

.single-story {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
}

.single-facts {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.fact-box {
  background: var(--color-bg-alt);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.fact-box i {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
}

.fact-box h4 {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.fact-box p {
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
  font-size: 1rem;
}

/* Listicle Styles */
.listicle-item {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.listicle-item:last-child {
  border-bottom: none;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.listicle-header {
  margin-bottom: 1.2rem;
}

.listicle-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.listicle-badge {
  display: inline-block;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(15, 61, 46, 0.1);
}

.listicle-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.listicle-body {
  display: flex;
  gap: 2rem;
}

.listicle-story {
  flex: 2;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-dark);
}

.listicle-sidebar {
  flex: 1;
  background: var(--color-bg-alt);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.listicle-sidebar h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-weight: 600;
}

.listicle-hl-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.listicle-hl-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-text-gray);
  font-size: 0.95rem;
}

.listicle-hl-list li i {
  color: var(--color-accent);
  margin-top: 0.2rem;
}

.listicle-cta {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  display: block;
  padding: 0.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.95rem;
}

.listicle-cta:hover {
  background: var(--color-primary-hover);
  color: #fff;
}

@media (max-width: 768px) {
  .listicle-body {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ============================================
   BESPOKE TOURS (PLAN MY TRIP) PAGE
   ============================================ */
.bespoke-hero {
  height: 60vh;
  min-height: 450px;
  background: linear-gradient(to right, rgba(15, 61, 46, 0.85), rgba(15, 61, 46, 0.5)), url('../images/destination/3.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.bespoke-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.bespoke-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.bespoke-section {
  padding: 5rem 2rem;
}

.bespoke-section-bg {
  background: var(--color-bg-alt);
}

.bespoke-container {
  max-width: 1000px;
  margin: 0 auto;
}

.bespoke-title-center {
  text-align: center;
  margin-bottom: 3.5rem;
}

.bespoke-title-center h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.bespoke-title-center p {
  color: var(--color-text-gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Process Steps */
.bespoke-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.process-step {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  position: relative;
}

.process-step-num {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.6;
}

/* Benefits Grid */
.bespoke-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 2rem;
  color: var(--color-accent);
}

.benefit-text h4 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.benefit-text p {
  color: var(--color-text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Form Styles */
.bespoke-form-wrapper {
  background: #fff;
  padding: 4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  max-width: 800px;
  margin: 0 auto;
}

.b-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.b-form-group {
  display: flex;
  flex-direction: column;
}

.b-form-group.full {
  grid-column: 1 / -1;
}

.b-form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.b-form-control {
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: #fafafa;
  transition: all 0.3s ease;
}

.b-form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.1);
}

.b-submit-btn {
  background: var(--color-primary);
  color: #fff;
  padding: 1.2rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.b-submit-btn:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 164, 76, 0.3);
}

@media (max-width: 768px) {
  .b-form-grid {
    grid-template-columns: 1fr;
  }

  .bespoke-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   NEW CARD STYLE FOR DESTINATIONS & ACTIVITIES
   ============================================ */
.img-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.img-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
  aspect-ratio: 3/4;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.img-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

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

.img-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

.img-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.img-card-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.img-card-btn {
  background: #fff;
  color: #000;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.img-card:hover .img-card-btn {
  background: var(--color-accent);
  color: #fff;
}

/* ============================================
   EXACT LAYOUT: BESPOKE TOURS (PLAN MY TRIP)
   ============================================ */
.bespoke-hero-exact {
  height: 55vh;
  min-height: 400px;
  background: linear-gradient(to right, rgba(15, 61, 46, 0.7), rgba(15, 61, 46, 0.4)), url('../images/destination/3.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.bespoke-hero-exact h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 2-Column Intro */
.bespoke-intro-section {
  padding: 6rem 2rem;
  background: #fff;
}

.bespoke-intro-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bespoke-intro-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.bespoke-intro-text p {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.bespoke-intro-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Timeline Process */
.bespoke-process-section {
  padding: 6rem 2rem;
  background: var(--color-bg-alt);
}

.bespoke-process-container {
  max-width: 1000px;
  margin: 0 auto;
}

.bespoke-section-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.bespoke-section-heading h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.bespoke-timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--color-accent);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

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

.timeline-dot {
  position: absolute;
  left: -2.6rem;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 4px solid var(--color-bg-alt);
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
}

.timeline-content p {
  color: var(--color-text-gray);
  line-height: 1.6;
  font-size: 1.05rem;
}

/* 2-Column Form Section */
.bespoke-form-section {
  padding: 6rem 2rem;
  background: #fff;
}

.bespoke-form-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.bespoke-form-info h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.bespoke-form-info p {
  font-size: 1.1rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.bespoke-contact-details p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.bespoke-contact-details i {
  color: var(--color-accent);
  font-size: 1.2rem;
}

.bespoke-form-container {
  background: var(--color-bg-alt);
  padding: 3rem;
  border-radius: var(--radius-sm);
}

@media (max-width: 900px) {

  .bespoke-intro-grid,
  .bespoke-form-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ============================================
   EXACT SCREENSHOT LAYOUT: PLAN MY TRIP
   ============================================ */
body.page-bespoke {
  background: #fff;
  color: var(--color-text-dark);
  padding-top: 0 !important;
}

.b-top-section {
  background-color: var(--color-bg-alt);
  /* Light theme background */
  padding-bottom: 5rem;
}

/* Custom Minimal Header */
.b-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.b-header-logo {
  justify-self: start;
}

.b-header-text {
  justify-self: center;
  text-align: center;
}

.b-btn-home {
  justify-self: end;
}

.b-header-logo img {
  height: 60px;
  width: auto;
}

.b-header-text span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-gray);
  margin-bottom: 0.2rem;
}

.b-header-text h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.b-btn-home {
  background: var(--color-primary);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}

.b-btn-home:hover {
  background: var(--color-accent);
}

/* Form Container */
.b-form-container {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}

.b-form-section {
  margin-bottom: 3rem;
}

.b-form-section-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.b-form-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.b-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.b-form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.b-form-group label span {
  color: var(--color-accent);
}

/* required asterisk */
.b-input {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.b-input::placeholder {
  color: #aaa;
}

.b-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* Checkbox Grid */
.b-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.b-checkbox-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.b-checkbox-col h4 span {
  color: var(--color-accent);
}

.b-check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  cursor: pointer;
}

.b-check-item input[type="checkbox"],
.b-check-item input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
}

/* Big Submit Button */
.b-submit-wrapper {
  margin-top: 4rem;
}

.b-submit-btn-massive {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 1.2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.b-submit-btn-massive:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Bottom Section */
.b-bottom-section {
  background: #fff;
  padding: 5rem 2rem;
}

.b-bottom-container {
  max-width: 900px;
  margin: 0 auto;
}

.b-process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.b-process-header h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.b-process-header h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
}

.b-tabs-nav {
  display: inline-flex;
  gap: 1rem;
}

.b-tab-btn {
  background: transparent;
  border: 1px solid #ccc;
  padding: 0.6rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.b-tab-btn.active {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Tab Content Panels */
.b-tab-content {
  display: none;
}

.b-tab-content.active {
  display: block;
}

/* Process Interactive Layout */
.b-process-layout {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
}

.b-process-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.b-step-btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.b-step-btn.active {
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.b-step-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

.b-step-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.b-process-content {
  flex: 1.5;
  padding-top: 1rem;
}

.b-step-detail {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.b-step-detail.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.b-step-detail p {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.b-step-detail h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.b-step-detail-box {
  padding-left: 2rem;
  margin-top: 1.5rem;
}

.b-step-detail-box p {
  margin-bottom: 0.8rem;
  color: var(--color-text-dark);
}

/* Minimal Footer */
.b-minimal-footer {
  background: var(--color-bg-alt);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: var(--color-text-gray);
}

@media (max-width: 768px) {
  .b-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo btn"
      "text text";
    gap: 1rem;
    padding: 1.5rem;
  }

  .b-header-logo {
    grid-area: logo;
    justify-self: start;
  }

  .b-btn-home {
    grid-area: btn;
    justify-self: end;
  }

  .b-header-text {
    grid-area: text;
    justify-self: center;
    text-align: center;
  }

  .b-form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .b-checkbox-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .b-process-layout {
    flex-direction: column;
    gap: 2rem;
  }
}

.tpkg-details-day-desc ul {
  margin-left: 3rem;
}

.tpkg-details-day-desc p,
.tpkg-details-day-desc ul {
  margin-bottom: 1rem;
}

div#tpkg-overview-text p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.tpkg-lead ul {
  margin-left: 2rem;
  font-size: 0.85rem;
}

/* --- APPENDED FROM PHP FILES --- */

/* ── TTD Single Page ── */

/* Hero */
.ttds-hero {
  position: relative;
  height: 68vh;
  min-height: 480px;
  overflow: hidden;
}

.ttds-hero img.ttds-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ttds-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 40, 25, 0.6) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.ttds-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 3.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.ttds-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent, #c9a84c);
  margin-bottom: 0.75rem;
}

.ttds-hero-title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

.ttds-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  padding: 0.35rem 1.1rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Description */
.ttds-desc-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.ttds-facts-bar {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.ttds-fact-item {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.5rem;
  border-right: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

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

.ttds-fact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 61, 46, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #0f3d2e);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.ttds-fact-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 0.15rem;
}

.ttds-fact-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
}

.ttds-story {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.85;
}

.ttds-story p {
  margin-bottom: 1.2rem;
}

/* Section divider */
.ttds-divider {
  max-width: 1100px;
  margin: 0 auto 0;
  border: none;
  border-top: 1px solid #eaeaea;
}

/* Related cards section */
.ttds-related-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
}

.ttds-sec-heading {
  text-align: center;
  margin-bottom: 0.5rem;
}

.ttds-sec-heading h2 {
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 0.35rem;
}

.ttds-sec-heading h2 em {
  font-style: normal;
  font-weight: 400;
}

.ttds-sec-subhead {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Cards grid */
.ttds-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.ttds-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  background: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}

.ttds-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
}

.ttds-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ttds-card:hover .ttds-card-img {
  transform: scale(1.04);
}

.ttds-card-img-wrap {
  overflow: hidden;
}

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

.ttds-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent, #c9a84c);
  margin-bottom: 0.5rem;
}

.ttds-card-name {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.ttds-card-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ttds-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary, #0f3d2e);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.ttds-card-link:hover {
  gap: 0.65rem;
}

.ttds-card-link i {
  font-size: 0.75rem;
}

/* Back link */
.ttds-back-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
}

.ttds-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary, #0f3d2e);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s, gap 0.2s;
}

.ttds-back-link:hover {
  opacity: 1;
  gap: 0.7rem;
}

/* Responsive */
@media (max-width: 900px) {
  .ttds-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ttds-facts-bar {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .ttds-facts-bar {
    flex-direction: column;
  }

  .ttds-fact-item {
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }

  .ttds-cards-grid {
    grid-template-columns: 1fr;
  }

  .ttds-hero-title {
    font-size: 2.2rem;
  }
}


/* ── Destination Single Page ── */
.ds-hero {
  position: relative;
  height: 68vh;
  min-height: 480px;
  overflow: hidden;
}

.ds-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ds-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 61, 46, 0.65) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.ds-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 3.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.ds-hero-region {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent, #c9a84c);
  margin-bottom: 0.75rem;
}

.ds-hero-title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

.ds-hero-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 0.35rem 1rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── Description Section ── */
.ds-desc-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 2rem 3rem;
}

.ds-facts-bar {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: #fff;
}

.ds-fact-item {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.5rem;
  border-right: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

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

.ds-fact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 61, 46, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #0f3d2e);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.ds-fact-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 0.15rem;
}

.ds-fact-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
}

.ds-story {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
}

.ds-story p {
  margin-bottom: 1.2rem;
}

/* ── Attractions Section ── */
.ds-attractions-section {
  padding: 3rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ds-attractions-heading {
  text-align: center;
  margin-bottom: 0.5rem;
}

.ds-attractions-heading h2 {
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 0.4rem;
}

.ds-attractions-heading h2 em {
  font-style: normal;
  font-weight: 400;
}

.ds-attractions-subhead {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 2rem;
  text-align: center;
}

.ds-attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 2.5rem;
}

.ds-attraction-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0;
  cursor: pointer;
}

.ds-attraction-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border-radius: 50%;
  margin-top: 2px;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.25s ease;
}

.ds-attraction-icon i {
  color: #fff;
  font-size: 0.55rem;
}

.ds-attraction-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.ds-attraction-type {
  font-size: 0.78rem;
  color: #888;
  display: block;
  margin-top: 0.1rem;
}

.ds-attraction-item:hover .ds-attraction-icon {
  transform: translateX(4px);
  background: var(--color-primary, #0f3d2e);
}

.ds-attraction-item:hover .ds-attraction-name {
  color: var(--color-primary, #0f3d2e);
}

/* ── Full-Width Gallery Carousel ── */
.ds-gallery-section {
  position: relative;
  overflow: hidden;
  margin: 3.5rem 0 0;
}

.ds-gallery-track-wrap {
  overflow: hidden;
}

.ds-gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-gallery-slide {
  min-width: 33.333%;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
}

.ds-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ds-gallery-slide img:hover {
  transform: scale(1.04);
}

.ds-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.ds-gallery-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.ds-gallery-btn:hover {
  background: #1a1a1a;
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .ds-attractions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ds-gallery-slide {
    min-width: 50%;
  }
}

@media (max-width: 600px) {
  .ds-facts-bar {
    flex-direction: column;
  }

  .ds-fact-item {
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }

  .ds-attractions-grid {
    grid-template-columns: 1fr;
  }

  .ds-gallery-slide {
    min-width: 80%;
  }
}

/* ── Things to Do Section (Existing Design) ── */
.ttd-area {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 3rem 0;
  max-width: 1100px;
  margin: 0 auto;
}

.ttd-outer-sec {
  position: relative;
  padding: 2rem 0;
}

.ttd-outer-sec:not(:last-child) {
  border-bottom: 1px solid rgba(24, 24, 24, .1);
}

.ttd-inner-sec {
  display: flex;
  position: relative;
  gap: 2.5rem;
}

.ttd-img-sec {
  position: relative;
  width: 40%;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.ttd-content-sec {
  position: relative;
  width: 60%;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h4.ttd-title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.65rem;
  margin: 0 0 0.85rem 0;
  font-weight: 800;
  color: #1a1a1a;
}

.ttd-content-inner {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
}

.ttd-content-inner p {
  margin: 0 0 1rem 0;
}

.ttd-content-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .ttd-inner-sec {
    flex-direction: column;
    gap: 1.25rem;
  }

  .ttd-img-sec {
    width: 100%;
    min-height: 220px;
  }

  .ttd-content-sec {
    width: 100%;
    padding-left: 0;
  }
}

/* ── Loading Skeleton ── */
.tpkg-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.tpkg-loading-state {
  padding: 60px 20px;
  text-align: center;
  color: #777;
  font-size: 1.1rem;
}

.tpkg-error-state {
  padding: 80px 20px;
  text-align: center;
}

.tpkg-error-state h2 {
  color: #c0392b;
  margin-bottom: 1rem;
}

.tpkg-error-state a {
  color: var(--color-primary, #0f3d2e);
  font-weight: 600;
}

/* ── Star rating in hero ── */
.tpkg-hero-meta .tpkg-star-icon {
  color: #f5c518;
}

/* ── Destinations list in overview ── */
.tpkg-dest-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.tpkg-dest-pill {
  background: rgba(15, 61, 46, 0.08);
  color: var(--color-primary, #0f3d2e);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: .85rem;
  font-weight: 500;
}

/* ── Price box days highlighted ── */
.tpkg-price-days-num {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.tpkg-price-days-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  display: block;
}

.tpkg-price-duration-detail {
  font-size: .82rem;
  color: #e8c96a;
  margin-top: 4px;
  font-weight: 600;
}

.tpkg-duration-highlight {
  background: var(--color-accent, #c9a84c);
  color: #fff;
  padding: 0 5px;
  border-radius: 4px;
  font-weight: 700;
}

/* ── Modal Container & Backdrop ── */
.tour-enquiry-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 61, 46, 0.85);
  backdrop-filter: blur(8px);
  padding: 2rem 1rem;
  overflow-y: auto;
}

.tour-enquiry-modal.active {
  display: block;
}

/* ── Modal Content Box ── */
.tour-enquiry-modal-content {
  background-color: #fff;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  margin: 2vh auto;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
  animation: tourModalPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tourModalPop {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(40px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ── Header ── */
.tour-enquiry-modal-header {
  background: var(--dark-green, #0F3D2E);
  color: #fff;
  padding: 2.5rem 2.5rem 2rem;
  text-align: center;
  position: relative;
  flex-shrink: 0;
}

.tour-enquiry-modal-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/bgn-newsletter.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.tour-enquiry-modal-header>* {
  position: relative;
  z-index: 2;
}

.tour-enquiry-close {
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.tour-enquiry-close:hover {
  color: #fff;
  transform: scale(1.1);
}

.tour-enquiry-modal-header h2 {
  font-size: 2rem;
  color: var(--gold, #C9A44C);
  margin-bottom: 0.5rem;
  font-family: var(--font-serif, 'Poppins', sans-serif);
  font-weight: 700;
}

.tour-enquiry-modal-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Body ── */
.tour-enquiry-modal-body {
  padding: 2.5rem;
  background: #fff;
  overflow-y: auto;
}

/* ── 2-Column Grid Layout ── */
.tour-enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

.tour-enquiry-form .form-group {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.tour-enquiry-form .full-width {
  grid-column: 1 / -1;
}

.tour-enquiry-form label {
  display: block;
  font-weight: 600;
  /* margin-bottom: 0.4rem; */
  font-size: 0.85rem;
  color: var(--text-dark, #1C2B22);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-enquiry-form label .required {
  color: #c0392b;
}

/* ── Section Headings ── */
.section-heading {
  grid-column: 1 / -1;
  margin-top: 1rem;
  margin-bottom: 1.65rem;
}

.section-heading h5 {
  font-size: 1.15rem;
  color: var(--dark-green, #0F3D2E);
  font-weight: 700;
  border-bottom: 2px solid var(--gold, #C9A44C);
  display: inline-block;
  padding-bottom: 0.35rem;
  margin-bottom: 0;
}

.section-heading i {
  color: var(--gold, #C9A44C);
  margin-right: 0.4rem;
}

/* ── Input Icons ── */
.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrapper i {
  position: absolute;
  left: 1.15rem;
  color: #aaa;
  font-size: 1.05rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-icon-wrapper input,
.input-icon-wrapper select {
  padding-left: 2.85rem !important;
}

.input-icon-wrapper:focus-within i {
  color: var(--gold, #C9A44C);
}


.tour-enquiry-form input,
.tour-enquiry-form textarea,
.tour-enquiry-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-sans, 'Open Sans', sans-serif);
  font-size: 0.95rem;
  background: #fdfdfd;
  color: #333;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.tour-enquiry-form input::placeholder,
.tour-enquiry-form textarea::placeholder {
  color: #aaa;
}

.tour-enquiry-form input:focus,
.tour-enquiry-form textarea:focus,
.tour-enquiry-form select:focus {
  outline: none;
  border-color: var(--gold, #C9A44C);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.15);
}

/* Error States */
.tour-enquiry-form input.has-error,
.tour-enquiry-form textarea.has-error,
.tour-enquiry-form select.has-error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
}

.inline-error {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

/* ── Tour Badge Display ── */
.tour-info-display {
  background: rgba(15, 61, 46, 0.04);
  border: 1px dashed rgba(15, 61, 46, 0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  align-items: center;
}

.tour-name-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--dark-green, #0F3D2E);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-heading);
  /* margin-top: 0.25rem; */
}

.tour-name-badge i {
  color: var(--gold, #C9A44C);
}

/* ── Yes/No Toggle Switch ── */
.flex-dates-row {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  background: #fdfdfd;
  height: 48px;
  box-sizing: border-box;

  .toggle-label-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-gray, #666);
  }

  .enquiry-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    margin-bottom: 0 !important;
  }

  .enquiry-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .enquiry-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
  }

  .enquiry-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }

  .enquiry-switch input:checked+.enquiry-slider {
    background-color: var(--dark-green, #0F3D2E);
  }

  .enquiry-switch input:checked+.enquiry-slider:before {
    transform: translateX(24px);
  }
}

/* ── Traveler Breakdown Section ── */
.breakdown-section {
    display: none;
    /* Controlled dynamically by JS */
    background: #fcfcfc;
    border: 1.5px solid #eaeaea;
    border-radius: 12px;
    padding: 1.25rem;
    animation: slideDownFade 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    margin-bottom: 2rem;
  }

  @keyframes slideDownFade {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .breakdown-header {
    margin-bottom: 1rem;
  }

  .breakdown-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-green, #0F3D2E);
    margin-bottom: 0.2rem;
  }

  .breakdown-header p {
    font-size: 0.8rem;
    color: var(--color-text-gray, #888);
    margin: 0;
  }

  .breakdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .breakdown-item label {
    font-size: 0.75rem;
    color: #555;
    font-weight: 600;
  }

  .breakdown-item input {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  /* ── Submit Button ── */
  .enquiry-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: var(--gold, #C9A44C);
    color: #fff;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .enquiry-submit:hover {
    background: var(--dark-green, #0F3D2E);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 61, 46, 0.2);
  }

  .enquiry-submit:disabled {
    background: #ccc !important;
    color: #888 !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
  }

  /* ============================================================
     BASELINE DESKTOP RESPONSIVE & GLOBAL STYLES (FROM RESPONSIVE.CSS)
     ============================================================ */

  /* ── Base Fluid Typography ── */
  :root {
    --fluid-xs:  clamp(0.75rem,  2vw, 0.875rem);
    --fluid-sm:  clamp(0.875rem, 2vw, 1rem);
    --fluid-md:  clamp(1rem,     2.5vw, 1.2rem);
    --fluid-lg:  clamp(1.25rem,  3vw, 1.6rem);
    --fluid-xl:  clamp(1.75rem,  4vw, 2.4rem);
    --fluid-2xl: clamp(2.2rem,   5vw, 3.5rem);
    --fluid-3xl: clamp(2.8rem,   6vw, 5rem);
  }

  /* ── Prevent horizontal overflow on all pages ── */
  body {
    overflow-x: hidden;
    overflow-y: auto;   /* Ensure vertical scroll is never clipped */
    max-width: 100%;
  }

  /* ── Scrollbar styling ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: #f1f1f1; }
  ::-webkit-scrollbar-thumb { background: #0F3D2E; border-radius: 3px; }
  ::-webkit-scrollbar-thumb:hover { background: #C9A44C; }

  /* ── Smooth Image Loading ── */
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  /* ── Selection Color ── */
  ::selection {
    background: rgba(201, 164, 76, 0.3);
    color: #0F3D2E;
  }

  /* ============================================================
     NAVIGATION (All Pages)
     ============================================================ */
  .nav-container {
    padding: 0 1.5rem;
    flex-wrap: nowrap;
  }

  /* Mobile nav phone button */
  .mobile-phone-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    color: var(--color-primary, #0F3D2E);
    font-size: 1.9rem;
    transition: background 0.3s ease;
  }
  .mobile-phone-btn:hover { background: rgba(15,61,46,0.08); }

  .mobile-nav-actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
  }
  .mobile-nav-separator {
    width: 1px;
    height: 24px;
    background: rgba(15,61,46,0.15);
  }

  /* ============================================================
     HERO — INNER PAGES
     ============================================================ */
  .hero-wrapper {
    height: 60vh !important;
    min-height: 400px !important;
  }
  .hero-title {
    font-size: var(--fluid-3xl);
    line-height: 1.1;
  }
  .hero-subtitle {
    font-size: var(--fluid-md);
    margin-bottom: 2rem;
  }

  /* ── DS Hero (destination single) ── */
  .ds-hero { height: 65vh; min-height: 420px; }
  .ds-hero-title { font-size: clamp(2rem, 5.5vw, 4rem); }

  /* ============================================================
     HOMEPAGE HERO
     ============================================================ */
  .hp-hero { min-height: 100svh; }
  .hero-title-dramatic { font-size: var(--fluid-3xl); }
  .hero-eyebrow { font-size: clamp(0.72rem, 2vw, 0.85rem); }
  .hero-desc { font-size: clamp(0.9rem, 2.5vw, 1.1rem); }

  /* ============================================================
     TOURS GRID (homepage + round_tours)
     ============================================================ */
  .tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  /* Tour Card full responsiveness */
  .tp-card { width: 100%; }
  .tp-card-img-wrap { 
    height: 220px; 
    overflow: hidden; 
    position: relative;
  }

  /* ============================================================
     CTA NEW SECTION (Bespoke Tours)
     ============================================================ */
  .hp-cta-new {
    padding: 5rem 2rem;
  }
  .cta-inner-left { max-width: 700px; }
  .cta-btns-left {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }
  .btn-prominent-solid {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.35s ease;
  }
  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    background: #25D366;
    color: #fff;
    transition: all 0.35s ease;
  }
  .btn-whatsapp:hover { background: #1da751; transform: translateY(-2px); color: #fff; }

  /* ============================================================
     THINGS TO DO GRID (Homepage)
     ============================================================ */
  .ttd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 420px;
  }
  .ttd-tile {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .ttd-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .ttd-tile:hover img { transform: scale(1.07); }

  /* ============================================================
     FOOTER (All Pages)
     ============================================================ */
  .hp-footer .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  }

  /* ============================================================
     SECTION HEADERS — Generic
     ============================================================ */
  .section-title { font-size: var(--fluid-xl); }
  .section-subtitle { font-size: 0.85rem; }
  .section-header { margin-bottom: 2.5rem; }

  /* ============================================================
     ABOUT PAGE
     ============================================================ */
  .split-section {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  .split-content { flex: 1; }
  .split-image { flex: 1; }

  /* ============================================================
     GRIDS — Generic (grid-2, grid-3, grid-4)
     ============================================================ */
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }

  /* ============================================================
     BLOG PAGE
     ============================================================ */
  .card-horizontal {
    flex-direction: row;
  }

  /* Blog cards grid */
  .grid-3 .card { height: auto; }

  /* ============================================================
     FAQ PAGE
     ============================================================ */
  .faq-accordion { max-width: 100%; }
  .faq-question {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    padding: 1.25rem 1.5rem;
  }

  /* ============================================================
     CONTACT PAGE
     ============================================================ */
  .grid-2.contact-grid { gap: 3rem; }

  /* ============================================================
     DESTINATIONS GRID (destinations.php + things_to_do.php)
     4 items per row — original layout
     ============================================================ */
  .img-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .img-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    min-height: 320px;
  }

  /* ============================================================
     DESTINATION SINGLE PAGE
     ============================================================ */
  .ds-desc-section {padding: 3rem 1.5rem 2rem;/* max-width: 100%; */}
  .ds-attractions-section {padding: 2.5rem 1.5rem 3rem;/* max-width: 100%; */}

  /* TTD section in destination_single */
  .ttd-area { max-width: 100%; padding: 2rem 1.5rem; }
  .ttd-inner-sec { gap: 2rem; }
  .ttd-img-sec { min-height: 240px; }

  /* ============================================================
     FILTER BAR (Tours)
     ============================================================ */
  .filter-bar {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .filter-options { flex-wrap: wrap; gap: 0.75rem; }
  .filter-bar select {
    max-width: 180px;
    width: 100%;
  }

  /* ============================================================
     VIEW ALL BANNER
     ============================================================ */
  .view-all-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
  }
  .vab-title { font-size: clamp(1rem, 2.5vw, 1.25rem); }

  /* ============================================================
     PLAN TRIP PAGE
     ============================================================ */
  .comp-boxes { flex-direction: row; flex-wrap: wrap; }
  .component-input, .comp-input-container { width: 100%; max-width: 100%; }

  /* ============================================================
     TOUR PACKAGE PAGE
     ============================================================ */
  .tour-grid { gap: 2rem; }
  .tour-info-viewer {
    width: 100%;
    max-width: 100%;
  }
  .tour-inf { flex-wrap: wrap; }

  /* ============================================================
     THINGS TO DO SINGLE PAGE
     ============================================================ */
  .ttd-slider-section { padding: 0 1.5rem; }
  .ttd-area { padding: 2rem 0; }

  /* ============================================================
     CONTAINER RESPONSIVE
     ============================================================ */
  .container { padding: 0 1.5rem; }
  .hp-container { padding: 0 1.5rem; }

  /* ============================================================
     SECTION PADDING (section-padding class)
     ============================================================ */
  .section-padding { padding: var(--spacing-xl, 5rem) 0; }

  /* ============================================================
     EXPLORE SECTION (.explore-section)
     ============================================================ */
  .explore-section { padding: 3rem 0 5rem; }

  /* ============================================================
     GSAP ANIMATION UTILITY CLASSES
     (Elements start hidden, GSAP reveals them)
     ============================================================ */
  .gsap-hidden { 
    opacity: 0; 
    visibility: hidden;
  }

  /* ============================================================
     DESTINATIONS GRID CARD STYLES
     4 items per row — original layout
     ============================================================ */
  #destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  /* ============================================================
     IMAGE CARD RESPONSIVE (used in destinations & things to do)
     ============================================================ */
  .img-card {
    border-radius: 14px;
    overflow: hidden;
    min-height: 300px;
    background: #f4f4f4;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  }
  .img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 61, 46, 0.18);
  }

  /* ============================================================
     SCROLL-TRIGGERED SECTION ENTRY STATES
     (Pre-animation initial states via CSS, not inline)
     ============================================================ */
  .anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: none; /* GSAP handles transitions */
  }
  .anim-fade-left {
    opacity: 0;
    transform: translateX(-40px);
  }
  .anim-fade-right {
    opacity: 0;
    transform: translateX(40px);
  }
  .anim-scale-in {
    opacity: 0;
    transform: scale(0.88);
  }

  /* ============================================================
     UTILITY: HIDE/SHOW PER BREAKPOINT
     ============================================================ */
  .hide-mobile { display: block; }
  .show-mobile { display: none; }

  /* ============================================================
     VIEW-ALL BANNER — Centre both text + button
     ============================================================ */
  .view-all-banner {
    justify-content: center !important;
    text-align: center !important;
    gap: 2.5rem !important;
  }
  .vab-text { text-align: center !important; }

  /* ============================================================
     HERO SECTIONS — Animation-free (no parallax hints)
     ============================================================ */
  .hero-bg,
  .hero-bg-video,
  .hero-wrapper img,
  .ttds-hero-bg,
  .ds-hero img {
    will-change: auto;
    transform: none !important;
  }

  /* ============================================================
     BLOG SECTION HEADER (blog.php)
     ============================================================ */
  .blog-header-section h1 {
    font-size: var(--fluid-2xl);
  }

  /* ============================================================
     PLAN TRIP PAGE — PICKER RESPONSIVE
     ============================================================ */
  .b-picker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  /* ============================================================
     EXTRACTED INLINE CLASSES
     ============================================================ */

  /* Utility Helpers */
  .d-none { display: none !important; }
  .text-center { text-align: center !important; }
  .cursor-pointer { cursor: pointer !important; }
  .mb-3 { margin-bottom: 3rem !important; }
  .fs-22 { font-size: 2.2rem !important; }
  .mt-05 { margin-top: 0.5rem !important; }
  .mt-1 { margin-top: 1rem !important; }

  /* Loader and Error States */
  .tpkg-loader-icon { font-size: 2rem; color: var(--color-primary, #0f3d2e); margin-bottom: 1rem; }
  .d-block-mt-fw { display: block !important; margin-top: 0.75rem !important; font-weight: 600 !important; }

  /* Tour Package Related Section Overrides */
  .tpkg-related-tours-section { padding-top: 2rem !important; padding-bottom: 5rem !important; }

  /* Tour Enquiry Modal */
  .enquiry-success-msg { display: none; text-align: center; padding: 3rem 1rem; }
  .enquiry-success-icon { font-size: 4rem; color: var(--gold, #C9A44C); margin-bottom: 1.5rem; display: block; }
  .enquiry-success-title { font-size: 1.8rem; color: var(--dark-green, #0F3D2E); margin-bottom: 1rem; font-family: var(--font-heading); }
  .enquiry-success-text { color: var(--color-text-gray, #666); font-size: 1.05rem; line-height: 1.6; max-width: 480px; margin: 0 auto; }
  .enquiry-success-close-btn { margin-top: 2rem; padding: 0.75rem 2rem; border-radius: 8px; border: none; cursor: pointer; }
  .enquiry-datepicker-input { background: #fff !important; cursor: pointer !important; }

  /* Things to Do Single Page Loading States */
  .ttd-single-loading-container { text-align: center; padding: 150px 0; min-height: 80vh; }
  .ttd-single-loading-icon { font-size: 3rem; color: var(--color-primary); }
  .ttd-single-loading-text { margin-top: 1rem; color: #666; font-weight: 600; }

  /* Things to Do List Page Overrides */
  .ttd-hero-wrapper { height: 60vh !important; min-height: 450px !important; }
  .ttd-hero-overlay { background: linear-gradient(to bottom, rgba(15, 61, 46, 0.7), rgba(0, 0, 0, 0.45)) !important; }
  .ttd-hero-subtitle { color: var(--color-accent) !important; text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important; }
  .ttd-hero-title { font-size: 3.8rem !important; text-shadow: 0 2px 8px rgba(0,0,0,0.4) !important; }
  .ttd-hero-desc { font-size: 1.1rem !important; max-width: 600px !important; margin: 0 auto !important; }
  .ttd-section-header { max-width: 700px !important; margin: 0 auto 3rem auto !important; text-align: center !important; }
  .ttd-section-title { font-size: 2.5rem !important; margin-bottom: 1rem !important; }
  .ttd-section-desc { color: var(--color-text-gray) !important; font-size: 1.05rem !important; }
  .ttd-img-card-placeholder { background: #f4f4f4 !important; min-height: 320px !important; }

  /* Round Tours List Page Overrides */
  .rt-hero-wrapper { height: 60vh !important; min-height: 450px !important; }
  .rt-hero-overlay { background: linear-gradient(to bottom, rgba(15, 61, 46, 0.7), rgba(0, 0, 0, 0.45)) !important; }
  .rt-hero-subtitle { color: var(--color-accent) !important; text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important; }
  .rt-hero-title { font-size: 3.4rem !important; text-shadow: 0 2px 8px rgba(0,0,0,0.4) !important; max-width: 900px !important; margin: 0 auto 1rem auto !important; line-height: 1.25 !important; }
  .rt-hero-desc { font-size: 1.15rem !important; max-width: 800px !important; margin: 0 auto !important; line-height: 1.6 !important; }
  .rt-section-header { max-width: 850px !important; margin: 0 auto 3rem auto !important; text-align: center !important; }
  .rt-section-title { font-size: 2.3rem !important; margin-bottom: 1.2rem !important; line-height: 1.3 !important; }
  .rt-section-desc-1 { color: var(--color-text-gray) !important; font-size: 1.08rem !important; line-height: 1.75 !important; margin-bottom: 1rem !important; }
  .rt-section-desc-2 { color: var(--color-text-gray) !important; font-size: 1.05rem !important; line-height: 1.75 !important; }
  .rt-filter-label { font-weight: 600 !important; color: var(--color-primary) !important; font-size: 1rem !important; }
  .rt-tp-card-body { padding: 1.2rem !important; }
  .rt-sk-line { margin-top: 16px !important; }
  .rt-empty-search-container { display: none; text-align: center; padding: 60px 20px; color: #777; }
  .rt-empty-search-icon { font-size: 2rem !important; margin-bottom: 1rem !important; color: #ccc !important; }
  .rt-empty-error-icon { font-size: 2rem !important; }
  .rt-cta-banner { margin-top: var(--spacing-xl) !important; }
  .rt-cta-title { position: relative !important; z-index: 2 !important; }
  .rt-cta-desc { font-size: 1.05rem !important; opacity: 0.9 !important; margin-bottom: 2rem !important; position: relative !important; z-index: 2 !important; }
  .rt-cta-btn { position: relative !important; z-index: 5 !important; display: inline-flex !important; background: #ffffff !important; color: #0F3D2E !important; }

  /* Plan Trip Page Overrides */
  .pt-select-appearance { appearance: auto !important; }
  .pt-contact-link { color: inherit !important; text-decoration: none !important; }
  .pt-loading-desc-text { margin-top: 1.5rem !important; font-size: 0.85rem !important; color: #888 !important; }
  .pt-pricing-tab-content { display: none; }
  .pt-pricing-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
  .pt-pricing-card { background: #fff; padding: 2.5rem 2rem; border-radius: 16px; box-shadow: 0 10px 30px rgba(15, 61, 46, 0.05); border-top: 4px solid var(--color-accent); transition: transform 0.3s ease; }
  .pt-pricing-icon { color: var(--color-accent); font-size: 1.8rem; margin-bottom: 1.25rem; }
  .pt-pricing-title { font-size: 1.25rem; color: var(--color-primary); margin-bottom: 0.85rem; font-family: var(--font-heading); }

.formsec-cover {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Premium Flatpickr custom styling to match Sri Hela design system */
.flatpickr-calendar {
  box-shadow: 0 10px 30px rgba(15, 61, 46, 0.15) !important;
  border: 1px solid rgba(15, 61, 46, 0.1) !important;
  border-radius: 12px !important;
  font-family: var(--font-sans, 'Open Sans', sans-serif) !important;
  z-index: 999999 !important; /* Ensure it is in front of the modal */
}
.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.selected:hover, 
.flatpickr-day.startRange:hover, 
.flatpickr-day.endRange:hover, 
.flatpickr-day.prevMonthDay.selected, 
.flatpickr-day.nextMonthDay.selected {
  background: var(--dark-green, #0F3D2E) !important;
  border-color: var(--dark-green, #0F3D2E) !important;
  color: #fff !important;
}
.flatpickr-day.today {
  border-color: var(--gold, #C9A44C) !important;
}
.flatpickr-day.today:hover {
  background: var(--gold, #C9A44C) !important;
  color: #fff !important;
}
.flatpickr-months .flatpickr-prev-month:hover svg, 
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--gold, #C9A44C) !important;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: var(--dark-green, #0F3D2E) !important;
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: var(--dark-green, #0F3D2E) !important;
}

/* Additional Plan Trip Extracted Classes */
.pt-faq-tab-content { display: none; margin-top: 3rem; }
.pt-faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; }
.pt-faq-item { background: #fff; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); border: 1px solid #eaeaea; overflow: hidden; }
.pt-faq-trigger { width: 100%; text-align: left; padding: 1.25rem 1.5rem; background: transparent; border: none; font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--color-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.pt-faq-icon { font-size: 0.8rem; color: var(--color-accent); transition: transform 0.3s ease; }
.pt-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.5rem; color: var(--color-text-gray); font-size: 0.9rem; line-height: 1.6; }
.pt-faq-answer-p { margin: 0 0 1.25rem 0; }

/* ── Plan Trip Page: Destination & TTD Picker ── */
.b-optional {
    font-size: 0.75rem;
    font-weight: 500;
    color: #999;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 0.2rem 0.6rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}
.b-section-desc {
    font-size: 0.92rem;
    color: #888;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Skeleton */
.b-picker-skeleton {
    height: 130px;
    border-radius: 12px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: b-shimmer 1.4s infinite;
}
@keyframes b-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Picker Tile */
.b-picker-tile {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 130px;
    cursor: pointer;
    border: 2.5px solid transparent;
    transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    background: #eee;
    user-select: none;
}
.b-picker-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.18);
}
.b-picker-tile.selected {
    border-color: #0F3D2E;
    box-shadow: 0 0 0 3px rgba(15, 61, 46, 0.18), 0 10px 30px rgba(15,61,46,0.12);
}
.b-picker-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.b-picker-tile:hover img { transform: scale(1.06); }
.b-picker-tile-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
    transition: background 0.25s ease;
}
.b-picker-tile.selected .b-picker-tile-overlay {
    background: linear-gradient(to top, rgba(15,61,46,0.75) 0%, rgba(15,61,46,0.2) 60%);
}
.b-picker-tile-name {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 0.6rem 0.8rem;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    z-index: 2;
}
.b-picker-check {
    position: absolute; top: 0.5rem; right: 0.5rem;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.b-picker-check::after {
    content: '';
    width: 6px; height: 10px;
    border-right: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.b-picker-tile.selected .b-picker-check {
    background: #0F3D2E;
    border-color: #0F3D2E;
    transform: scale(1.1);
}
.b-picker-tile.selected .b-picker-check::after { opacity: 1; }

/* Selection Count Badge */
.b-selection-count {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.82rem;
    color: #0F3D2E;
    font-weight: 600;
}
.b-selection-count span { font-weight: 800; }

/* Additional Plan Trip Pricing Card Hover & helpers */
.pt-pricing-card:hover {
    transform: translateY(-5px);
}
.pt-pricing-desc {
    color: var(--color-text-gray);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}
.pt-error-text {
    color: #c0392b !important;
    font-size: 0.9rem !important;
}