/* ==========================================================================
   Google Fonts — DM Sans for body, Outfit for headings
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ==========================================================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================================================== */
:root {
  /* Rich Brand Palette */
  --primary: #0B132B;          /* Midnight Navy */
  --primary-light: #1C2541;    /* Deep Indigo Slate */
  --secondary: #0D9488;        /* Forest Teal */
  --secondary-light: #14B8A6;  /* Bright Teal Glow */
  --accent: #10B981;           /* Emerald Mint */
  --accent-light: #34D399;
  --accent-gold: #F59E0B;      /* Warm Amber Gold */
  --danger: #F43F5E;           /* Crimson Pink Rose */
  --info: #0EA5E9;             /* Cyber Sky Blue */

  /* Neutral Grays */
  --bg-main: #F8FAFC;          /* Soft Ice Blue-Gray */
  --bg-white: #FFFFFF;
  --bg-warm: #FAF9F6;          /* Elegant Alabaster */
  --text-primary: #0F172A;     /* Dark Slate */
  --text-secondary: #475569;   /* Slate Gray */
  --text-muted: #64748B;
  --text-light: #F8FAFC;

  /* Glassmorphism Defaults */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Premium Layered Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 16px -6px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 15px 20px -10px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 30px 60px -15px rgba(15, 23, 42, 0.12);
  --shadow-glow-teal: 0 10px 25px rgba(13, 148, 136, 0.18);
  --shadow-glow-emerald: 0 10px 25px rgba(16, 185, 129, 0.18);
  --shadow-glow-blue: 0 10px 25px rgba(14, 165, 233, 0.18);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: all 0.4s var(--ease-out);
  --transition-fast: all 0.2s ease;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: var(--radius-full);
  border: 3px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

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

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.bg-white { background-color: var(--bg-white); }
.bg-main { background-color: var(--bg-main); }
.bg-warm { background-color: var(--bg-warm); }
.bg-slate { background-color: var(--bg-main); }
.text-center { text-align: center; }

/* Subtle Radial Background Accents */
.section::before {
  content: '';
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.025) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: var(--radius-full);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.6;
}

/* ==========================================================================
   BUTTONS (Pill CTA Design)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: var(--shadow-glow-emerald);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--accent) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s var(--ease-out);
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.35);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
  color: white;
  box-shadow: var(--shadow-glow-teal);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(13, 148, 136, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

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

.btn-razorpay {
  background: linear-gradient(135deg, var(--info) 0%, #1D4ED8 100%);
  color: white;
  box-shadow: var(--shadow-glow-blue);
}

.btn-razorpay:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.35);
}

.btn-small {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   NAVIGATION BAR (Premium Floating Capsule Design)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

/* Elegant glass floating capsule scrolled state */
.navbar.scrolled {
  padding: 12px 0;
}

.navbar.scrolled .container {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  width: calc(100% - 40px);
  max-width: 1200px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s var(--ease-out);
  border: 1px solid transparent;
  padding: 0 24px;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 52px;
  width: auto;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 2px solid white;
}

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

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a:not(.btn) {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.navbar.scrolled .nav-links a:not(.btn) {
  color: var(--text-secondary);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: var(--secondary);
  transition: all 0.3s var(--ease-spring);
  border-radius: var(--radius-full);
  transform: translateX(-50%);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  width: 18px;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
  color: var(--secondary) !important;
}

.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  font-size: 1.25rem; color: white;
  cursor: pointer; transition: var(--transition-fast);
  align-items: center; justify-content: center;
}

.navbar.scrolled .mobile-menu-btn {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.08);
  color: var(--text-primary);
}

.mobile-menu-btn:hover {
  transform: scale(1.05);
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 720px;
  background: linear-gradient(160deg, rgba(11, 19, 43, 0.6) 0%, rgba(11, 19, 43, 0.85) 100%), url('../images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  padding-top: 100px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 200px;
  background: linear-gradient(to top, var(--bg-main) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: white;
  background: linear-gradient(135deg, #FFFFFF 40%, #A5F3FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(248, 250, 252, 0.88);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Feature Floating Bar */
.feature-bar-wrapper {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  transform: translateY(50%);
  z-index: 10;
}

.feature-bar {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-lg);
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(13, 148, 136, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.05);
}

.feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--primary);
}

.feature-text p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   POPULAR DESTINATIONS GRID (Premium Zoom hover effects)
   ========================================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

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

.dest-card-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent 35%, rgba(11, 19, 43, 0.92) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 30px;
  z-index: 2;
}

.dest-card-content {
  color: white;
}

.dest-card-content h3 {
  color: white;
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.dest-card-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 0;
  letter-spacing: 0.02em;
}

.dest-card-btn {
  width: 46px; height: 46px;
  border-radius: var(--radius-full);
  background: var(--secondary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow-teal);
  transition: var(--transition);
}

.dest-card:hover .dest-card-btn {
  transform: rotate(-45deg) scale(1.05);
  background: white;
  color: var(--secondary);
}



/* ==========================================================================
   CAR FLEET / CARDS
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

.car-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(13, 148, 136, 0.25);
}

.car-img-wrapper {
  height: 220px;
  overflow: hidden;
  background: #E2E8F0;
  position: relative;
}

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

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

.car-details {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.car-details h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.car-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.car-tag {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(15, 23, 42, 0.02);
}

.car-tag i {
  color: var(--secondary);
  font-size: 0.85rem;
}

.car-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.car-card .btn-group {
  margin-top: auto;
}

.car-card .btn {
  width: 100%;
}

/* ==========================================================================
   TOUR PACKAGES
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.package-card-full {
  grid-column: 1 / -1;
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}

.package-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  height: 400px;
  transition: var(--transition);
}

.package-highlights-badge {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.package-highlights-badge .badge-ondemand {
  font-size: 0.65rem;
  padding: 4px 8px;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(13, 148, 136, 0.25);
}

.package-img {
  width: 42%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.package-details {
  width: 58%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.25;
}

.package-duration {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-places {
  list-style: none;
  font-size: 0.88rem;
  margin-bottom: 16px;
  overflow-y: auto;
  max-height: 110px;
}

.package-places li {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-secondary);
}

.package-places li i {
  color: var(--accent);
  margin-top: 5px;
  font-size: 0.78rem;
}

/* Scrollbar styling for package lists */
.package-places::-webkit-scrollbar {
  width: 4px;
}
.package-places::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-full);
}

/* ==========================================================================
   FACILITIES / INCLUSIONS & EXCLUSIONS
   ========================================================================== */
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 50px auto 0;
}
.highlight-box {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--accent);
  padding: 26px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
}

.highlight-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.highlight-box ul {
  margin: 0;
  list-style: none;
}

.highlight-box li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.92rem;
}

.highlight-box li:last-child {
  margin-bottom: 0;
}

.highlight-box li i {
  color: var(--accent);
  font-size: 1.05rem;
}

.highlight-box li.flex-between {
  justify-content: space-between;
  width: 100%;
}

.badge-ondemand {
  background-color: rgba(245, 158, 11, 0.08);
  color: var(--accent-gold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1.5px solid rgba(245, 158, 11, 0.18);
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.03);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.badge-ondemand:hover {
  background-color: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.35);
}

.on-demand-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.07) 0%, rgba(245, 158, 11, 0.02) 100%);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-left: 5px solid var(--accent-gold);
  padding: 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 800px;
  margin: 40px auto 0;
  transition: var(--transition);
}

.on-demand-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.on-demand-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.12);
}

.on-demand-content {
  flex-grow: 1;
}

.on-demand-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.on-demand-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

/* ==========================================================================
   ABOUT PAGE & CORE VALUES
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 148, 136, 0.25);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(13, 148, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.55rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.05);
}

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.value-card p {
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mission-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--secondary);
  transition: var(--transition);
}

.mission-card:nth-child(2) {
  border-left-color: var(--accent);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mission-card h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
}

.mission-card h3 i {
  color: var(--secondary);
}

.mission-card:nth-child(2) h3 i {
  color: var(--accent);
}

.founder-section {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 920px;
  margin: 0 auto;
}

.founder-avatar {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow-teal);
  border: 4px solid white;
  object-fit: cover;
}

.founder-info h3 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.founder-info .founder-role {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-info p {
  font-size: 0.98rem;
  line-height: 1.75;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  border-radius: var(--radius-md);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -20%; right: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
  border-radius: var(--radius-full);
}

.contact-card h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-item:last-of-type {
  margin-bottom: 0;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-light);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.contact-item:hover .contact-item-icon {
  background: var(--secondary);
  color: white;
  transform: scale(1.05);
}

.contact-item-text h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
  color: rgba(248, 250, 252, 0.75);
  font-size: 0.92rem;
}

.contact-item-text a:hover {
  color: var(--secondary-light);
}

.business-hours {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.business-hours h4 {
  color: white;
  margin-bottom: 12px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.business-hours p {
  color: rgba(248, 250, 252, 0.65);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.contact-form-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.contact-form-panel h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: rgba(15, 23, 42, 0.02);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  background: white;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

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

.map-wrapper {
  margin-top: 56px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  border: 1px solid var(--glass-border);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   PHOTO GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(11, 19, 43, 0.95) 0%, rgba(11, 19, 43, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  color: white;
  transition: var(--transition);
  z-index: 2;
}

.gallery-overlay h3 {
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-spring);
}

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

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

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

/* Gallery Lightbox */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(11, 19, 43, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(12px);
}

.lightbox-modal.active {
  display: flex;
  animation: fadeIn 0.35s var(--ease-out);
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: transform 0.4s var(--ease-spring);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-height: 70vh;
  max-width: 100%;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  object-fit: contain;
  width: auto;
  display: block;
}

.lightbox-caption {
  width: 100%;
  background: rgba(11, 19, 43, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  color: white;
  text-align: center;
  margin-top: -2px;
}

.lightbox-caption h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  transform: scale(1.1);
  color: var(--secondary-light);
}

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

/* ==========================================================================
   TERMS, PRIVACY & REFUND POLICY CARDS
   ========================================================================== */
.policy-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-md);
  max-width: 920px;
  margin: 0 auto;
}

.policy-card h2 {
  font-size: 1.55rem;
  margin-top: 36px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid rgba(15, 23, 42, 0.06);
  color: var(--primary);
}

.policy-card h2:first-of-type {
  margin-top: 0;
}

.policy-card ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.policy-card li {
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.policy-card strong {
  color: var(--text-primary);
}

/* ==========================================================================
   TOAST NOTIFICATION PANEL
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 96px; right: 28px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 400px;
  animation: slideInRight 0.4s var(--ease-spring);
  border-left: 4px solid var(--accent);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.toast.error {
  border-left-color: var(--danger);
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1rem;
}

.toast.error .toast-icon {
  background: rgba(244, 63, 94, 0.08);
  color: var(--danger);
}

.toast-content h4 {
  font-size: 0.92rem;
  margin-bottom: 2px;
  color: var(--primary);
}

.toast-content p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
}

.toast-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.25rem;
  padding: 2px;
  transition: var(--transition-fast);
}

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100px) scale(0.9); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
  animation: pulsewa 3s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

@keyframes pulsewa {
  0%, 100% {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 148, 136, 0.2);
}

.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(13, 148, 136, 0.08);
  position: absolute;
  top: 10px; left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow-teal);
  border: 2px solid white;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--primary);
}

.testimonial-info .stars {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

/* ==========================================================================
   PAGE HEADER
   ========================================================================== */
.page-header {
  height: 40vh;
  min-height: 320px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  z-index: 1;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(11, 19, 43, 0.9) 0%, rgba(13, 148, 136, 0.5) 100%);
  z-index: -1;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 100px;
  background: linear-gradient(to top, var(--bg-main) 0%, transparent 100%);
  z-index: -1;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.page-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* ==========================================================================
   FOOTER (Premium Styled)
   ========================================================================== */
.footer {
  background: linear-gradient(180deg, var(--primary) 0%, #060A16 100%);
  color: #94A3B8;
  padding: 96px 0 40px;
  font-size: 0.9rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer h3 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 24px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.01em;
}

.footer p {
  color: #94A3B8;
  line-height: 1.75;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.08);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-teal);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary-light);
  padding-left: 5px;
}

.footer-links p {
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-links p i {
  margin-top: 5px;
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
  color: #475569;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ==========================================================================
   MOBILE SLIDE OUT NAVIGATION Drawer
   ========================================================================== */
.mobile-nav-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 85%; max-width: 360px;
  height: 100vh;
  background: var(--primary);
  z-index: 1001;
  padding: 96px 40px 40px;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.35);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-menu.active {
  right: 0;
}

.mobile-nav-menu .close-btn {
  position: absolute;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white;
  cursor: pointer; transition: var(--transition-fast);
}

.mobile-nav-menu .close-btn:hover {
  transform: rotate(90deg);
}

.mobile-nav-menu a:not(.btn) {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav-menu a:not(.btn):hover,
.mobile-nav-menu a:not(.btn).active {
  color: var(--secondary-light);
  border-bottom-color: var(--secondary);
  padding-left: 6px;
}

.overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(11, 19, 43, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.overlay.active {
  display: block;
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .destinations-grid, .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    min-height: auto;
    padding: 120px 0 60px;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .section {
    padding: 80px 0;
  }
  .feature-bar-wrapper {
    position: static;
    transform: none;
    margin-top: 40px;
    padding: 0;
  }
  .feature-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    gap: 20px;
  }
  .feature-item {
    width: 100%;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .founder-section {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .package-card {
    height: auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .inclusions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(11, 19, 43, 0.9) 0%, rgba(11, 19, 43, 0.2) 70%, transparent 100%);
    padding: 16px;
  }
  .gallery-overlay h3 {
    transform: none;
    font-size: 1rem;
  }
  .section {
    padding: 70px 0;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 150px 0 80px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  .page-header {
    height: auto;
    min-height: 240px;
    padding: 120px 0 50px;
  }
  .page-header h1 {
    font-size: 2.4rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .section-header {
    margin-bottom: 44px;
  }
  .destinations-grid, .fleet-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .dest-card {
    height: 320px;
  }
  .package-card {
    flex-direction: column;
    height: auto;
  }
  .package-img {
    width: 100%;
    height: 200px;
  }
  .package-details {
    width: 100%;
    padding: 24px;
    justify-content: flex-start;
    gap: 20px;
  }
  .contact-card, .contact-form-panel, .policy-card {
    padding: 30px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .toast {
    max-width: calc(100vw - 40px);
  }
  .floating-whatsapp {
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
    bottom: 24px;
    right: 24px;
  }
  .map-wrapper {
    height: 300px;
  }
  .on-demand-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    margin: 32px 0 0;
  }
  .on-demand-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }
  .section-header h2 {
    font-size: 1.75rem;
  }

  .dest-card {
    height: 280px;
  }
  .gallery-item {
    height: 200px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer {
    padding: 64px 0 28px;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .founder-avatar {
    width: 110px;
    height: 110px;
    font-size: 2.8rem;
  }
  .policy-card {
    padding: 24px 16px;
  }
}

/* ==========================================================================
   AIRPORT & RAILWAY TRANSFERS WIDGET
   ========================================================================== */
.transfers-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.transfers-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.info-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 148, 136, 0.2);
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(13, 148, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.04);
}

.info-text h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.info-text p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

.transfers-widget-wrapper {
  width: 100%;
}

.transfers-widget {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: var(--transition);
}

.transfers-widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
  pointer-events: none;
  z-index: 0;
}

.transfers-widget > * {
  position: relative;
  z-index: 1;
}

.transfers-widget h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  text-align: center;
  letter-spacing: -0.02em;
}

.widget-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  text-align: center;
  line-height: 1.4;
}

.transfer-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group label i {
  color: var(--secondary);
  font-size: 0.9rem;
}

.form-select {
  padding: 14px 18px;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.85);
  outline: none;
  transition: var(--transition-fast);
  cursor: pointer;
  width: 100%;
  box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.01);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.form-select:hover {
  border-color: rgba(13, 148, 136, 0.35);
  background-color: #ffffff;
}

.form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
  background-color: #ffffff;
}

.widget-preview-box {
  background: rgba(15, 23, 42, 0.03);
  border: 1px dashed rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.widget-preview-box.active {
  background: rgba(13, 148, 136, 0.04);
  border: 1px solid rgba(13, 148, 136, 0.18);
  text-align: left;
  justify-content: flex-start;
}

.preview-placeholder {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.route-preview {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.route-preview p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(16, 185, 129, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(16, 185, 129, 0.15);
  margin-top: 4px;
}

.widget-cta-btn {
  width: 100%;
  padding: 16px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-glow-teal);
}

/* ==========================================================================
   PREMIUM SMOOTHNESS & VISUAL ENHANCEMENTS
   ========================================================================== */
body {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.loaded {
  opacity: 1;
}

.car-card, .package-card, .dest-card, .value-card, .testimonial-card, .info-item, .transfers-widget, .highlight-box, .on-demand-banner {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.car-card:hover, .package-card:hover, .value-card:hover, .testimonial-card:hover, .on-demand-banner:hover {
  transform: translateY(-8px) scale(1.005);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08), 0 12px 24px -8px rgba(15, 23, 42, 0.04);
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.15);
}

/* Float Keyframes for Icons */
@keyframes microFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.feature-icon i, .info-icon i, .value-icon i {
  animation: microFloat 4s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon i, .value-card:nth-child(2) .value-icon i {
  animation-delay: 1s;
}

.feature-item:nth-child(3) .feature-icon i, .value-card:nth-child(3) .value-icon i {
  animation-delay: 2s;
}

.feature-item:nth-child(4) .feature-icon i, .value-card:nth-child(4) .value-icon i {
  animation-delay: 3s;
}

/* Nav links soft glow and hover slide */
.nav-links a:not(.btn).active {
  text-shadow: 0 0 12px rgba(13, 148, 136, 0.2);
}

/* Custom Scrollbar for modern feel */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Media Query Adaptations for Transfers Grid */
@media (max-width: 992px) {
  .transfers-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .transfers-widget {
    padding: 30px 24px;
  }
}

/* ==========================================================================
   TICKET PREVIEW BOX STYLES
   ========================================================================== */
.ticket-preview {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.ticket-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--secondary);
}

.ticket-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.route-point {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  max-width: 45%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 6px;
}

.route-point i {
  font-size: 0.8rem;
}

.route-point.pickup i { color: var(--accent); }
.route-point.drop i { color: var(--secondary); }

.route-connector {
  flex-grow: 1;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  min-width: 40px;
}

.route-connector .line {
  position: absolute;
  top: 50%; left: 0; width: 100%; height: 1.5px;
  background: #E2E8F0;
  z-index: 1;
  transform: translateY(-50%);
}

.route-connector .line.dashed {
  background: transparent;
  border-top: 1.5px dashed #CBD5E1;
}

.route-connector i {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 0 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.ticket-divider {
  border-top: 1px dashed #E2E8F0;
  margin: 4px 0;
  position: relative;
}

.ticket-divider::before, .ticket-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 10px; height: 10px;
  background: var(--bg-main);
  border: 1px solid rgba(13, 148, 136, 0.15);
  border-radius: var(--radius-full);
  transform: translateY(-50%);
  z-index: 2;
}

.ticket-divider::before { left: -26px; }
.ticket-divider::after { right: -26px; }

.ticket-details-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.detail-val {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-val i {
  color: var(--secondary);
}

.detail-val.fare {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
}

.detail-val.fare.status-quote {
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
}

.ticket-footer {
  font-size: 0.68rem;
  color: var(--text-muted);
  border-top: 1px solid #F1F5F9;
  padding-top: 10px;
  margin-top: 4px;
  font-style: italic;
  line-height: 1.3;
}


