@import url("fonts.css");

/* ==========================================================================
   HUNZA ADVENTURE TOURS - MODERN DESIGN SYSTEM & HOMEPAGE STYLES
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary: #0b3954;
  --primary-dark: #062335;
  --primary-light: #165b83;
  --secondary: #087e8b;
  --accent: #e56b55;
  --accent-hover: #d4543e;
  --gold: #d4af37;
  --gold-light: #f7e7a9;
  
  /* Neutrals & Dark Shades */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #0f172a;
  --bg-darker: #080d1a;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;

  /* Elevational Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 35px -5px rgba(0,0,0,0.15), 0 10px 10px -5px rgba(0,0,0,0.04);

  /* Border Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* Typography Helpers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(8, 126, 139, 0.08);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(229, 107, 85, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 107, 85, 0.45);
}

.btn-secondary {
  background: var(--primary);
  color: #ffffff;
}

.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-bar {
  background: var(--primary-dark);
  color: var(--text-light);
  font-size: 0.8125rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 0;
  min-width: 0;
  gap: 0.75rem 1.5rem;
}

.top-bar-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 0 0 auto;
  gap: 0.75rem 1.5rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 0;
  min-width: 0;
  gap: 0.75rem 1.25rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar-item i {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.top-bar-item strong {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.top-bar a.top-bar-item:hover {
  color: var(--gold-light);
}

.top-bar a.top-bar-item:hover strong {
  color: var(--gold-light);
}

.top-social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.top-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.top-social-links a:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

/* Mobile & Tablet Responsive Top Bar */
@media (max-width: 991px) {
  .top-bar {
    padding: 0.4rem 0;
    font-size: 0.775rem;
  }
  .top-bar .container {
    justify-content: center;
    text-align: center;
    gap: 0.35rem 0.85rem;
  }
  .top-bar-left, .top-bar-center, .top-bar-right {
    flex: initial;
    justify-content: center;
    text-align: center;
    gap: 0.35rem 0.85rem;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
  }
  .top-bar .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
  }
  .top-bar-left {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.75rem;
    width: 100%;
  }
  .top-bar-center {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.75rem;
    width: 100%;
  }
  .top-bar-right {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.75rem;
    width: 100%;
  }
  .top-bar-item {
    font-size: 0.75rem;
    gap: 0.35rem;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 0.3rem 0.4rem;
    font-size: 0.715rem;
  }
  .top-bar .container {
    gap: 0.2rem;
  }
  .top-bar-left {
    flex-direction: column;
    gap: 0.15rem;
  }
  .top-bar-center {
    flex-direction: column;
    gap: 0.15rem;
  }
  .top-bar-right {
    gap: 0.4rem;
  }
  .top-bar-item {
    font-size: 0.715rem;
    text-align: center;
    white-space: normal;
  }
  .top-bar-license {
    display: block;
    font-size: 0.7rem;
    opacity: 0.95;
  }
}

/* Main Navbar */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10050;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

body.menu-open .site-header {
  z-index: 10050;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-logo img {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: height 0.2s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  white-space: nowrap;
}

body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

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

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

@media (min-width: 992px) and (max-width: 1250px) {
  .nav-menu {
    gap: 0.05rem;
  }
  .nav-link {
    padding: 0.5rem 0.45rem;
    font-size: 0.82rem;
    gap: 0.2rem;
  }
}

.nav-link i.fa-chevron-down {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: var(--secondary);
  background: rgba(8, 126, 139, 0.05);
}

.nav-item.active > .nav-link,
.nav-link.active {
  color: var(--secondary) !important;
  background: rgba(8, 126, 139, 0.09) !important;
  font-weight: 700;
  box-shadow: inset 0 -2.5px 0 var(--secondary);
}

.nav-item:hover .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
}

.dropdown-item i {
  font-size: 0.8rem;
  color: var(--secondary);
  width: 16px;
}

.dropdown-item:hover,
.dropdown-item.active {
  background: rgba(8, 126, 139, 0.08);
  color: var(--secondary) !important;
  padding-left: 1.5rem;
  font-weight: 700;
}

/* Mega Menu Styles */
.dropdown-mega {
  min-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1.25rem;
  gap: 1.25rem;
  left: 0;
}

.nav-item:nth-child(7) .dropdown-mega {
  left: -80px;
}

.nav-item:nth-child(8) .dropdown-mega {
  left: -180px;
}

.dropdown-mega-3col {
  min-width: 780px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1.25rem;
  gap: 1.25rem;
  left: -120px;
}

.mega-col {
  display: flex;
  flex-direction: column;
}

.mega-col-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 0.5rem 0.5rem;
  border-bottom: 2px solid rgba(8, 126, 139, 0.15);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mega-feature-box {
  background: var(--bg-main, #f8fafc);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 8px;
  padding: 0.85rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted, #64748b);
}

.mega-feature-box strong {
  color: var(--primary, #0a192f);
  display: block;
  margin-bottom: 0.25rem;
}

.mega-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--secondary, #1e5c99);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  margin-top: 0.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.mega-view-all-btn:hover {
  background: rgba(8, 126, 139, 0.08);
  transform: translateX(3px);
}

/* Mobile Toggle & Drawer Components */
.mobile-toggle {
  display: none;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 1.2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-toggle:hover,
.mobile-toggle:focus {
  background: rgba(8, 126, 139, 0.1);
  color: var(--secondary);
  border-color: var(--secondary);
}

.mobile-nav-header {
  display: none;
}

.mobile-nav-footer {
  display: none;
}

.nav-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 25, 45, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.nav-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION & TOUR FINDER
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: #ffffff;
  overflow: hidden;
  padding: 4rem 0 3.5rem;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 35, 53, 0.35) 0%, rgba(6, 35, 53, 0.15) 50%, rgba(6, 35, 53, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 0;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.35rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 860px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75), 0 4px 28px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: var(--gold-light);
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

/* Interactive Tour Finder Widget - Centered & Transparent Glassmorphism */
.tour-finder-widget {
  background: rgba(6, 35, 53, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.75rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}

.finder-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1rem;
  align-items: flex-end;
}

.finder-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.finder-field .input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.finder-field .input-group i {
  position: absolute;
  left: 0.95rem;
  color: var(--primary);
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 2;
}

.finder-select, .finder-input {
  width: 100%;
  padding: 0.75rem 0.9rem 0.75rem 2.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.finder-select:focus, .finder-input:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(8, 126, 139, 0.3);
}

/* ==========================================================================
   TRUST & STATS COUNTER STRIP
   ========================================================================== */
.stats-strip {
  background: #ffffff;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(8, 126, 139, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: var(--radius-md);
}

.stat-info {
  text-align: left;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* ==========================================================================
   FEATURED TOURS & PACKAGES (CATEGORY TABS & CARDS)
   ========================================================================== */
.tours-section {
  padding: 5rem 0;
  background: var(--bg-main);
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.category-tab {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  background: #ffffff;
  color: var(--text-main);
  border: 1.5px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.category-tab:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.category-tab.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Featured Tours Carousel */
.tours-carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.tours-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 10px 4px 25px;
}

.tours-carousel-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.tours-carousel-track .tour-card {
  flex: 0 0 calc((100% - 3.5rem) / 3);
  min-width: 0;
  box-sizing: border-box;
}

.tours-carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  border: 1.5px solid var(--border-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.tours-carousel-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(1, 60, 116, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.tours-carousel-btn.prev {
  left: -24px;
}

.tours-carousel-btn.next {
  right: -24px;
}

.tours-carousel-btn:disabled,
.tours-carousel-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.tours-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.tours-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.tours-carousel-dot.active {
  width: 28px;
  border-radius: 20px;
  background: var(--secondary);
  box-shadow: 0 2px 8px rgba(8, 126, 139, 0.35);
}

.tours-carousel-cta {
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .tours-carousel-track .tour-card {
    flex: 0 0 calc((100% - 1.75rem) / 2);
  }
  .tours-carousel-btn.prev {
    left: -12px;
  }
  .tours-carousel-btn.next {
    right: -12px;
  }
}

@media (max-width: 640px) {
  .tours-carousel-track .tour-card {
    flex: 0 0 100%;
  }
  .tours-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .tours-carousel-btn.prev {
    left: -8px;
  }
  .tours-carousel-btn.next {
    right: -8px;
  }
}

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

.tour-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(8, 126, 139, 0.3);
}

.tour-card-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

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

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

.tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 57, 84, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tour-badge.featured {
  background: var(--accent);
}

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

.tour-meta-row {
  display: flex;
  gap: 1rem;
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.tour-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.tour-meta-item i {
  color: var(--secondary);
}

.tour-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.tour-title a:hover {
  color: var(--secondary);
}

.tour-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-highlights {
  list-style: none;
  margin-bottom: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-color);
}

.tour-highlights li {
  font-size: 0.825rem;
  color: var(--text-main);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tour-highlights li i {
  color: #10b981;
  font-size: 0.75rem;
}

.tour-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tour-price {
  display: flex;
  flex-direction: column;
}

.tour-price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.tour-price-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

/* ==========================================================================
   WHY CHOOSE US / VALUE PROPOSITION (RESPLENDENT TRAVEL STYLE)
   ========================================================================== */
.why-us-section {
  padding: 5.5rem 0;
  background: #ffffff;
  position: relative;
}

.why-us-intro {
  max-width: 860px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.why-us-intro .why-subtitle-lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: #013c74;
  letter-spacing: -0.01em;
  margin-top: 1.15rem;
  margin-bottom: 0.85rem;
}

.why-us-intro .why-subtitle-lead strong {
  background: linear-gradient(135deg, #013c74 0%, #087e8b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-us-intro .section-subtitle {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569;
  margin: 0.85rem auto;
  max-width: 820px;
}

.why-us-intro .why-subtitle-quote {
  font-size: 1.1rem;
  font-weight: 600;
  color: #996515;
  margin-top: 1.25rem;
  display: inline-block;
  padding: 0.45rem 1.35rem;
  background: rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.why-us-intro .why-subtitle-quote em {
  font-style: normal;
}

.why-resplendent-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left Column: Visual Banner with Interactive Play */
.why-visual-col {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 100%;
  min-height: 560px;
  background: #0b3954;
}

.why-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-visual-col:hover .why-visual-img {
  transform: scale(1.06);
}

.why-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 57, 84, 0.1) 0%, rgba(11, 57, 84, 0.5) 100%);
  pointer-events: none;
}

.why-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.6rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
  text-decoration: none;
}

.why-badge-seal {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  cursor: pointer;
}

.why-anniversary-logo {
  width: 175px;
  max-width: 85%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.55));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.why-badge-seal:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.why-badge-seal:hover .why-anniversary-logo {
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.7));
}

.why-play-btn i {
  margin-left: 4px; /* optical center */
  transition: var(--transition);
}

.why-play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  animation: playPulse 2.4s infinite cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

@keyframes playPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.why-play-btn:hover {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.1);
  color: var(--secondary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.why-visual-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(11, 57, 84, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.why-visual-badge-text {
  display: flex;
  flex-direction: column;
}

.why-visual-badge-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.why-visual-badge-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.15rem;
}

/* Right Column: Stacked Value Pillars */
.why-features-col {
  display: flex;
  flex-direction: column;
}

.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.35rem;
  padding: 1.35rem 0.85rem;
  border-bottom: 1px solid #edf2f7;
  transition: var(--transition);
  border-radius: var(--radius-md);
}

.why-feature-item:first-child {
  padding-top: 0.25rem;
}

.why-feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0.25rem;
}

.why-feature-item:hover {
  background: rgba(248, 250, 252, 0.9);
  transform: translateX(8px);
}

.why-feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fbf5e8;
  color: #b8860b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid rgba(184, 134, 11, 0.18);
  box-shadow: 0 2px 6px rgba(184, 134, 11, 0.08);
}

.why-feature-item:hover .why-feature-icon-box {
  background: #b8860b;
  color: #ffffff;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 6px 16px rgba(184, 134, 11, 0.3);
}

.why-feature-content {
  flex: 1;
}

.why-feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.why-feature-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Fallback for classic grid if used elsewhere */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.why-card {
  padding: 2rem 1.5rem;
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: rgba(8, 126, 139, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border-radius: var(--radius-lg);
}

.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.why-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   2026/2027 FIXED DEPARTURES & CARDS
   ========================================================================== */
/* ==========================================================================
   2026/2027 FIXED DEPARTURES & CARDS (2-CARDS PER ROW HATP THEME)
   ========================================================================== */
.departures-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #f1f6fa 0%, #e9f2f8 50%, #f4f8fb 100%);
  color: var(--navy-dark, #0b253a);
  position: relative;
}

.departures-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #013c74 0%, #d4af37 50%, #e05638 100%);
}

.departures-section .section-tag {
  background: rgba(1, 60, 116, 0.08);
  color: #013c74;
  border: 1px solid rgba(1, 60, 116, 0.15);
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.departures-section .section-tag i {
  color: #d4af37;
}

.departures-section .section-title {
  color: #013c74;
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.departures-section .section-subtitle {
  color: #5d7580;
  max-width: 760px;
  margin: 0.6rem auto 3rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* 2 Cards Per Row Grid */
.he-tour-cards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .he-tour-cards-list {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* Luxury 2-Column Tour Card */
.he-tour-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(1, 60, 116, 0.12);
  box-shadow: 0 10px 30px rgba(1, 60, 116, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: visible;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  position: relative;
}

.he-tour-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #013c74 0%, #087e8b 60%, #d4af37 100%);
  z-index: 5;
}

.he-tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(1, 60, 116, 0.14);
  border-color: rgba(212, 175, 55, 0.5);
}

/* Top Media: Photo Slider Gallery with Overlays */
.he-tour-gallery {
  position: relative;
  width: 100%;
  height: 280px;
  background: #011f3d;
  overflow: hidden;
  border-radius: 19px 19px 0 0;
}

.he-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.he-slide-img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gallery Gradient Overlay for Text Readability */
.he-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 31, 61, 0.4) 0%, rgba(1, 31, 61, 0.05) 45%, rgba(1, 31, 61, 0.92) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Gallery Top Badges */
.he-gallery-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  z-index: 3;
}

.he-badge-pill {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.he-badge-pill.cat-tour {
  background: #013c74;
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.he-badge-pill.fixed-tour {
  background: #e05638;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Floating Action Circle Buttons */
.he-btn-circle {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #013c74;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 3;
}

.he-btn-circle:hover {
  background: #013c74;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(1, 60, 116, 0.3);
}

.he-btn-circle.wishlist {
  top: 14px;
  right: 14px;
}

/* Slider Nav Arrows */
.he-slider-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(1, 60, 116, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  opacity: 0.85;
}

.he-slider-nav:hover {
  background: #d4af37;
  color: #011f3d;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

.he-slider-nav.prev {
  left: 10px;
}

.he-slider-nav.next {
  right: 10px;
}

/* Slider Dots - Positioned safely above bottom photo bar */
.he-slider-dots {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
  background: rgba(1, 31, 61, 0.7);
  padding: 3px 7px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.he-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}

.he-slider-dot.active {
  background: #d4af37;
  width: 14px;
  border-radius: 999px;
}

/* Floating Next Departures Strip on Photo */
.he-photo-overlay-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  z-index: 3;
}

.he-photo-dep-box {
  display: flex;
  flex-direction: column;
}

.he-photo-dep-title {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d4af37;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
}

.he-photo-dep-dates {
  font-size: 0.84rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}

.he-photo-price-box {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.he-photo-dur-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  background: rgba(1, 60, 116, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1px 7px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  margin-bottom: 3px;
  white-space: nowrap;
}

.he-photo-price-val {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  line-height: 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.he-photo-price-val span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

/* Middle: Tour Information */
.he-tour-content {
  padding: 1.5rem 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.he-tour-eyebrow {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e05638;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.he-tour-title {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 0.65rem;
}

.he-tour-title a {
  color: #013c74;
  text-decoration: none;
  transition: color 0.2s;
}

.he-tour-title a:hover {
  color: #e05638;
}

.he-tour-location {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 0.75rem;
  line-height: 1.45;
}

.he-tour-location i {
  color: #e05638;
  margin-top: 3px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Tour Metric Chips (Elevation, Difficulty, Group) */
.he-tour-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.he-chip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.he-chip-item i {
  font-size: 0.75rem;
}

.he-chip-item.alt {
  background: #eff6ff;
  color: #1e40af;
  border-color: #bfdbfe;
}

.he-chip-item.diff {
  background: #fffbeb;
  color: #b45309;
  border-color: #fde68a;
}

.he-chip-item.group {
  background: #f0fdf4;
  color: #166534;
  border-color: #bbf7d0;
}

/* Inclusions / Exclusions / Requirements Row */
.he-tour-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.he-meta-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.he-meta-pill.inc {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.he-meta-pill.exc {
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #fecdd3;
}

.he-meta-pill.req {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.he-meta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.he-meta-pill i.fa-circle-info {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* Tooltip on Hover */
.he-meta-pill .he-tooltip-content {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  background: #011f3d;
  color: #f8fafc;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(1, 31, 61, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-size: 0.82rem;
  line-height: 1.5;
  width: 290px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateY(6px);
  pointer-events: none;
  z-index: 999;
}

.he-meta-pill .he-tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 20px;
  border-width: 6px;
  border-style: solid;
  border-color: #011f3d transparent transparent transparent;
}

.he-meta-pill .he-tooltip-content strong {
  color: #d4af37;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
}

.he-meta-pill:hover .he-tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Bottom Action Bar: Buttons & Availability */
.he-tour-actions-bar {
  padding: 1.15rem 1.75rem;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.he-tour-btns-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

@media (max-width: 540px) {
  .he-tour-btns-row {
    grid-template-columns: 1fr;
  }
}

.he-btn-view {
  background: linear-gradient(135deg, #013c74 0%, #03529c 100%);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(1, 60, 116, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.he-btn-view:hover {
  background: linear-gradient(135deg, #012b54 0%, #013c74 100%);
  color: #d4af37;
  box-shadow: 0 8px 20px rgba(1, 60, 116, 0.35);
  transform: translateY(-2px);
}

.he-btn-private {
  background: #ffffff;
  color: #013c74;
  border: 1.5px solid #013c74;
  text-align: center;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.he-btn-private:hover {
  background: #013c74;
  color: #ffffff;
  border-color: #013c74;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(1, 60, 116, 0.2);
}

.he-btn-private i {
  color: #d4af37;
}

.he-btn-private:hover i {
  color: #ffffff;
}

/* Bottom Month Availability Line */
.he-tour-avail-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  padding-top: 0.4rem;
  border-top: 1px dashed #e2e8f0;
}

.he-avail-label {
  font-weight: 700;
  color: #013c74;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.he-avail-label i {
  color: #d4af37;
}

.he-months-track {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
}

.he-m-dim {
  color: #94a3b8;
  font-weight: 500;
  padding: 0.1rem 0.25rem;
}

.he-m-active {
  background: #013c74;
  color: #ffffff;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.74rem;
}

/* Table Wrapper for Toggle */
.departures-table-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
}

.departures-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 760px;
}

.departures-table th {
  background: #0b253a !important;
  padding: 1.15rem 1.25rem !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #ffffff !important;
  border-bottom: 3px solid #d4af37 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.departures-table td {
  padding: 1.15rem 1.25rem;
  font-size: 0.95rem;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}

.departures-table td strong {
  color: #0b253a;
  font-weight: 700;
}

.departures-table td a {
  color: #0b253a;
  text-decoration: none;
  transition: color 0.2s;
}

.departures-table td a:hover {
  color: var(--primary, #013c74);
}

.departures-table tr:hover td {
  background: #f1f5f9;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.status-guaranteed {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.3);
}

.status-filling {
  background: rgba(245, 158, 11, 0.15);
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.status-open {
  background: rgba(56, 189, 248, 0.25);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.status-closed {
  background: rgba(239, 68, 68, 0.25);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.4);
}

/* ==========================================================================
   DESTINATION SPOTLIGHT
   ========================================================================== */
.destinations-section {
  padding: 5.5rem 0;
  background: var(--bg-main, #f8fafc);
}

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

.dest-card {
  position: relative;
  height: 350px;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dest-card:first-child {
  grid-column: auto;
}

.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 35, 53, 0.15) 0%, rgba(6, 35, 53, 0.4) 40%, rgba(6, 35, 53, 0.94) 100%);
  z-index: 2;
  transition: background 0.4s ease;
}

.dest-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(1, 60, 116, 0.22);
  border-color: rgba(212, 175, 55, 0.4);
}

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

.dest-card:hover::after {
  background: linear-gradient(180deg, rgba(6, 35, 53, 0.1) 0%, rgba(6, 35, 53, 0.3) 30%, rgba(6, 35, 53, 0.96) 100%);
}

.dest-badge {
  position: relative;
  z-index: 3;
  margin-bottom: auto;
  align-self: flex-start;
  background: rgba(11, 57, 84, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full, 9999px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dest-content {
  position: relative;
  z-index: 3;
}

.dest-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

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

.dest-link-text {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light, #d4af37);
  transition: all 0.3s ease;
}

.dest-card:hover .dest-link-text {
  color: #ffffff;
  transform: translateX(4px);
}

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

@media (max-width: 640px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   TESTIMONIALS & REVIEWS (RESPLENDENT TRAVEL EDITORIAL STYLE)
   ========================================================================== */
.what-guests-say-section {
  padding: 6rem 0 4rem;
  background: linear-gradient(180deg, #061724 0%, #0a2235 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.what-guests-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 4.5rem;
  align-items: flex-start;
  margin-bottom: 3.5rem;
}

/* Left Column: Editorial Headline & Meta */
.what-guests-left {
  position: relative;
}

.what-guests-heading {
  font-family: Georgia, 'Plus Jakarta Sans', serif;
  font-size: 3.25rem;
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
  margin: 1rem 0 1.25rem;
  letter-spacing: -0.02em;
}

.what-guests-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.25rem;
}

.what-guests-rating-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.what-guests-rating-score {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.score-num {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  display: block;
}

.stars-row {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-top: 0.3rem;
  display: flex;
  gap: 0.15rem;
}

.what-guests-rating-label {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.75rem;
}

/* Right Column: Carousel Slide Showcase */
.what-guests-right {
  position: relative;
}

.guest-slider-container {
  position: relative;
  min-height: 360px;
  padding: 0 3.25rem;
}

.guest-slide {
  display: none;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.guest-slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.slider-nav-btn {
  position: absolute;
  top: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.slider-nav-btn.prev-btn {
  left: -0.5rem;
}

.slider-nav-btn.next-btn {
  right: -0.5rem;
}

.slider-nav-btn:hover {
  background: var(--gold);
  color: #081a28;
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.guest-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.guest-avatar-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.guest-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.3rem;
}

.guest-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.2rem;
  font-family: Georgia, 'Plus Jakarta Sans', serif;
}

.guest-location-tour {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guest-quote-body {
  position: relative;
  padding: 0.25rem 0;
}

.quote-mark {
  font-size: 1.65rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
  user-select: none;
  display: inline-block;
}

.quote-open {
  margin-bottom: 0.6rem;
  display: block;
}

.quote-close {
  text-align: right;
  margin-top: 0.6rem;
  display: block;
}

.guest-review-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  margin: 0;
}

.guest-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

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

.slider-dot.active {
  width: 26px;
  border-radius: 10px;
  background: var(--gold);
}

.what-guests-btn-wrap {
  text-align: center;
  margin-top: 2rem;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  border: 2px solid var(--gold);
  background: rgba(212, 175, 55, 0.08);
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #081a28;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

/* Trust & Review Badges Bottom Strip */
.guests-trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.25rem;
  width: 100%;
}

.trust-strip-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  font-family: Georgia, 'Plus Jakarta Sans', serif;
  letter-spacing: 0.3px;
  text-align: center;
  width: 100%;
}

.trust-strip-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  width: 100%;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.5rem;
  font-size: 0.925rem;
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.trust-badge-pill:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Fallback card styles for other pages */
.testimonials-section {
  padding: 5rem 0;
  background: #ffffff;
}

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

.testi-card {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.testi-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

.testi-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ACCREDITATIONS, LICENSES & PAYMENT TRUST BAR
   ========================================================================== */
.affiliations-section {
  padding: 4rem 0;
  background: var(--bg-main, #f8fafc);
  border-top: 1px solid var(--border-color, #e2e8f0);
  border-bottom: 1px solid var(--border-color, #e2e8f0);
}

.trust-dual-grid {
  display: grid;
  grid-template-columns: 1.15fr 1px 1.05fr;
  align-items: stretch;
  gap: 3rem;
}

.trust-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trust-licenses-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-licenses-col .trust-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.trust-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light, #bb832a);
  margin-bottom: 0.4rem;
}

.trust-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary, #0a192f);
  line-height: 1.4;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.trust-divider {
  width: 1px;
  background: var(--border-color, #e2e8f0);
  height: 100%;
}

/* Licenses Track - Centered & Large Fitted Logos */
.logos-slider-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  width: 100%;
}

.logo-item {
  background: #ffffff;
  border: 1.5px solid var(--border-color, #e2e8f0);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  min-height: 72px;
  min-width: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.logo-item:hover {
  border-color: var(--secondary, #087e8b);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(8, 126, 139, 0.15);
}

.logo-item img {
  height: 52px;
  width: auto;
  max-width: 135px;
  object-fit: contain;
  filter: none;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  opacity: 1;
  transform: scale(1.06);
}

/* Payment Methods Track */
.payments-badges-track {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.payment-method-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #ffffff;
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.payment-method-card:hover {
  border-color: #bb832a;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.payment-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(187, 131, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #bb832a;
  flex-shrink: 0;
  gap: 0.25rem;
}

.payment-card-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 0.15rem;
}

.payment-card-info span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted, #64748b);
  line-height: 1.35;
}

.payment-card-info code {
  background: rgba(187, 131, 42, 0.12);
  color: #8c6019;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.76rem;
}

.payment-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #bb832a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.payment-details-btn:hover {
  color: #0a192f;
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .trust-dual-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .trust-divider {
    width: 100%;
    height: 1px;
    margin: 0.5rem 0;
  }
  .logos-slider-track {
    justify-content: center;
  }
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-darker);
  color: var(--text-light);
  padding: 4.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1.65fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--secondary);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 0.25rem;
}

/* Footer TripAdvisor Award Badge */
.footer-award-wrap {
  margin-top: 1.25rem;
}

.footer-award-wrap a {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.footer-award-wrap a:hover {
  transform: translateY(-3px) scale(1.03);
}

.footer-award-img {
  max-height: 88px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

/* Footer Social Media Connect Section */
.footer-social-wrap {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-social-title i {
  color: var(--gold);
  font-size: 0.75rem;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.footer-social-btn.fb:hover { background: #1877f2; border-color: #1877f2; }
.footer-social-btn.insta:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-color: transparent; }
.footer-social-btn.yt:hover { background: #ff0000; border-color: #ff0000; }
.footer-social-btn.tw:hover { background: #000000; border-color: rgba(255, 255, 255, 0.5); }
.footer-social-btn.pin:hover { background: #bd081c; border-color: #bd081c; }
.footer-social-btn.tt:hover { background: #000000; border-color: #25f4ee; box-shadow: 0 0 10px rgba(37, 244, 238, 0.5); }

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

/* ==========================================================================
   FLOATING WIDGETS & MODALS
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 990;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.whatsapp:hover {
  transform: scale(1.1);
  background: #20ba5a;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.float-btn.back-to-top {
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
}

.float-btn.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.float-btn.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--primary-dark);
}

/* Custom Inquiry Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 35, 53, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #ffffff;
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-close:hover {
  color: var(--primary);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(8, 126, 139, 0.15);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS & MOBILE NAVIGATION DRAWER
   ========================================================================== */
@media (max-width: 1200px) and (min-width: 1025px) {
  .nav-menu {
    gap: 0.15rem;
  }
  .nav-link {
    padding: 0.55rem 0.65rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .mobile-toggle {
    display: inline-flex;
  }
  
  /* Mobile Off-Canvas Drawer Navigation */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -360px;
    width: 320px;
    max-width: 86vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff !important;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    z-index: 10055;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-overflow-scrolling: touch;
  }
  
  .nav-menu.active {
    right: 0 !important;
  }
  
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    background: #f8fafc;
    position: sticky;
    top: 0;
    z-index: 5;
  }
  
  .mobile-nav-brand img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
  }
  
  .mobile-nav-close {
    background: transparent;
    border: none;
    font-size: 1.35rem;
    color: var(--primary);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  
  .mobile-nav-close:hover {
    background: rgba(8, 126, 139, 0.1);
    color: var(--secondary);
  }
  
  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0.95rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    border-radius: 0;
  }
  
  .nav-link i.fa-chevron-down {
    font-size: 0.75rem;
    color: var(--secondary);
    transition: transform 0.25s ease;
  }
  
  .nav-item.open > .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
  }
  
  /* Accordion Dropdowns on Mobile & Tablet */
  .dropdown-menu,
  .dropdown-mega,
  .dropdown-mega-3col {
    position: static !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    box-shadow: none !important;
    border: none !important;
    background: #f1f5f9 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 0.5rem 0.85rem 0.85rem !important;
    gap: 0.35rem !important;
    left: auto !important;
    right: auto !important;
  }
  
  .nav-item.open > .dropdown-menu,
  .nav-item.open > .dropdown-mega,
  .nav-item.open > .dropdown-mega-3col {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .mega-col {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .mega-col-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--secondary);
    padding: 0.4rem 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid rgba(8, 126, 139, 0.2);
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.86rem;
    color: var(--text-main);
    border-radius: 6px;
    font-weight: 500;
    min-height: 40px;
    transition: background 0.2s, color 0.2s;
  }
  
  .dropdown-item:hover,
  .dropdown-item.active {
    background: rgba(8, 126, 139, 0.12);
    color: var(--secondary) !important;
    font-weight: 700;
    padding-left: 0.85rem;
  }
  
  .mega-feature-box {
    font-size: 0.8rem;
    line-height: 1.45;
    padding: 0.75rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin: 0.5rem 0;
  }
  
  .mega-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    background: rgba(8, 126, 139, 0.12);
    color: var(--secondary);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.82rem;
    margin-top: 0.35rem;
    width: 100%;
    text-align: center;
  }
  
  .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.25rem;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
  }
  
  .mobile-nav-footer .btn {
    width: 100%;
    justify-content: center;
  }
  
  .btn-whatsapp-mobile {
    background: #25d366 !important;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border: none;
    text-decoration: none;
  }
  
  .btn-whatsapp-mobile:hover {
    background: #1ebc59 !important;
    color: #ffffff !important;
  }
  
  .tours-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid, .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-resplendent-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-visual-col {
    min-height: 420px;
    max-height: 460px;
  }
  .what-guests-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .what-guests-heading {
    font-size: 2.75rem;
  }
  .dest-card:first-child {
    grid-column: span 2;
  }
  .finder-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .finder-form button[type="submit"] {
    grid-column: span 2;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .brand-logo img {
    height: 42px;
  }
  .hero-section {
    padding: 3rem 0 2.5rem;
    min-height: auto;
  }
  .hero-title {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
    line-height: 1.2;
  }
  .hero-desc {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .tour-finder-widget {
    padding: 1.25rem 1rem;
  }
  .finder-form {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .finder-form button[type="submit"] {
    grid-column: span 1;
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .tours-grid, .why-grid, .destinations-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .why-resplendent-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .why-visual-col {
    min-height: 300px;
    max-height: 350px;
  }
  .why-feature-item {
    padding: 1rem 0.5rem;
    gap: 0.85rem;
  }
  .what-guests-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .what-guests-heading {
    font-size: 2rem;
  }
  .guest-slider-container {
    padding: 0;
  }
  .slider-nav-btn {
    display: none;
  }
  .dest-card:first-child {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 480px) {
  .brand-logo img {
    height: 38px;
  }
  .nav-cta-btn {
    padding: 0.4rem 0.65rem;
    font-size: 0.78rem;
  }
  .nav-cta-btn span {
    display: inline;
  }
  .mobile-toggle {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
  }
}

/* ==========================================================================
   GLOBAL INQUIRY MODAL & FORM STYLES
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 35, 53, 0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.96);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--primary);
  color: #ffffff;
}

.modal-tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(224, 86, 36, 0.1);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(224, 86, 36, 0.2);
}

.modal-form .form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.modal-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.modal-form .form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--text-dark);
  transition: var(--transition);
}

.modal-form .form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(224, 86, 36, 0.15);
}

/* ==========================================================================
   SCHEDULE / FIXED DEPARTURES TABLE STYLES
   ========================================================================== */
.table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.departures-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}

.departures-table th {
  background: var(--bg-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1.1rem 1.25rem;
  border-bottom: 2px solid var(--border-color);
}

.departures-table td {
  padding: 1.2rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.925rem;
  color: var(--text-dark);
  vertical-align: middle;
}

.departures-table tr:hover td {
  background: rgba(244, 246, 248, 0.6);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-guaranteed {
  background: rgba(39, 174, 96, 0.12);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.25);
}

.status-fast {
  background: rgba(230, 126, 34, 0.12);
  color: #e67e22;
  border: 1px solid rgba(230, 126, 34, 0.25);
}

.status-open {
  background: rgba(52, 152, 219, 0.12);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.25);
}

/* ==========================================================================
   YOUTUBE SHORTS VIDEO TESTIMONIALS (BOUT INDIA STYLE)
   ========================================================================== */
.video-testimonials-section {
  padding: 5.5rem 0;
  background: #ffffff;
  position: relative;
}

.shorts-carousel-container {
  position: relative;
  margin-top: 2.5rem;
  padding: 0 1rem;
}

.shorts-carousel-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 0.5rem 1.75rem;
}

.shorts-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.shorts-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.short-card {
  flex: 0 0 280px;
  max-width: 280px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.short-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  border-color: rgba(220, 38, 38, 0.3);
}

.short-video-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  background: #0b1924;
  overflow: hidden;
}

.short-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.short-card-info {
  padding: 1rem 1.15rem 1.15rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.short-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #dc2626;
}

.short-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark, #0b253a);
  line-height: 1.35;
  margin: 0;
}

.shorts-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy-dark, #0b253a);
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.shorts-nav-btn:hover {
  background: #dc2626;
  color: #ffffff;
  border-color: #dc2626;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
  transform: translateY(-50%) scale(1.08);
}

.shorts-nav-btn.prev {
  left: -15px;
}

.shorts-nav-btn.next {
  right: -15px;
}

.shorts-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.shorts-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shorts-dot.active {
  background: #dc2626;
  width: 26px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .short-card {
    flex: 0 0 240px;
    max-width: 240px;
  }
  .short-video-wrap {
    height: 420px;
  }
  .shorts-nav-btn {
    display: none;
  }
}

/* ==========================================================================
   HEAR FROM OUR HAPPY TRAVELLERS (BOUTINDIA VIDEO REVIEWS STYLE)
   ========================================================================== */
.happy-travellers-section {
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
  position: relative;
  overflow: hidden;
}

.happy-travellers-section .section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.travellers-carousel-container {
  position: relative;
  margin: 0 -0.5rem;
  padding: 0.5rem;
}

.travellers-carousel-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0.25rem 1.5rem;
}

.travellers-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.travellers-carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.traveller-card {
  flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
  max-width: calc((100% - 3 * 1.25rem) / 4);
  min-width: calc((100% - 3 * 1.25rem) / 4);
  height: 440px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(6, 35, 53, 0.12);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  background: #0f172a;
  box-sizing: border-box;
}

.traveller-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(1, 60, 116, 0.22);
}

.traveller-card-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.traveller-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.traveller-card:hover .traveller-photo {
  transform: scale(1.1);
}

/* Subtle default overlay; darkens smoothly on hover */
.traveller-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(5, 15, 26, 0.75) 100%);
  transition: all 0.4s ease;
  pointer-events: none;
}

.traveller-card:hover .traveller-photo-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(5, 15, 26, 0.55) 45%, rgba(5, 15, 26, 0.95) 100%);
}

/* Center Play Button */
.traveller-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.92);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7), 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: playPulse 2.4s infinite cubic-bezier(0.66, 0, 0, 1);
  z-index: 3;
  padding-left: 4px;
}

.traveller-card:hover .traveller-play-btn {
  background: #dc2626;
  transform: translate(-50%, -50%) scale(1.18);
  box-shadow: 0 0 0 12px rgba(220, 38, 38, 0.35), 0 14px 35px rgba(0, 0, 0, 0.6);
}

@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

/* Hover Details (Revealed smoothly on mouse over) */
.traveller-hover-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.35rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform: translateY(22px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* On hover, slide up into crystal clear view */
.traveller-card:hover .traveller-hover-details {
  transform: translateY(0);
  opacity: 1;
}

.traveller-card.video-only-card .traveller-play-btn {
  width: 72px;
  height: 72px;
  font-size: 1.65rem;
}

.traveller-card.video-only-card:hover .traveller-photo-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.traveller-hover-tour {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(212, 175, 55, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: #fce79a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.traveller-hover-tour i {
  color: #d4af37;
  font-size: 0.7rem;
}

.traveller-hover-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0.15rem 0 0;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.traveller-hover-country {
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.traveller-hover-country i {
  color: #38bdf8;
  font-size: 0.78rem;
}

/* Nav Buttons */
.travellers-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy-dark, #0b253a);
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.travellers-nav-btn:hover {
  background: var(--primary, #013c74);
  color: #ffffff;
  border-color: var(--primary, #013c74);
  box-shadow: 0 6px 20px rgba(1, 60, 116, 0.3);
  transform: translateY(-50%) scale(1.08);
}

.travellers-nav-btn.prev {
  left: -18px;
}

.travellers-nav-btn.next {
  right: -18px;
}

.travellers-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.travellers-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.travellers-dot.active {
  background: var(--primary, #013c74);
  width: 26px;
  border-radius: 5px;
}

@media (max-width: 1200px) {
  .traveller-card {
    flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
    max-width: calc((100% - 2 * 1.25rem) / 3);
    min-width: calc((100% - 2 * 1.25rem) / 3);
    height: 420px;
  }
}

@media (max-width: 991px) {
  .traveller-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
    max-width: calc((100% - 1.25rem) / 2);
    min-width: calc((100% - 1.25rem) / 2);
    height: 400px;
  }
}

@media (max-width: 640px) {
  .traveller-card {
    flex: 0 0 85%;
    max-width: 85%;
    min-width: 85%;
    height: 380px;
  }
  .traveller-hover-details {
    transform: translateY(0);
    opacity: 1;
  }
  .travellers-nav-btn {
    display: none;
  }
}

/* ==========================================================================
   VIDEO STORY LIGHTBOX MODAL (#videoModal)
   ========================================================================== */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 26, 0.88);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.video-modal-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  background: #0f172a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-overlay.active .video-modal-container {
  transform: scale(1) translateY(0);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.35rem;
  background: #0b1325;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-title {
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.video-modal-title i {
  color: #ef4444;
}

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

.video-modal-close:hover {
  background: #ef4444;
  color: #ffffff;
  transform: rotate(90deg);
}

.video-modal-body {
  position: relative;
  width: 100%;
  background: #000000;
}

.video-responsive-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-responsive-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Upcoming Festival & Important Message Notice Box
   ========================================================================== */
.festival-notice-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: #e8f4fd;
  border-left: 4px solid #1a82e2;
  border-radius: 6px;
  padding: 14px 20px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(26, 130, 226, 0.08);
  transition: all 0.3s ease;
}

.festival-notice-box.is-hidden {
  display: none !important;
}

.festival-notice-content {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: #1e3a5f;
  line-height: 1.5;
  flex: 1;
}

.festival-notice-icon {
  font-size: 1.15rem;
  color: #1a82e2;
  flex-shrink: 0;
}

.festival-notice-text {
  color: #1e3a5f;
}

.festival-notice-text strong {
  color: #0c4a6e;
  font-weight: 700;
}

.festival-notice-link {
  color: #0284c7;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s ease;
}

.festival-notice-link:hover {
  color: #0369a1;
  text-decoration: underline;
}

.festival-notice-close {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.festival-notice-close:hover {
  color: #0f172a;
  background-color: rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .festival-notice-box {
    padding: 12px 14px;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .festival-notice-content {
    font-size: 0.875rem;
  }
  .festival-notice-icon {
    margin-top: 2px;
  }
}

/* ==========================================================================
   Bout India Inspired "Checkout our Latest Blogs" Section
   ========================================================================== */
.home-latest-blogs-section {
  background-color: #0b151f;
  color: #ffffff;
  padding: 6rem 0 6.5rem;
  position: relative;
  overflow: hidden;
}

.home-latest-blogs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.home-blogs-tag {
  display: inline-block;
  color: #fbd38d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.home-blogs-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.home-blogs-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto 3.5rem;
  line-height: 1.65;
}

.home-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-bottom: 3.5rem;
}

.home-blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.home-blog-card:hover {
  transform: translateY(-6px);
}

/* Layer A: Image Box */
.home-blog-media {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 12px;
  background: #06111c;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.home-blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.home-blog-card:hover .home-blog-img {
  transform: scale(1.06);
}

/* Date Badge on Image */
.home-blog-date-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(11, 21, 31, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  text-align: center;
  color: #ffffff;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.home-blog-date-badge .badge-month {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fbd38d;
  line-height: 1.1;
}

.home-blog-date-badge .badge-day {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

/* Layer B: Overlapping Content Block */
.home-blog-content {
  background: #ffffff;
  margin: -110px 1.25rem 0 1.25rem;
  position: relative;
  z-index: 3;
  padding: 1.75rem 1.65rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-blog-card:hover .home-blog-content {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
  border-color: #cbd5e1;
}

.home-blog-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
  font-size: 0.76rem;
}

.home-blog-cat {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary, #087e8b);
}

.home-blog-readtime {
  color: #94a3b8;
  font-weight: 600;
}

.home-blog-card-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.home-blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.home-blog-card:hover .home-blog-card-title {
  color: var(--secondary, #087e8b);
}

.home-blog-card-excerpt {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.home-blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary, #087e8b);
  text-decoration: none;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
  transition: gap 0.2s ease, color 0.2s ease;
}

.home-blog-read-btn:hover {
  color: var(--primary, #0a192f);
  gap: 0.65rem;
}

/* ==========================================================================
   EXPLORE TOUR GALLERY (Bout India Inspired Section & Lightbox)
   ========================================================================== */
.home-tour-gallery-section {
  padding: 5.5rem 0 6rem;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.home-gallery-header {
  margin-bottom: 2.75rem;
}

.home-gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.home-gallery-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 2.65rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.home-gallery-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Gallery Carousel / Multi-Column Grid Container */
.home-gallery-carousel-wrapper {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.home-gallery-track-container {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding: 0.5rem 0.25rem 1.25rem;
  width: 100%;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y pinch-zoom;
  will-change: scroll-position;
}

.home-gallery-track-container.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto !important;
}

.home-gallery-track-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.home-gallery-grid-track {
  display: grid;
  grid-template-rows: repeat(2, 220px);
  grid-auto-flow: column;
  grid-auto-columns: 285px;
  gap: 1.25rem;
  width: max-content;
}

/* Gallery Item Card */
.tour-gallery-item {
  position: relative;
  width: 285px;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  background: #06111c;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}

.tour-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.tour-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-gallery-item:hover .tour-gallery-img {
  transform: scale(1.09);
}

/* Overlay & Caption */
.tour-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(5, 15, 26, 0.88) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.15rem;
  z-index: 2;
  pointer-events: none;
}

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

.tour-gallery-zoom-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.tour-gallery-item:hover .tour-gallery-zoom-icon {
  transform: scale(1);
}

.tour-gallery-sub {
  color: #fbd38d;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.tour-gallery-caption {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Side Navigation Arrows (Bout India Bronze/Gold Pill Style) */
.home-gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b08968, #8c6239);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 6px 20px rgba(140, 98, 57, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-gallery-nav-btn:hover {
  background: linear-gradient(135deg, #c79d7b, #a07245);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(140, 98, 57, 0.55);
}

.home-gallery-nav-btn.prev {
  left: -0.5rem;
}

.home-gallery-nav-btn.next {
  right: -0.5rem;
}

/* Pagination Dots Indicator (OOOO Effect) */
.home-gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.85rem;
  width: 100%;
}

.home-gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.home-gallery-dot:hover {
  background: #94a3b8;
  transform: scale(1.2);
}

.home-gallery-dot.active {
  background: linear-gradient(135deg, #b08968, #8c6239);
  width: 32px;
  border-radius: 9999px;
  box-shadow: 0 3px 10px rgba(140, 98, 57, 0.4);
}

/* ==========================================================================
   INTERACTIVE LIGHTBOX MODAL (#galleryLightboxModal)
   ========================================================================== */
.gallery-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 22, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

.gallery-lightbox-wrapper {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-lightbox-img-box {
  position: relative;
  max-width: 100%;
  max-height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.12);
  background: #000000;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  transition: opacity 0.25s ease;
}

.gallery-lightbox-footer {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  padding: 0 0.5rem;
}

.gallery-lightbox-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.gallery-lightbox-sub {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fbd38d;
}

.gallery-lightbox-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0;
}

.gallery-lightbox-counter {
  font-size: 0.85rem;
  font-weight: 700;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

/* Lightbox Nav Buttons */
.gallery-lightbox-close {
  position: absolute;
  top: -3.25rem;
  right: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-lightbox-close:hover {
  background: #ef4444;
  transform: rotate(90deg);
}

.gallery-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.gallery-lightbox-arrow:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-50%) scale(1.12);
}

.gallery-lightbox-arrow.prev {
  left: -4rem;
}

.gallery-lightbox-arrow.next {
  right: -4rem;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .home-gallery-grid-track {
    grid-template-rows: repeat(2, 210px);
    grid-auto-columns: calc((100% - 2 * 1.25rem) / 3);
  }
  .gallery-lightbox-arrow.prev {
    left: 0.5rem;
  }
  .gallery-lightbox-arrow.next {
    right: 0.5rem;
  }
}

@media (max-width: 768px) {
  .home-tour-gallery-section {
    padding: 4rem 0 4.5rem;
  }
  .home-gallery-title {
    font-size: 2.1rem;
  }
  .home-gallery-grid-track {
    grid-template-rows: repeat(2, 185px);
    grid-auto-columns: calc((100% - 1rem) / 2);
    gap: 0.85rem;
  }
  .home-gallery-nav-btn {
    display: none;
  }
  .tour-gallery-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(5, 15, 26, 0.85) 100%);
    padding: 0.85rem;
  }
  .tour-gallery-caption {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .home-gallery-grid-track {
    grid-template-rows: repeat(2, 175px);
    grid-auto-columns: 78%;
    gap: 0.75rem;
  }
}

/* Itinerary Day Badge with Location Icon */
.itinerary-day-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--primary, #013C74);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.itinerary-day-badge::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  font-size: 0.72rem;
  display: inline-block;
  opacity: 0.95;
}

.itinerary-item.active .itinerary-day-badge {
  background: var(--secondary, #c19a6b);
}






