/*
=========================================
QNest Holidays - Tourvia UI/UX Rebuilt CSS
=========================================
Primary Color: Deep Backwater Green (#0C73EB)
Accent Color: Warm Gold (#0C73EB)
Background Color: Soft Sand (#F3F8FC)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --color-primary: #0C73EB;
  --color-primary-dark: #081C36;
  --color-primary-light: #3D91F2;
  --color-accent: #0C73EB;
  --color-accent-hover: #0a5ebf;
  --color-bg-sand: #F3F8FC;
  --color-bg-light: #FFFFFF;
  --color-bg-card: #FFFFFF;
  --color-text-dark: #000000;
  --color-text-muted: #333333;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-gold: rgba(12, 115, 235, 0.25);
  --color-white: #FFFFFF;

  --font-header: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;

  --shadow-sm: 0 4px 20px rgba(12, 115, 235, 0.03);
  --shadow-md: 0 10px 30px rgba(12, 115, 235, 0.05);
  --shadow-lg: 0 25px 60px rgba(12, 115, 235, 0.08);
  --shadow-float: 0 30px 60px rgba(8, 28, 54, 0.12);

  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  
  --max-width: 1200px;
  --header-height: 80px;
}

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

html, body {
  width: 100%;
  overflow-x: hidden; /* Force prevent horizontal scroll globally */
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-sand);
  color: var(--color-text-dark);
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-sand);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-text-dark);
}

h1 {
  font-size: clamp(2.2rem, 8vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  letter-spacing: -0.5px;
  font-weight: 600;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600;
}

p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

span.subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--color-text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

span.subtitle::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: var(--color-accent);
}

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

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

/* Background Watermark styling */
.watermark-bg {
  position: absolute;
  font-family: var(--font-header);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -2px;
  max-width: 100%; /* Limit text bounds horizontally */
  overflow: hidden; /* Restrict screen stretching */
  white-space: nowrap;
}

/* Common Layout Elements */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(3rem, 5vh, 5rem) 0;
  position: relative;
  overflow: hidden; /* Bulletproof clip for any absolute watermark elements extending off-screen */
  box-sizing: border-box;
}

section > .container {
  width: 100%;
}

/* 
=========================================
Scroll-Driven Animation System (Premium)
=========================================
Note: .fade-in-section is a trigger class and does not fade the parent itself to avoid layout shift.
*/

/* Animate main grid containers and headings inside container */
.fade-in-section .container > * {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-in-section.is-visible .container > * {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for container direct descendants */
.fade-in-section.is-visible .container > *:nth-child(1) {
  transition-delay: 0.1s;
}
.fade-in-section.is-visible .container > *:nth-child(2) {
  transition-delay: 0.3s;
}
.fade-in-section.is-visible .container > *:nth-child(3) {
  transition-delay: 0.45s;
}

/* Cards & Grid Items internal stagger reveals */
.fade-in-section .dest-card,
.fade-in-section .package-card,
.fade-in-section .blog-card,
.fade-in-section .faq-item,
.fade-in-section .why-us-item {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-in-section.is-visible .dest-slide-card,
.fade-in-section.is-visible .blog-card,
.fade-in-section.is-visible .faq-item,
.fade-in-section.is-visible .why-us-item {
  opacity: 1;
  transform: translateY(0);
}

/* Delaying layout items for clean sweep scroll entry */
.fade-in-section.is-visible .dest-slider-container .dest-slide-card:nth-child(1),
.fade-in-section.is-visible .blogs-grid .blog-card:nth-child(1) {
  transition-delay: 0.25s;
}

.fade-in-section.is-visible .dest-slider-container .dest-slide-card:nth-child(2),
.fade-in-section.is-visible .blogs-grid .blog-card:nth-child(2) {
  transition-delay: 0.4s;
}

.fade-in-section.is-visible .dest-slider-container .dest-slide-card:nth-child(3),
.fade-in-section.is-visible .blogs-grid .blog-card:nth-child(3) {
  transition-delay: 0.55s;
}

/* FAQ item reveal sequence */
.fade-in-section.is-visible .faq-item:nth-child(1) { transition-delay: 0.1s; }
.fade-in-section.is-visible .faq-item:nth-child(2) { transition-delay: 0.2s; }
.fade-in-section.is-visible .faq-item:nth-child(3) { transition-delay: 0.3s; }
.fade-in-section.is-visible .faq-item:nth-child(4) { transition-delay: 0.4s; }
.fade-in-section.is-visible .faq-item:nth-child(5) { transition-delay: 0.5s; }

/* Why Choose Us feature lines */
.fade-in-section.is-visible .why-us-item:nth-child(1) { transition-delay: 0.25s; }
.fade-in-section.is-visible .why-us-item:nth-child(2) { transition-delay: 0.4s; }
.fade-in-section.is-visible .why-us-item:nth-child(3) { transition-delay: 0.55s; }

/* Pill Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  white-space: nowrap;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-bg-sand);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(12, 115, 235, 0.25);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn-outline-dark:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Round icon next to buttons (Tourvia Style) */
.btn-arrow-icon {
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.btn:hover .btn-arrow-icon {
  background-color: rgba(255, 255, 255, 0.4);
}

.btn-primary .btn-arrow-icon {
  background-color: rgba(248, 245, 239, 0.15);
}

.btn-primary:hover .btn-arrow-icon {
  background-color: rgba(248, 245, 239, 0.3);
}

.btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px); /* Interactive visual push on hover */
}

/* 1. Floating Capsule Navigation (Fixed always from the start) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 110px;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1.5rem 0 1rem;
}

.header .container {
  height: 100%;
}

.header-inner {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  height: 85px;
  padding: 0.5rem 0;
  background-color: rgba(243, 248, 252, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(12, 115, 235, 0.08);
  box-shadow: var(--shadow-md);
}

.header.scrolled .header-inner {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.logo {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.5px;
}

.logo::after {
  content: '.';
  color: var(--color-accent);
  display: inline-block;
  transition: transform var(--transition-fast);
}

.logo:hover::after {
  transform: scale(1.3);
}

.header.scrolled .logo {
  color: var(--color-primary);
}

/* Capsule Menu Container */
.nav-menu {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 0.35rem 0.5rem;
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
}

.header.scrolled .nav-menu {
  border-color: rgba(12, 115, 235, 0.1);
  background-color: rgba(12, 115, 235, 0.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-header);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  display: inline-block;
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  background-color: var(--color-white);
  color: var(--color-primary-dark) !important;
}

.header.scrolled .nav-link {
  color: var(--color-text-muted);
}

.header.scrolled .nav-link:hover {
  color: var(--color-primary);
  background-color: rgba(12, 115, 235, 0.05);
}

.header.scrolled .nav-link.active {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
}

/* High-Visibility Eye-Catching CTA Button */
.header-cta .btn-outline {
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.45rem 0.5rem 0.45rem 1.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-family: var(--font-header);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(12, 115, 235, 0.4);
  transition: all var(--transition-normal);
}

.btn-arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--color-white);
  color: var(--color-primary);
  border-radius: 50%;
  margin-left: 0.75rem;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.btn-arrow-circle svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.header-cta .btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.header-cta .btn-outline:hover .btn-arrow-circle {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: rotate(45deg);
}

/* Scrolled State */
.header.scrolled .header-cta .btn-outline {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 6px 22px rgba(12, 115, 235, 0.35);
}

.header.scrolled .header-cta .btn-outline .btn-arrow-circle {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.header.scrolled .header-cta .btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  box-shadow: 0 10px 28px rgba(8, 28, 54, 0.15);
  transform: translateY(-2px) scale(1.03);
}

.header.scrolled .header-cta .btn-outline:hover .btn-arrow-circle {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: rotate(45deg);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001; /* Stay on top of mobile menu */
}

.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-white);
  margin-bottom: 4px;
  transition: all var(--transition-normal);
}

.mobile-nav-toggle span:last-child {
  margin-bottom: 0;
}

.header.scrolled .mobile-nav-toggle span {
  background-color: var(--color-primary);
}

/* Hamburger open state color fix (Visible over dark green menu drawer) */
.mobile-nav-toggle.open span {
  background-color: var(--color-white) !important;
}

.mobile-nav-toggle.open span:first-child {
  transform: rotate(45deg) translate(4px, 4px);
}
.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open span:last-child {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* 2. Hero Section */
.hero {
  height: 100vh;
  min-height: 750px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-white);
  padding: 0;
  background-color: var(--color-primary-dark);
  overflow: hidden;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(8, 28, 54, 0.25) 0%, rgba(8, 28, 54, 0.7) 100%);
  z-index: 2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .watermark-bg {
  top: 15%;
  left: 5%;
  opacity: 0;
  animation: heroWatermarkReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-main-content {
  max-width: 800px;
  margin-top: 4rem;
  margin-bottom: 3rem;
}

.hero h1 {
  color: var(--color-white);
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: 900;
  line-height: 1.08;
  opacity: 0;
  transform: translateY(40px);
  animation: heroTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero span.subtitle {
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bottom-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: flex-end;
  gap: 5rem;
}

.hero-desc p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(25px);
  animation: heroTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.hero-desc-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Hero Tag Pill & CTA buttons */
.hero-tag-pill {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  margin-bottom: 1.8rem;
  display: inline-flex;
}

.hero-tag-pill span {
  color: var(--color-white) !important;
}

.hero-tag-pill svg {
  color: rgba(255, 255, 255, 0.6) !important;
}

.btn-hero-cta {
  background-color: var(--color-white) !important;
  color: var(--color-primary-dark) !important;
  padding: 0.4rem 0.5rem 0.4rem 1.8rem !important;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-hero-cta .btn-arrow-circle {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.75rem;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.btn-hero-cta:hover {
  background-color: var(--color-accent) !important;
  color: var(--color-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(12, 115, 235, 0.25);
}

.btn-hero-cta:hover .btn-arrow-circle {
  background-color: var(--color-white) !important;
  color: var(--color-primary) !important;
  transform: rotate(45deg);
}

/* Keyframes for page-load reveals */
@keyframes heroTextReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroWatermarkReveal {
  to {
    opacity: 0.04;
  }
}

/* 3. About Section ("Who We Are") */
.about {
  background-color: var(--color-bg-light);
}

.about-header-text {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 1.5rem;
}

.about-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(12, 115, 235, 0.15);
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.about-tag-pill span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--color-text-dark);
}

.about-tag-pill svg {
  color: var(--color-primary);
  width: 12px;
  height: 12px;
}

.about-header-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.btn-about-cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.4rem 0.5rem 0.4rem 1.8rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-family: var(--font-header);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-about-cta .btn-arrow-circle {
  background-color: var(--color-accent);
  color: var(--color-white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.75rem;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.btn-about-cta:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(12, 115, 235, 0.25);
}

.btn-about-cta:hover .btn-arrow-circle {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: rotate(45deg);
}

/* Stats Bar Row under Heading */
.about-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 1.75rem 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.5rem;
  text-align: center;
  align-items: center;
}

.about-stat-item h3 {
  font-family: var(--font-header);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.15rem;
  line-height: 1.1;
}

.about-stat-item span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Asymmetrical photo stat collage */
.about-grid-collage {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2.2rem;
  align-items: stretch;
}

.about-collage-card-v2 {
  background-color: #EBF3FA; /* Ice blue-green soft tint matching Kerala theme */
  border-radius: 24px;
  padding: 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.about-collage-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about-collage-card-v2.right-card {
  flex-direction: column-reverse;
}

.collage-stat-block h3 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.collage-stat-block h3 span {
  color: var(--color-accent);
}

.collage-stat-block p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: none;
  letter-spacing: normal;
}

.collage-img-block {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 16px;
  overflow: hidden;
}

.about-collage-card-v2.left-card .collage-img-block {
  margin-top: 1rem;
}

.about-collage-card-v2.right-card .collage-img-block {
  margin-bottom: 1rem;
}

.collage-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-collage-card-v2:hover .collage-img-block img {
  transform: scale(1.04);
}

/* Center main landscape photo */
.about-collage-img-v2 {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 250px;
}

.about-collage-img-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-collage-img-v2:hover img {
  transform: scale(1.03);
}

/* 4. Popular Destination Section - Arif Castles Design Reference */
.destinations, .hotels {
  background-color: #f3f8fc !important;
  background-image: none !important;
  color: #000000 !important;
  padding: clamp(2.5rem, 4vh, 4rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dest-bg-blur-layer {
  display: none !important; /* Disable dark blur backdrop */
}

.dest-relative-container {
  position: relative;
  z-index: 2;
}

.dest-logo-wrapper {
  margin-bottom: 2rem;
}

.dest-logo {
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.4) !important;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.dest-header-centered {
  margin-bottom: 3rem;
}

.dest-header-centered h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #000000 !important;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.dest-subtitle-tagline {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(0, 0, 0, 0.7) !important;
  margin-top: 0.25rem;
}

/* Pill Navbar with dynamic sliding backdrop */
.dest-pill-nav {
  position: relative;
  display: inline-flex;
  background-color: rgba(0, 0, 0, 0.04) !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 50px;
  padding: 0.2rem;
  margin-bottom: 3rem;
  align-items: center;
  z-index: 1;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.dest-pill-nav::-webkit-scrollbar {
  display: none;
}

/* Sub-Hotel Selector Pills (Shows hotels available in the active destination) */
.sub-hotel-nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -1.75rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
  width: 100%;
}

.sub-hotel-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.sub-hotel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(7, 23, 44, 0.05);
  border: 1px solid rgba(7, 23, 44, 0.15);
  color: #475569;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.sub-hotel-btn:hover {
  background: rgba(7, 23, 44, 0.12);
  color: #07172C;
  border-color: rgba(7, 23, 44, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sub-hotel-btn.active {
  background: #07172C;
  border-color: #07172C;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(7, 23, 44, 0.25);
}

.sub-hotel-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: currentColor;
  opacity: 0.85;
}

.sub-hotel-btn.active .sub-hotel-icon {
  stroke: #D4AF37;
  opacity: 1;
}

@media (max-width: 768px) {
  .sub-hotel-nav-wrapper {
    margin-top: -1.25rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sub-hotel-nav-wrapper::-webkit-scrollbar {
    display: none;
  }
  
  .sub-hotel-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  .sub-hotel-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
  }
}

.dest-pill-nav-backdrop {
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  height: calc(100% - 0.4rem);
  background-color: #07172C !important;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: left 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1; /* Behind button labels */
}

.dest-pill-btn {
  position: relative;
  background: transparent !important;
  border: none;
  color: rgba(0, 0, 0, 0.65) !important;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2; /* In front of backdrop */
  flex-shrink: 0;
}

.dest-pill-btn:hover {
  color: #000000 !important;
}

.dest-pill-btn.active {
  color: #FFFFFF !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Slider/Cards Grid - Desktop absolute transitions */
.dest-slider-container {
  position: relative;
  height: 520px; /* Reduced height to fit section in viewport */
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 0.5rem; /* Reduced bottom margin to compensate for height padding */
  display: block; /* Disable flex layout */
  overflow: hidden; /* Clip off-screen transition buffer cards */
}

.dest-slide-card {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08); /* Soft border for light background */
  transition: none !important;
  will-change: left, width, height, top, transform, opacity, box-shadow;
  cursor: pointer;
}

.dest-slide-card.left-slide,
.dest-slide-card.right-slide,
.dest-slide-card.side-slide {
  opacity: 0.7;
  transform: scale(0.95); /* Inactive side card scale */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important; /* Soft shadow */
}

.dest-slide-card.hidden-left {
  left: -30%;
  top: 40px;
  width: 26%;
  height: 350px;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.dest-slide-card.left-slide {
  left: 5%;
  top: 40px;
  width: 26%;
  height: 350px;
  z-index: 5;
}

.dest-slide-card.center-slide {
  left: 34%;
  top: 5px;
  width: 32%;
  height: 430px;
  opacity: 1;
  transform: scale(1.05); /* Active center card scale */
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 25px 60px rgba(12, 115, 235, 0.25), 0 12px 30px rgba(0, 0, 0, 0.18) !important; /* Pronounced shadow with blue soft glow */
  z-index: 10;
  cursor: default;
}

.dest-slide-card.right-slide {
  left: 69%;
  top: 40px;
  width: 26%;
  height: 350px;
  z-index: 5;
}

.dest-slide-card.hidden-right {
  left: 105%;
  top: 40px;
  width: 26%;
  height: 350px;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: none !important; /* Teleport immediately */
}

.dest-slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: none !important;
}

/* 5-Star Hotel Image Mockup Placeholder Styles */
.hotel-image-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0e2038 0%, #050d18 100%);
  padding: 2.5rem 1.5rem;
  box-sizing: border-box;
  text-align: center;
  z-index: 2;
}

.hotel-image-placeholder .placeholder-icon {
  color: #cda869;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-image-placeholder .placeholder-icon svg {
  width: 44px;
  height: 44px;
}

.hotel-image-placeholder .placeholder-text {
  font-family: var(--font-header);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  letter-spacing: 0.5px;
}

.hotel-image-placeholder .placeholder-specs {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  line-height: 1.4;
}

.hotel-card-badge {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: #cda869;
  margin-bottom: 0.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

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

/* Alternating Content based on active state position */
.slide-card-content {
  position: absolute;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 5;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  transition: none !important;
  opacity: 1;
}

.slide-card-content.text-faded {
  opacity: 0; /* Cross-fade helper */
}

.dest-slide-card.left-slide .slide-card-content,
.dest-slide-card.right-slide .slide-card-content,
.dest-slide-card.hidden-left .slide-card-content,
.dest-slide-card.hidden-right .slide-card-content {
  top: 0;
  bottom: auto !important;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%) !important;
  text-align: left !important;
}

.dest-slide-card.center-slide .slide-card-content {
  bottom: 0;
  top: auto !important;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%) !important;
  text-align: center !important;
}

/* Destination Tab Switching Animations (Coastline, Adventure, Waterfall) */
.dest-slide-card.card-switching {
  opacity: 0 !important;
  transform: scale(0.9) translateY(15px) !important;
  transition: opacity 0.14s ease-in, transform 0.14s ease-in !important;
}

.dest-slide-card.card-entering {
  animation: destCardPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dest-slide-card.left-slide.card-entering {
  animation-delay: 0ms;
}

.dest-slide-card.center-slide.card-entering {
  animation-delay: 50ms;
}

.dest-slide-card.right-slide.card-entering {
  animation-delay: 100ms;
}

.dest-slide-card.hidden-right.card-entering {
  animation-delay: 150ms;
}

@keyframes destCardPop {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(30px);
  }
  60% {
    opacity: 1;
    transform: scale(1.02) translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.slide-card-content h3 {
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 0.15rem;
}

.slide-card-content p {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Footer Info */
.dest-footer-info {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.4) !important;
  margin-top: 2rem;
}

/* View All Destination CTA placeholder (Clean override) */
.btn-dest-view-all {
  display: none !important;
}

/* 5. Why Choose Us Section */
.why-us {
  background-color: var(--color-bg-light);
}

.why-us-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 750px;
  margin: 0 auto;
}

.why-us-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
}

.why-us-image-inner {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-us-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us-floating-review {
  position: absolute;
  bottom: 2rem;
  left: -2.5rem;
  background-color: var(--color-bg-card);
  padding: 1.8rem;
  border-radius: 16px;
  max-width: 320px;
  box-shadow: var(--shadow-float);
  border: 1px solid var(--color-border);
  z-index: 5;
  transition: transform var(--transition-normal);
}

.why-us-image-wrapper:hover .why-us-floating-review {
  transform: translateY(-5px);
}

.why-us-stars {
  color: var(--color-accent);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.why-us-floating-review blockquote {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.why-us-client-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.why-us-client-name {
  font-family: var(--font-header);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us-client-location {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* Right Feature checklist items */
.why-us-content h2 {
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.why-us-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: var(--color-accent);
  color: var(--color-bg-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.why-us-item:hover .why-us-icon-wrapper {
  transform: scale(1.1);
  background-color: var(--color-primary);
}

.why-us-icon-wrapper svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
}

.why-us-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.why-us-item p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* 6. Bespoke Custom Journey Showcase */
.packages {
  background-color: var(--color-bg-sand);
}

.packages-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.packages .section-header {
  margin: 0;
}

.custom-journey-showcase {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  background-color: var(--color-bg-card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.custom-journey-showcase:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.showcase-img-col {
  position: relative;
  height: 100%;
  min-height: 350px;
  overflow: hidden;
}

.showcase-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.custom-journey-showcase:hover .showcase-img-col img {
  transform: scale(1.03);
}

.showcase-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background-color: var(--color-primary-dark);
  color: var(--color-accent);
  font-family: var(--font-header);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.showcase-content-col {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-tag {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: none;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.custom-journey-showcase h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.showcase-content-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

.customization-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.customization-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.customization-features li svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  stroke-width: 3;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  margin-top: 0;
}

.customization-features li strong {
  display: block;
  font-family: var(--font-header);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
}

.customization-features li span {
  display: none !important;
}

.showcase-cta {
  margin-top: auto;
}

/* 7. Experiences Banner Section */
.experience-banner {
  background-color: var(--color-bg-light);
}

.experience-banner .section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2.5rem;
}

.exp-banner-wrapper {
  position: relative;
  aspect-ratio: 16 / 6.5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.exp-banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.exp-banner-wrapper:hover img {
  transform: scale(1.02);
}

.exp-banner-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 28, 54, 0.15);
  z-index: 1;
}

/* Overlapping white highlights card */
.exp-banner-float-card {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  background-color: var(--color-bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 380px;
  box-shadow: var(--shadow-float);
  border: 1px solid var(--color-border);
  z-index: 3;
  transition: transform var(--transition-normal);
}

.exp-banner-wrapper:hover .exp-banner-float-card {
  transform: translateY(-4px);
}


.exp-banner-float-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.exp-banner-float-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* 8. Testimonials Section (Split layout) */
.testimonials {
  background-color: var(--color-bg-sand);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.testimonials-quotes-col {
  padding-right: 1.5rem;
  position: relative;
}

.testimonials-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.testimonials-header-row .section-header {
  margin: 0;
}

.testimonials-score-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.testimonials-score-val {
  font-family: var(--font-header);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

/* Carousel Quote layout container */
.testimonial-carousel {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.testimonial-slide blockquote {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary);
  margin-bottom: 2rem;
  border-left: 3px solid var(--color-accent);
  padding-left: 1.5rem;
}

.testimonial-slide .client-name {
  font-family: var(--font-header);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: none;
  letter-spacing: normal;
}

.testimonial-slide .client-location {
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* Quote slider arrows */
.carousel-controls {
  display: flex;
  gap: 0.75rem;
}

.carousel-nav-btn {
  width: 44px;
  height: 44px;
  background-color: var(--color-bg-card);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.carousel-nav-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.carousel-nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* Right test landscape photo box */
.testimonials-photo-col {
  aspect-ratio: 16 / 12;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-slow);
}

.testimonials-photo-col:hover {
  transform: scale(1.02);
}

.testimonials-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 9. Video Play Callout Banner */
.play-banner {
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  padding: 0;
  background-color: var(--color-primary-dark);
  overflow: hidden;
}

.play-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.play-banner-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 28, 54, 0.45);
  z-index: 2;
}

.play-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.play-banner .watermark-bg {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 16vw, 15rem);
  white-space: nowrap;
}

.play-banner-btn {
  width: 80px;
  height: 80px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  margin: 0 auto 1.5rem;
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.play-banner-btn:hover {
  transform: scale(1.08);
  background-color: var(--color-accent);
  color: var(--color-white);
}

.play-banner-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.play-banner h3 {
  color: var(--color-white);
  font-family: var(--font-header);
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 1.25rem;
}

/* 10. Blogs Section */
.blogs {
  background-color: var(--color-bg-light);
}

.blogs-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.blogs .section-header {
  margin: 0;
}

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

.blog-card {
  background: none;
  border: none;
  box-shadow: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

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

.blog-img-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px;
}

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

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.03);
}

.blog-content {
  padding: 1.5rem 0 0;
}

.blog-tag {
  display: inline-block;
  background-color: #EBF3FA;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  text-transform: none;
  letter-spacing: 0.5px;
}

.blog-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text-dark);
  margin-top: 0.5rem;
}

/* 11. Inquiry Form Section */
.inquiry {
  background-color: var(--color-bg-sand);
}

.inquiry-container {
  max-width: 1100px;
  margin: 0 auto;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background-color: var(--color-bg-card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.inquiry-image-col {
  position: relative;
  overflow: hidden;
  background-color: #07172C;
}

.inquiry-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.form-wrapper {
  background-color: var(--color-bg-card);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.inquiry-grid .form-wrapper {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  padding: 3.5rem 4rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: none;
  letter-spacing: normal;
}

.form-input, .form-select, .form-textarea {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  font-size: 1rem; /* Prevents iOS auto-zoom */
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(12, 115, 235, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
}

.checkbox-input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

/* Modal Popup Success Window */
.form-success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 28, 54, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.success-modal {
  background-color: var(--color-bg-card);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-float);
  border: 1px solid var(--color-border);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

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

.success-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(12, 115, 235, 0.08);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.success-modal h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.success-modal p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* 12. FAQ Section Accordion styling */
.faq {
  background-color: var(--color-bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-accent-hover);
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  border-color: var(--color-accent);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-question-btn h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  background-color: var(--color-bg-light);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-normal), background-color var(--transition-fast);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background-color: var(--color-primary);
  color: var(--color-white);
}

.faq-chevron svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-content {
  padding: 0 2rem 1.8rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* 13. Footer */
.footer {
  position: relative;
  background-color: var(--color-primary-dark);
  color: rgba(248, 245, 239, 0.7);
  padding: 6rem 0 3rem;
  overflow: hidden;
}

.footer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.footer-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer .container {
  position: relative;
  z-index: 3;
}

.footer .watermark-bg {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(10rem, 25vw, 25rem);
  opacity: 0.03;
}

/* Top Horizontal Contact Line */
.footer-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border: none;
  padding-bottom: 0;
  margin-bottom: 5rem;
  font-family: var(--font-header);
  font-size: clamp(1.4rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05); /* Soft transparent backdrop text */
  letter-spacing: -0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
}

/* Core Footer grid matching layout columns */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 5rem;
  margin-bottom: 4.5rem;
  align-items: flex-start;
}

.footer-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.footer-links-col:last-child {
  text-align: right;
}

.footer-links-col:last-child .footer-links {
  align-items: flex-end;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  font-family: var(--font-header);
  font-size: 0.9rem;
  color: rgba(248, 245, 239, 0.65);
  font-weight: 600;
}

.footer-link:hover {
  color: var(--color-accent);
}

/* Center brand heading and CTA */
.footer-center-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-center-brand h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600; /* Clean light heading matching new casing style */
  color: var(--color-white);
  margin-bottom: 2rem;
  line-height: 1.1;
}

/* White footer button with green badge arrow */
.btn-footer-cta {
  background-color: var(--color-white) !important;
  color: var(--color-primary-dark) !important;
  border: 1px solid var(--color-white) !important;
  padding: 0.4rem 0.5rem 0.4rem 1.5rem !important;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-family: var(--font-header);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-footer-cta .btn-arrow-circle {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
}

.btn-footer-cta:hover {
  background-color: var(--color-accent) !important;
  color: var(--color-white) !important;
  border-color: var(--color-accent) !important;
  transform: translateY(-2px);
}

.btn-footer-cta:hover .btn-arrow-circle {
  background-color: var(--color-white) !important;
  color: var(--color-primary) !important;
}

/* Bottom copyright info */
.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(248, 245, 239, 0.4);
}

.footer-bottom-row p {
  color: inherit;
  font-size: inherit;
}

.footer-bottom-row a:hover {
  color: var(--color-accent);
}

/* Mobile Nav Drawer styles */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 28, 54, 0.45);
  backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

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

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background-color: var(--color-primary-dark);
  z-index: 999;
  transform: translateX(100%);
  visibility: hidden; /* Fix horizontal overflow stretching */
  transition: transform var(--transition-normal), visibility var(--transition-normal);
  padding: 6rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(8, 28, 54, 0.2);
}

.mobile-nav-drawer.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav-drawer .nav-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: auto;
}

.mobile-nav-drawer .nav-link {
  font-size: 1.2rem;
  font-family: var(--font-header);
  color: rgba(248, 245, 239, 0.9);
}

.mobile-nav-drawer .btn {
  width: 100%;
}

/* ==========================================
   Responsive Media Queries & Visual Fixes
   ========================================== */

@media (max-width: 992px) {
  /* Prevent Header Links Clashing on Tablet/Mobile */
  .nav-menu {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  
  /* Floating header spacing adjustment when scrolled */
  .header {
    height: 90px;
    padding: 1rem 0;
  }
  .header.scrolled {
    height: 80px;
    padding: 0.5rem 0;
  }
  .header.scrolled .header-inner {
    padding: 0 1.5rem;
  }

  .about-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.25rem 1rem;
    margin-bottom: 2rem;
    border-radius: 16px;
  }
  .about-stat-item h3 {
    font-size: 1.8rem;
  }
  .about-stat-item span {
    font-size: 0.8rem;
  }

  /* Asymmetric About Collage Stack - Slider Cover Flow on Mobile */
  .about-grid-collage {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 1.5rem 12.5% 2.5rem !important; /* Centers the active card, reduced padding */
    align-items: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .about-grid-collage::-webkit-scrollbar {
    display: none;
  }
  
  .about-collage-card-v2,
  .about-collage-img-v2 {
    flex: 0 0 75% !important;
    width: 75% !important;
    scroll-snap-align: center;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
    opacity: 0.5;
    transform: scale(0.88);
    height: 310px !important; /* Equal heights for perfect visual alignment */
  }
  
  .about-collage-card-v2 {
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .about-collage-img-v2 {
    border-radius: 20px;
    min-height: auto;
  }

  .about-collage-card-v2.left-card .collage-img-block {
    margin-top: 1rem;
    flex-grow: 1;
    height: 0;
    aspect-ratio: auto;
  }
  .about-collage-card-v2.right-card .collage-img-block {
    margin-bottom: 1rem;
    flex-grow: 1;
    height: 0;
    aspect-ratio: auto;
  }

  /* Active Slide Scaling */
  .about-grid-collage .about-collage-card-v2.active-slide,
  .about-grid-collage .about-collage-img-v2.active-slide {
    opacity: 1;
    transform: scale(1.04);
  }
  
  .collage-stat-block h3 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  
  .collage-stat-block p {
    font-size: 0.8rem;
    line-height: 1.2;
  }
  
  .collage-img-block {
    border-radius: 12px;
  }

  @media (max-width: 576px) {
    .about-grid-collage {
      padding: 1rem 12.5% 2rem !important;
    }
    .about-collage-card-v2,
    .about-collage-img-v2 {
      height: 260px !important; /* Slightly shorter on smaller phones */
    }
    .about-collage-card-v2 {
      padding: 1.2rem 1rem;
    }
    .collage-stat-block h3 {
      font-size: 1.6rem;
    }
    .collage-stat-block p {
      font-size: 0.7rem;
    }
  }

  /* Floating Review Card Overlay Positioning */
  .why-us-floating-review {
    left: 5%;
    right: 5%;
    bottom: -2rem;
    max-width: 90%;
    margin: 0 auto;
  }

  /* Testimonial & Why Choose Us Grid Stacking */
  /* Why Choose Us Layout */
  .why-us-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem;
  }

  /* Grid Adjustments */
  .packages-header-row {
    margin-bottom: 2rem !important;
  }
  .custom-journey-showcase {
    grid-template-columns: 1fr;
  }
  .showcase-img-col {
    min-height: 250px;
  }
  .showcase-content-col {
    padding: 1.5rem;
  }
  .customization-features {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .customization-features li:nth-child(3) {
    grid-column: auto !important;
  }
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  /* Footer Layout Shift */
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .footer-links-col:last-child {
    text-align: left;
  }
  .footer-links-col:last-child .footer-links {
    align-items: flex-start;
  }
}

@media (max-width: 992px) {
  section {
    min-height: auto;
    padding: 3rem 0;
  }
  .inquiry-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-image-col {
    height: 250px;
  }
  .inquiry-grid .form-wrapper {
    padding: 3rem 2rem !important;
    border-radius: 0 !important;
  }
}

@media (max-width: 768px) {

  /* Hero bottom grid stacking */
  .hero-bottom-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-desc-row {
    justify-content: center;
  }

  /* Title headers alignment */
  .destinations-header-row, .packages-header-row, .blogs-header-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .section-header {
    text-align: center;
  }

  /* Stacking all cards to full list on Mobile */
  .blogs-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
  }

  /* Destinations Mobile overrides moved to root-level media queries at the end of file */

  /* Form & Success modal spacing overrides (Ultra-Compact Mobile Layout) */
  .inquiry {
    padding: 2.5rem 0 !important;
  }
  .inquiry-grid {
    grid-template-columns: 1fr !important;
  }
  .inquiry-image-col {
    height: 220px !important;
  }
  .inquiry-grid .form-wrapper {
    padding: 2rem 1.25rem !important;
    border-radius: 0 !important;
  }
  .form-wrapper {
    padding: 1.25rem 1.15rem !important;
    border-radius: 18px !important;
  }
  .inquiry-header {
    margin-bottom: 0.85rem !important;
  }
  .inquiry-header .subtitle {
    font-size: 0.72rem !important;
    margin-bottom: 0.2rem !important;
  }
  .inquiry-header h2 {
    font-size: 1.25rem !important;
    margin-bottom: 0.2rem !important;
    line-height: 1.25 !important;
  }
  .inquiry-header p {
    font-size: 0.78rem !important;
    line-height: 1.3 !important;
    margin-top: 0.2rem !important;
  }
  .form-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem 0.65rem !important;
  }
  .form-group {
    gap: 0.2rem !important;
  }
  .form-group.full-width {
    grid-column: span 2 !important;
  }
  .form-label {
    font-size: 0.72rem !important;
    font-weight: 600 !important;
  }
  .form-input, .form-select {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.82rem !important;
    border-radius: 10px !important;
    height: 38px !important;
  }
  .form-textarea {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.82rem !important;
    border-radius: 10px !important;
    min-height: 54px !important;
    height: 54px !important;
  }
  .form-group.full-width .btn-primary {
    padding: 0.6rem 1rem !important;
    font-size: 0.82rem !important;
    border-radius: 50px !important;
  }
  .checkbox-group-container {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Exp Banner aspect ratio & shadow adjustment */
  .exp-banner-wrapper {
    aspect-ratio: auto;
    overflow: visible;
    box-shadow: none;
    background: transparent;
  }
  .exp-banner-wrapper img {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
  }
  .exp-banner-wrapper::after {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }
  .exp-banner-float-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 2rem);
    max-width: 100%;
    margin: -3.5rem auto 0 auto;
    background-color: var(--color-bg-card);
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 16px 36px -4px rgba(8, 28, 54, 0.14), 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-border);
    z-index: 3;
  }

  /* Footer contact tag alignments */
  .footer-contact-row {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }
  .footer-contact-row span {
    display: none;
  }

  /* Clean, redesigned Footer for Mobile */
  .footer-main-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3.5rem 1rem !important;
    text-align: center !important;
    margin-bottom: 3.5rem !important;
  }

  .footer-center-brand {
    grid-column: 1 / -1 !important;
    order: -1 !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  .footer-center-brand h2 {
    font-size: clamp(1.5rem, 5vw, 1.8rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 1.5rem !important;
  }

  .footer-links-col {
    grid-column: span 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-links-col .footer-links {
    align-items: center !important;
    gap: 0.75rem !important;
  }

  .footer-title {
    margin-bottom: 1rem !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: var(--color-white) !important;
  }

  .footer-bottom-row {
    flex-direction: column !important;
    gap: 1.25rem !important;
    text-align: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 2rem !important;
  }

  .footer-policy-links {
    justify-content: center !important;
  }
}

@media (max-width: 576px) {
  /* Container Padding Shift on Small Screen Widths */
  .container {
    padding: 0 1.25rem;
  }
  
  /* Custom showcase typography bounds */
  .showcase-content-col {
    padding: 1.25rem;
  }
  .custom-journey-showcase h3 {
    font-size: 1.5rem;
  }
  .showcase-img-col {
    min-height: 180px;
  }

  
  /* Floating header margin overrides to prevent overflow */
  .header {
    padding: 1rem 0;
    height: 80px;
  }
  .header .container {
    padding: 0 1rem;
  }
  .header-inner {
    padding: 0 1.25rem;
  }
  
  .faq-question-btn {
    padding: 1.25rem 1.25rem;
  }
  .faq-answer-content {
    padding: 0 1.25rem 1.25rem;
  }
}

/* ==========================================
   Destinations Mobile Snapping Overrides (Root Level)
   ========================================== */
@media (max-width: 992px) {
  .dest-slider-container {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important; /* Allow programmatic scrolling layer */
    scroll-snap-type: none !important; /* Disable snap conflicts */
    padding: 2rem 5% 4rem !important; /* Padding left/right matches screen borders */
    gap: 1.5rem !important;
    justify-content: flex-start !important;
    width: 100% !important; /* Span full section width */
    margin: 0 auto !important; /* Standard centering margins */
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    height: 520px !important; /* Increased container height to match new padding limit */
  }
  .dest-slider-container::-webkit-scrollbar {
    display: none !important;
  }
  .dest-slide-card,
  .dest-slide-card.left-slide,
  .dest-slide-card.center-slide,
  .dest-slide-card.right-slide,
  .dest-slide-card.hidden-right,
  .dest-slide-card.hidden-left {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 270px !important;
    height: 400px !important; /* Fixed responsive height */
    flex: 0 0 270px !important;
    opacity: 1 !important;
    transform: none !important;
    scroll-snap-align: center !important;
    pointer-events: auto !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    transition: none !important;
  }
  .dest-slide-card.hidden-right,
  .dest-slide-card.hidden-left {
    display: none !important;
  }
  .dest-pill-nav {
    margin-bottom: 2rem !important;
    max-width: 95% !important;
    overflow-x: auto !important;
    padding: 0.15rem !important;
  }
}

@media (max-width: 576px) {
  .dest-slider-container {
    padding: 2rem 5% 3.5rem !important; /* Adjusted bottom padding for smaller screens */
    height: 460px !important; /* Increased container height for smaller screens */
    width: 100% !important;
    margin: 0 auto !important;
  }
  .dest-slide-card,
  .dest-slide-card.left-slide,
  .dest-slide-card.center-slide,
  .dest-slide-card.right-slide,
  .dest-slide-card.hidden-right,
  .dest-slide-card.hidden-left {
    width: 250px !important;
    flex: 0 0 250px !important;
    height: 350px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
  }
  .dest-header-centered h2 {
    font-size: 1.8rem !important;
  }
  .dest-subtitle-tagline {
    font-size: 0.95rem !important;
  }
  .dest-pill-btn {
    padding: 0.5rem 1.2rem !important;
    font-size: 0.75rem !important;
  }
}

/* ==========================================
   Mobile Floating Bottom CTA Button
   ========================================== */
.mobile-floating-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-floating-cta {
    display: block;
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    width: auto;
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease;
  }

  /* STATE 1: Center Pill Button (After scrolling Home section) */
  .mobile-floating-cta.state-center {
    opacity: 1;
    pointer-events: auto;
    left: 50%;
    transform: translateX(-50%) translateY(0);
  }

  /* STATE 2: Morph to Side Icon-Only Circle (After scrolling Testimonials section) */
  .mobile-floating-cta.state-side {
    opacity: 1;
    pointer-events: auto;
    left: calc(100% - 1.25rem - 24px);
    transform: translateX(-50%) translateY(0);
  }

  /* Hide floating button when mobile navigation drawer is open */
  .mobile-floating-cta.nav-drawer-open {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(100px) !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
  }

  .btn-floating-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 50px;
    height: 48px;
    padding: 0 0.5rem 0 1.2rem;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    white-space: nowrap;
    transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-radius 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.3s ease;
  }

  .btn-floating-cta .cta-text {
    font-size: 0.8rem;
    font-family: var(--font-header);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 1;
    max-width: 120px;
    transition: max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease,
                margin 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .btn-floating-cta .btn-arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--color-white);
    color: var(--color-primary);
    border-radius: 50%;
    margin-left: 0.6rem;
    flex-shrink: 0;
    transition: margin 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
  }

  .btn-floating-cta .btn-arrow-circle svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
  }

  /* MORPHING TO SIDE ICON: Text collapses & padding shrinks to 48px circle! */
  .mobile-floating-cta.state-side .btn-floating-cta {
    padding: 0;
    width: 48px;
    border-radius: 50%;
  }

  .mobile-floating-cta.state-side .btn-floating-cta .cta-text {
    max-width: 0;
    opacity: 0;
    margin: 0;
  }

  .mobile-floating-cta.state-side .btn-floating-cta .btn-arrow-circle {
    margin-left: 0;
  }

  .btn-floating-cta:active {
    transform: scale(0.94);
  }
}

/* 
=========================================
Hotel Photo Gallery Lightbox Modal
=========================================
*/
.gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 28, 54, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.gallery-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 960px;
  height: 60vh;
  margin-bottom: 2rem;
}

.gallery-main-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  background-color: #000;
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-main-img.switching {
  opacity: 0;
  transform: scale(0.97);
}

.gallery-photo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.gallery-photo-info h3 {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.gallery-photo-info p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  margin: 0;
  color: #FFFFFF !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Nav Buttons */
.gallery-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.gallery-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.gallery-close-btn svg {
  width: 22px;
  height: 22px;
}

.gallery-nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: absolute;
  z-index: 5;
}

.gallery-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

.gallery-nav-btn.prev {
  left: -28px;
}

.gallery-nav-btn.next {
  right: -28px;
}

.gallery-nav-btn svg {
  width: 26px;
  height: 26px;
}

/* Thumbnails */
.gallery-thumbnails-wrapper {
  width: 90%;
  max-width: 960px;
  overflow: hidden;
}

.gallery-thumbnails {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 72px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: all var(--transition-fast);
  background-color: #000;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover {
  opacity: 0.85;
}

.gallery-thumb.active {
  border-color: var(--color-primary);
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-container {
    height: 45vh;
  }
  .gallery-nav-btn {
    width: 44px;
    height: 44px;
  }
  .gallery-nav-btn.prev {
    left: -15px;
  }
  .gallery-nav-btn.next {
    right: -15px;
  }
  .gallery-nav-btn svg {
    width: 20px;
    height: 20px;
  }
  .gallery-photo-info h3 {
    font-size: 1.2rem;
  }
  .gallery-thumb {
    width: 60px;
    height: 45px;
  }
  .gallery-close-btn {
    top: 1rem;
    right: 1rem;
  }
}

/* 
=========================================
Single Hotel Card Centering CSS
=========================================
*/
.dest-slider-container.single-hotel {
  width: 100% !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  position: relative !important;
  padding: 2rem 0 !important;
  height: 480px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  cursor: grab !important;
  user-select: none !important;
}

.dest-slider-container.single-hotel::-webkit-scrollbar {
  display: none !important;
}

.dest-slider-container.single-hotel.grabbing {
  cursor: grabbing !important;
}

/* Infinite Marquee Track */
.hotel-marquee-track {
  display: flex !important;
  gap: 2.5rem !important;
  width: max-content !important;
}

.dest-slider-container.single-hotel .dest-slide-card {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  width: 330px !important;
  height: 440px !important;
  opacity: 1 !important;
  transform: none !important;
  cursor: default !important;
  box-shadow: var(--shadow-lg) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.dest-slider-container.single-hotel .dest-slide-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-xl) !important;
}

@media (max-width: 576px) {
  .dest-slider-container.single-hotel {
    height: 420px !important;
  }
  .dest-slider-container.single-hotel .dest-slide-card {
    width: 290px !important;
    height: 380px !important;
  }
}


