:root {
  /* Premium Color Palette - Luxury Travel Aesthetic */
  --primary-color: #c5a059;
  /* Luxury Gold */
  --primary-light: #d4b982;
  --primary-dark: #a88541;
  --primary-rgb: 197, 160, 89;
  --secondary-color: #1a2a3a;
  /* Midnight Navy */
  --secondary-light: #2c3e50;
  --secondary-dark: #0f171f;
  --secondary-rgb: 26, 42, 58;
  --bg-light: #ffffff;
  --bg-soft: #f8f9fa;
  --bg-dark: #f0f2f5;
  --text-main: #1a1a1a;
  --text-muted: #576574;
  --text-light: #ffffff;
  /* Typography */
  --font-main: 'Outfit', sans-serif;
  --font-accent: 'Playfair Display', serif;
  /* For a touch of elegance */
  /* Spacing & Borders */
  --section-spacing: 120px 0;
  --container-width: 1240px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-pill: 100px;
  /* Shadows & Transitions */
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 20px 60px rgba(26, 42, 58, 0.1);
  --transition-base: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Glows & Glassmorphism Helpers */
  --primary-glow: rgba(197, 160, 89, 0.4);
  --secondary-glow: rgba(26, 42, 58, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-blur: blur(20px);
}

.bg-gradient-black-to-transparent {
  background-image: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.btn-premium-outline {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px 40px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--text-light) !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  font-size: 0.8rem !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  text-decoration: none !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}
.btn-premium-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
  transition: left 0.5s ease;
  z-index: -1;
}
.btn-premium-outline:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--secondary-color) !important;
  border-color: rgba(255, 255, 255, 0.95) !important;
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3) !important;
}
.btn-premium-outline:hover::before {
  left: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-accent);
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 1.2;
}

section {
  padding: var(--section-spacing);
}

/* Premium Buttons - Enhanced */
.btn-premium {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px 40px !important;
  background: linear-gradient(135deg, var(--primary-color) 0%, #d4a855 100%) !important;
  color: var(--text-light) !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  font-size: 0.8rem !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.3) !important;
  backdrop-filter: blur(10px);
}

.btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4a855 0%, var(--primary-color) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn-premium::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-premium:hover::before {
  opacity: 1;
}

.btn-premium:hover::after {
  width: 300px;
  height: 300px;
  opacity: 0;
}

.btn-premium:hover {
  color: var(--text-light) !important;
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 12px 40px rgba(197, 160, 89, 0.5) !important;
}

.text-gold {
  color: var(--primary-color) !important;
}

.bg-midnight {
  background-color: var(--secondary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-gold {
  background-color: var(--primary-color) !important;
}

.text-midnight {
  color: var(--secondary-color) !important;
}

.text-teal-custom {
  color: #03a6a8 !important;
}

.bg-opacity-80 {
  --bs-bg-opacity: 0.8;
}

/* Improved Luxury Navbar */
.navbar {
  height: 100px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 0;
  z-index: 2000;
}

.navbar.scrolled {
  background-color: rgba(26, 42, 58, 0.98);
  /* midnight with hint of opacity */
  backdrop-filter: blur(15px);
  height: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.navbar-logo {
  height: 60px;
  width: auto;
  transition: var(--transition-base);
}

.navbar.scrolled .navbar-logo {
  height: 50px;
}

.navbar-brand-text {
  font-family: var(--font-accent);
  letter-spacing: 2px;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--text-light) !important;
  /* Ensure visibility on dark backgrounds */
}

.nav-link {
  font-family: var(--font-main);
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 15px;
  position: relative;
  transition: var(--transition-base);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: var(--transition-base);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 30px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

/* Mobile Toggler */
.navbar-toggler {
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* --- Footer Styles --- */
.footer-logo {
  max-height: 40px;
  width: auto;
  transition: var(--transition-base);
}

.social-links-premium a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 50%;
  color: var(--primary-color);
  transition: var(--transition-base);
  text-decoration: none;
}

.social-links-premium a:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color) !important;
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--primary-glow);
}

.concierge-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.concierge-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

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

.concierge-icon {
  color: var(--primary-color);
  margin-right: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 4px;
  /* Align with first line of text */
}

.concierge-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
  overflow: hidden;
}

.hero-slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.5s ease-in-out;
}

.hero-slider-item.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  color: var(--text-light);
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

/* Page Banner (Unified for all sub-pages) */
.page-banner {
  position: relative;
  padding-top: 180px;
  /* Space for fixed navbar */
  padding-bottom: 120px;
  margin-top: 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.473));
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-banner-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #03a6a8;
}

.page-banner-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.transition-hover {
  transition: var(--transition-smooth);
}

/* Luxury Card Component */
.luxury-card {
  background: var(--bg-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-base);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.luxury-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.luxury-card:hover h4,
.luxury-card:hover .text-dark {
  color: var(--text-light) !important;
}

.luxury-card:hover p.text-dark {
  opacity: 0.8 !important;
}

.luxury-card.text-center {
  align-items: center;
}

.luxury-card-icon-wrapper {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.luxury-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.luxury-card:hover .luxury-card-img-wrapper img {
  transform: scale(1.1);
}

.luxury-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius-sm);
}

.luxury-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.luxury-card-title {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.luxury-card-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  font-weight: 500;
}

.luxury-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.luxury-card-content .btn-premium {
  margin-top: auto;
  align-self: flex-start;
}

/* Home Page About Section V2 */
.home-about-v2 {
  overflow: hidden;
}

.about-image-premium .reveal-holder img {
  max-height: 450px;
  width: 100%;
  object-fit: cover;
}

.about-content-v2 .section-subtitle-v2 {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.about-content-v2 .section-subtitle-v2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.about-content-v2 .section-title-v2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.about-content-v2 .about-text-v2 {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.features-list-v2 .feature-item-v2 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.features-list-v2 .feature-icon-v2 {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  background: var(--primary-glow);
  color: var(--primary-color);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.features-list-v2 .feature-text-v2 h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.features-list-v2 .feature-text-v2 p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about-image-container-v2 .parallelogram {
  --p: 40px;
  /* control the shape */
  height: 450px;
  width: 100%;
  clip-path: polygon(var(--p) 0, 100% 0, calc(100% - var(--p)) 100%, 0 100%);
  overflow: hidden;
}

.about-image-container-v2 .parallelogram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-container-v2 .parallelogram:hover img {
  transform: scale(1.1);
}

/* Why Choose Us Section */
.why-choose-us-section .row {
  align-items: center;
}

.why-choose-us-content {
  padding-right: 30px;
}

.why-choose-us-card {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  /* Space between cards */
}

.why-choose-us-card:last-child {
  margin-bottom: 0;
}

.why-choose-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-us-card .icon-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
  /* Prevent shrinking */
  background-color: rgba(var(--primary-color-rgb), 0.1);
  /* Use primary color with transparency */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.why-choose-us-card .icon-wrapper img {
  width: 24px;
  /* Adjust SVG icon size */
  height: 24px;
  /* Adjust SVG icon size */
  stroke: var(--primary-color);
  /* Ensure SVG stroke color matches theme */
}

.why-choose-us-card .card-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.why-choose-us-card .card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Luxury Utility Classes */
.py-big {
  padding: 60px 0;
}

.pt-big {
  padding-top: 60px;
}

.pb-big {
  padding-bottom: 60px;
}

.mb-big {
  margin-bottom: 40px;
}

.luxury-image-wrapper {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-dark);
}

.luxury-image-wrapper img {
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.luxury-image-wrapper:hover img {
  transform: scale(1.05);
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

.brightness-0 {
  filter: brightness(0);
}

.invert {
  filter: invert(100%);
}

.brightness-0.invert {
  filter: brightness(0) invert(100%);
}

/* Tour Booking Form Positioning */
.tour-booking-card {
  transition: top 0.3s ease;
}

/* --- Website Enhancements (Batch 1) --- */
/* Trust Bar */
.trust-bar {
  background: #f8f9fa;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-logo {
  max-height: 40px;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.trust-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  color: white;
  transform: scale(1.1);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #25d366;
  border-radius: 50%;
  z-index: -1;
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
/* Journey Architecture (How It Works) */
.process-step {
  padding: 30px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  /* Teal Primary */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px var(--primary-glow);
}

.step-line {
  position: absolute;
  top: 55px;
  left: calc(50% + 25px);
  width: calc(100% - 50px);
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-glow));
  z-index: -1;
}

/* Response Guarantee Helper */
.response-note {
  font-family: "Outfit", sans-serif;
  color: var(--primary-color);
  font-weight: 600;
}

.featured-tours {
  background-color: var(--bg-soft);
}

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

.tour-item-featured {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: visible;
  text-decoration: none;
  display: block;
  height: 450px;
  transition: transform var(--transition-base);
}
.tour-item-featured:hover {
  transform: translateY(-10px);
}
.tour-item-featured:hover .tour-item-image img {
  transform: scale(1.05);
}
.tour-item-featured:hover .tour-item-content {
  box-shadow: var(--shadow-premium);
}

.tour-item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}
.tour-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.tour-item-content {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 50%;
  background-color: var(--secondary-color);
  color: var(--text-light);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition-base);
}
.tour-item-content h4 {
  font-family: var(--font-accent);
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.tour-item-content p {
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.tour-item-content .tour-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.tour-item-content .tour-link i {
  transition: transform 0.3s ease;
  display: inline-block;
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .featured-tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .featured-tours-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .tour-item-featured {
    height: 400px;
  }
  .tour-item-content {
    left: 5%;
    right: 5%;
  }
}
@media (max-width: 991px) {
  .social-links-premium {
    justify-content: center;
    margin-bottom: 2rem;
  }
  footer .col-lg-4,
  footer .col-lg-2,
  footer .col-lg-3 {
    text-align: center;
    margin-bottom: 2rem;
  }
  footer .d-inline-block.mb-4 {
    display: block !important;
  }
  .footer-logo {
    margin: 0 auto;
  }
  .concierge-item {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .concierge-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .about-image-container-v2 {
    margin-top: 40px;
  }
  .about-content-v2 .section-title-v2 {
    font-size: 2.2rem;
  }
  .about-image-container-v2 .parallelogram {
    height: 350px;
    --p: 30px;
  }
  .step-line {
    display: none;
  }
  .container-tour-cards {
    grid-template-columns: 1fr; /* Stack on tablet/mobile */
    gap: 50px;
    max-width: 100%;
  }
  .tour-image-container {
    height: 300px;
  }
  .tour-content-floating {
    width: 95%;
    margin: -50px auto 0;
    padding: 25px;
  }
  .offcanvas-body .navbar-nav {
    flex-direction: column;
    align-items: center; /* Center navigation items */
    width: 100%;
    margin-top: 50px; /* Space from top, as in old .navbar-collapse-right */
  }
  .offcanvas-body .nav-item {
    width: 100%;
    text-align: right; /* Align text to the right, as in old .navbar-collapse-right */
    margin-bottom: 15px; /* Add vertical spacing */
  }
  .offcanvas-body .ms-lg-4 {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: flex-end; /* Align button to the right */
    padding-right: 15px;
  }
  .offcanvas-body .btn-premium {
    width: auto; /* Adjust button width */
    min-width: 150px;
  }
}
@media (max-width: 992px) {
  .navbar {
    height: auto;
    padding: 10px 0;
    background-color: var(--secondary-color); /* Ensure solid background on mobile */
  }
  .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
  }
  section {
    padding: 60px 0;
  }
  .hero-section {
    min-height: 560px;
    height: auto;
  }
  .luxury-grid {
    gap: 15px;
  }
  .page-banner {
    padding: 80px 0;
    min-height: 300px;
  }
  .page-banner-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .display-4 {
    font-size: 2.2rem;
  }
  .container-premium {
    padding: 0 15px;
  }
}
/* No enhancements yet */
/* ============================================
   TOUR CARDS - ADVANCED (COMPACT GRID)
   ============================================ */
.container-tour-cards {
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.tour-card-advanced {
  position: relative;
  height: auto;
  margin-bottom: 0;
  perspective: 1000px;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}

.tour-image-container {
  position: relative;
  width: 100%;
  height: 320px; /* Reduced from 400px */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.tour-card-advanced:hover .tour-image-container {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.tour-card-advanced:hover .tour-image-container img {
  transform: scale(1.05);
}

/* Badge Positioned on Image */
.tour-badge-floating {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

/* Floating Content Box */
.tour-content-floating {
  position: relative;
  width: 92%; /* Slightly wider */
  margin: -60px auto 0; /* Less negative margin */
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  padding: 25px; /* Reduced from 30px */
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: all 0.4s ease;
  border-top: 3px solid var(--primary-color);
  border-left: none;
}

.tour-card-advanced:hover .tour-content-floating {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-title-large {
  font-family: var(--font-accent);
  font-size: 1.4rem; /* Reduced from 1.6rem */
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.2;
}

.tour-meta-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-items: center;
}

.tour-desc-short {
  color: var(--text-gray);
  margin-bottom: 20px;
  font-family: var(--font-main);
  line-height: 1.5;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Kept 3 lines but smaller font */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-premium {
  padding: 10px 25px !important; /* Smaller button */
  font-size: 0.75rem !important;
  width: 100%;
  text-align: center;
}

.hero-about-advanced {
  position: relative;
  padding: 180px 0 120px;
  background-color: var(--secondary-color);
  color: var(--text-light);
  overflow: hidden;
}

.hero-about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-about-title {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-about-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* Parallax Background */
.hero-about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.15;
  filter: grayscale(50%);
}

.story-section {
  padding: 100px 0;
}

.story-image-switcher {
  position: relative;
  height: 500px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.story-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  transform: scale(1.05);
}

.story-image.active {
  opacity: 1;
  transform: scale(1);
}

.story-content {
  padding-left: 50px;
}

.story-timeline-item {
  position: relative;
  padding: 20px 0 20px 40px;
  cursor: pointer;
  border-left: 2px solid var(--bg-dark);
}

.story-timeline-item::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bg-dark);
  border: 4px solid var(--bg-soft);
  transition: all 0.3s ease;
}

.story-timeline-item.active::before {
  background-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.story-year {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.story-milestone {
  font-weight: 500;
  color: var(--text-muted);
}

.story-timeline-item.active .story-year {
  color: var(--primary-color);
}

.values-section {
  padding: 100px 0;
  background-color: var(--bg-soft);
}

.value-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  height: 100%;
}

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

.value-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
}

.value-title {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.value-description {
  color: var(--text-muted);
  line-height: 1.6;
}

.choose-us-split {
  padding: 100px 0;
}

.split-image-content {
  position: relative;
  height: 100%;
  min-height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.split-image-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
}

.split-image-content .content-inner {
  position: relative;
  z-index: 2;
}

.split-image-content h3 {
  color: white;
  font-family: var(--font-accent);
  font-size: 2rem;
  margin-bottom: 15px;
}

.split-image-content p {
  opacity: 0.8;
}

.split-content-side {
  padding: 40px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-list-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 20px;
  margin-top: 5px;
}

.feature-list-content h5 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.feature-list-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

.stats-section-animated {
  padding: 80px 0;
  background-color: var(--secondary-color);
  color: var(--text-light);
}

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

.stat-number {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

.sustainable-section {
  padding: 100px 0;
  background-color: var(--bg-soft);
}

.sustainable-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.sustainable-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.sustainable-title {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.sustainable-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* General Purpose Animation Library */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.fade-in.is-visible {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-down.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zoom-in.is-visible {
  opacity: 1;
  transform: scale(1);
}
