/* ============================================
   CAREWAYS CORPORATE SOLUTIONS – GLOBAL STYLES
   Premium SaaS/Travel — Mobile-First Redesign
   Fonts: Poppins (Headings) · Inter (Body/Labels)
   ============================================ */

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

/* ── DESIGN TOKENS ── */
:root {
  /* Surfaces */
  --bg-primary: #F8FAFC;
  --bg-secondary: #FFFFFF;
  --bg-elevated: #FFFFFF;
  --border: #E2E8F0;
  --border-light: #F1F5F9;

  /* Typography */
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;

  /* Brand — Indigo + Emerald */
  --primary: #4F46E5;
  --primary-hover: #4338CA;
  --primary-dark: #3730A3;
  --primary-light: #EEF2FF;
  --accent: #10B981;
  --accent-hover: #059669;
  --accent-light: #D1FAE5;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #1E1B4B 0%, #312E81 40%, #4F46E5 100%);
  --gradient-brand: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
  --gradient-subtle: linear-gradient(135deg, #EEF2FF 0%, #D1FAE5 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);

  /* Status */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #06B6D4;

  /* UI */
  --navbar-bg: rgba(255,255,255,0.82);
  --hover: #F1F5F9;
  --active: #EEF2FF;

  /* Spacing & Radius */
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.03);
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.04), 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.08), 0 4px 12px rgba(15,23,42,0.04);
  --shadow-xl: 0 24px 56px rgba(15,23,42,0.1), 0 8px 20px rgba(15,23,42,0.06);
}

/* ── DARK THEME ── */
body.dark-theme {
  --bg-primary: #0B1120;
  --bg-secondary: #111827;
  --bg-elevated: #1F2937;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.04);

  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  --primary: #818CF8;
  --primary-hover: #A5B4FC;
  --primary-dark: #6366F1;
  --primary-light: rgba(129, 140, 248, 0.1);
  --accent: #34D399;
  --accent-hover: #6EE7B7;
  --accent-light: rgba(52, 211, 153, 0.1);

  --gradient-hero: linear-gradient(135deg, #0B1120 0%, #111827 50%, #1F2937 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(129, 140, 248, 0.05) 0%, rgba(52, 211, 153, 0.05) 100%);

  --navbar-bg: rgba(11, 17, 32, 0.92);
  --hover: rgba(255, 255, 255, 0.05);
  --active: rgba(129, 140, 248, 0.15);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.5);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 64px rgba(0,0,0,0.6);
}

body.dark-theme .theme-toggle {
  color: #FFFFFF !important;
}

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

html {
  scroll-behavior: smooth;
  font-size: 1rem;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.65;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.theme-transition * {
  transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              color 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img, video { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 3.5rem 0;
}
.section-sm {
  padding: 2rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--text-primary);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(79,70,229,0.3);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,70,229,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16,185,129,0.4);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.btn-white:hover {
  background: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { color: var(--primary); background: var(--primary-light); }

.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}
.badge-green { background: var(--accent-light); color: var(--accent); }
.badge-accent { background: rgba(245,158,11,0.1); color: #D97706; }
.badge-blue { background: var(--primary-light); color: var(--primary); }

/* ── NAVBAR ── */
.navbar {
  position: relative;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s ease;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* Sticky navbar on all inner pages (non-home) for mobile/tablet */
@media (max-width: 991px) {
  .navbar:not([data-is-home="true"]) {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1050;
  }
  body.dark-theme .navbar:not([data-is-home="true"]) {
    background: #0f172a;
  }
  .navbar-collapse {
    width: 100%;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    margin-top: 15px;
    border: 1px solid var(--border-light);
  }
  /* White menu with dark text for Home page when transparent */
  .navbar[data-is-home="true"]:not(.scrolled) .navbar-collapse {
    background: #ffffff !important;
    border-color: var(--border-light);
  }
  .navbar[data-is-home="true"]:not(.scrolled) .nav-link {
    color: var(--text-primary) !important;
    text-shadow: none !important;
    opacity: 1 !important;
  }
  body.dark-theme .navbar-collapse {
    background: #1e293b;
    border-color: rgba(255,255,255,0.1);
  }
}

/* Home Page Specific (Overlap Hero) - Strictly preserved */
.navbar[data-is-home="true"] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body.dark-theme .navbar {
  background: #050914;
  border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
  transform: translate3d(0, 0, 0);
}

body.dark-theme .navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  border-color: var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  color: #fff;
}

/* CSS Logo */
.custom-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-dot {
  width: 22px;
  height: 22px;
  background-color: #FACC15;
  border-radius: 50%;
  margin-top: -12px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}
.navbar[data-is-home="true"] .logo-title { color: #FFFFFF; }
.navbar.scrolled .logo-title { color: var(--text-primary); }
body.dark-theme .logo-title { color: #fff !important; }

.logo-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 4px;
  transition: color 0.3s ease;
}
.navbar[data-is-home="true"] .logo-subtitle { color: rgba(255,255,255,0.7); }
.navbar.scrolled .logo-subtitle { color: var(--text-muted); }
body.dark-theme .logo-subtitle { color: var(--text-muted) !important; }

/* Responsive Logo for Mobile */
@media (max-width: 576px) {
  .navbar-brand { min-width: 0; }
  .custom-logo { gap: 8px; }
  .logo-title { font-size: 1.4rem !important; }
  .logo-subtitle { font-size: 0.5rem !important; letter-spacing: 0.15em !important; }
  .logo-dot { width: 12px !important; height: 12px !important; margin-top: -4px !important; }
  .navbar .btn-nav { padding: 4px 10px !important; font-size: 0.7rem !important; }
  .navbar-toggler { padding: 0 !important; }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links .nav-link, .nav-dropdown > a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: all 0.3s ease;
  text-shadow: none;
}

.navbar[data-is-home="true"] .nav-links .nav-link,
.navbar[data-is-home="true"] .nav-dropdown > a {
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-links .nav-link, 
.navbar.scrolled .nav-dropdown > a {
  color: var(--text-primary);
  text-shadow: none;
}

body.dark-theme .nav-links .nav-link,
body.dark-theme .nav-dropdown > a {
  color: #F8FAFC;
}

.nav-links .nav-link:hover, .nav-dropdown > a:hover {
  color: #FACC15;
}
.navbar.scrolled .nav-links .nav-link:hover, 
.navbar.scrolled .nav-dropdown > a:hover {
  color: #8B6816;
}
.nav-links .nav-link.active {
  color: #FACC15;
}
.navbar.scrolled .nav-links .nav-link.active {
  color: #8B6816;
}

/* Bootstrap Dropdown Customizations */
.dropdown-toggle::after {
  vertical-align: middle;
  transition: transform 0.2s ease;
  font-size: 0.8rem;
  opacity: 0.6;
}
.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeDown 0.2s ease forwards;
  }
}

.dropdown-menu {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  min-width: 240px;
  padding: 8px;
}
.dropdown-item {
  padding: 10px 14px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.15s ease;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--primary);
  background: var(--primary-light);
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-nav {
  background: #8B6816;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-nav:hover {
  background: #6D5112;
}

/* Bootstrap Mobile Nav Toggle Overrides */
.navbar-toggler {
  border: none;
  padding: 0.25rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
body.dark-theme .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../../public/hero-frames/ezgif-frame-001.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5, 10, 30, 0.82) 0%,
    rgba(15, 23, 42, 0.6) 50%,
    rgba(30, 27, 75, 0.5) 100%
  );
}
.hero::after { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
}

/* Staggered entrance */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-anim-1 { animation-delay: 0.15s; }
.hero-anim-2 { animation-delay: 0.35s; }
.hero-anim-3 { animation-delay: 0.55s; }
.hero-anim-4 { animation-delay: 0.75s; }
.hero-anim-5 { animation-delay: 0.95s; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #34D399, #A7F3D0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0,0,0,0.1);
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero-stat .label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── CARDS ── */
.card {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  backface-visibility: hidden;
  contain: content;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
body.dark-theme .card {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
body.dark-theme .card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(129,140,248,0.2);
}

/* Disable heavy card hover effects on mobile/tablet */
@media (max-width: 991px) {
  .card:hover {
    transform: none;
  }
  .card:hover .card-img img {
    transform: none;
  }
}

.card-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-primary);
}
.card-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover .card-img img { transform: scale(1.06); }
.dest-card-img { background: var(--gradient-subtle) !important; }

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}
.card-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}
.card-price .from { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }
.card-price .amount {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}
.card-price .per { font-size: 0.7rem; color: var(--text-muted); }

/* ── DESTINATION SLIDER ── */
.dest-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
.dest-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 16px;
}
.dest-slider::-webkit-scrollbar { display: none; }
.dest-slider .card {
  flex: 0 0 calc(85% - 8px);
  min-width: 260px;
  scroll-snap-align: start;
}

/* Slider arrows */
.slider-nav {
  display: flex;
  gap: 8px;
}
.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--text-secondary);
}
.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.05);
}
.slider-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.slider-btn:disabled:hover {
  background: var(--bg-secondary);
  border-color: var(--border);
  color: var(--text-secondary);
  transform: scale(1);
}
.slider-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* Slider dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.slider-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--primary);
}

/* ── GRID ── */
.tour-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

/* ── WHY SECTION / FEATURES ── */
.why-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.04) 0%, transparent 70%);
  pointer-events: none;
}
body.dark-theme .why-section {
  background: var(--bg-primary);
}

.glass-card {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body.dark-theme .glass-card {
  background: var(--bg-elevated) !important;
  border-color: var(--border) !important;
  box-shadow: var(--shadow-sm) !important;
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(79,70,229,0.15) !important;
}
body.dark-theme .glass-card:hover {
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(129,140,248,0.2) !important;
}

/* Feature Card */
.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
body.dark-theme .feature-card {
  background: var(--bg-elevated);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
body.dark-theme .feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(129,140,248,0.2);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
  background: var(--gradient-brand);
  transform: scale(1.08);
}
.feature-card:hover .feature-icon svg { stroke: #fff; }
.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
  transition: stroke 0.3s ease;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; position: relative; z-index: 1; }
.feature-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; position: relative; z-index: 1; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.04) 0%, transparent 70%);
  pointer-events: none;
}
body.dark-theme .testimonials-section {
  background: var(--bg-secondary);
}

/* Testimonial Card */
.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.testimonial-card:hover::before { opacity: 1; }
body.dark-theme .testimonial-card {
  background: var(--bg-elevated);
  border-color: var(--border);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
body.dark-theme .testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(129,140,248,0.15);
}

/* Scroll reveal system */
.reveal-on-scroll,
.scroll-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 992px) {
  .reveal-on-scroll, .scroll-reveal {
    filter: blur(8px);
  }
}

.reveal-up { transform: translateY(40px); }
.reveal-down { transform: translateY(-40px); }
.reveal-left { transform: translateX(40px); }
.reveal-right { transform: translateX(-40px); }
.reveal-zoom { transform: scale(0.92); }

.reveal-on-scroll.is-visible,
.scroll-reveal.is-visible {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
  filter: blur(0) !important;
}

/* Faster, lighter reveals on mobile/tablet */
@media (max-width: 991px) {
  .reveal-on-scroll,
  .scroll-reveal {
    filter: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .reveal-up { transform: translateY(20px); }
  .reveal-down { transform: translateY(-20px); }
  .reveal-left { transform: translateX(20px); }
  .reveal-right { transform: translateX(-20px); }
  .reveal-zoom { transform: scale(0.96); }

  /* Remove stagger delays on mobile for instant feel */
  .dest-slider .card,
  .dest-slider .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Staggered children reveal */
.stagger-container > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-container > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-container > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-container > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-container > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-container > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-container > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-container > *:nth-child(8) { transition-delay: 0.8s; }
.stagger-container .reveal-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.stagger-container .reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stagger-container .reveal-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.stagger-container .reveal-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.stagger-container .reveal-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.stagger-container .reveal-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.stagger-container .reveal-on-scroll:nth-child(7) { transition-delay: 0.35s; }
.stagger-container .reveal-on-scroll:nth-child(8) { transition-delay: 0.4s; }
.stagger-container .reveal-on-scroll:nth-child(9) { transition-delay: 0.45s; }
.stagger-container .reveal-on-scroll:nth-child(10) { transition-delay: 0.5s; }

@media (max-width: 991px) {
  .stagger-container > * { transition-delay: 0s !important; }
  .stagger-container .reveal-on-scroll { transition-delay: 0s !important; }
}

/* Section Line Animation */
.section-line {
  width: 0;
  transition: width 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: 0.2s;
}
.is-visible .section-line {
  width: 40px;
}

/* Premium Hero Entrance Animations */
@keyframes heroFadeUpBlur {
  0% { opacity: 0; transform: translateY(60px); filter: blur(12px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes cinematicZoomOut {
  0% { transform: scale(1.25); filter: brightness(0.3); opacity: 0; }
  100% { transform: scale(1); filter: brightness(1); opacity: 1; }
}
@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-12px); }
  60% { transform: translateY(-6px); }
}

.animate-hero-bg { animation: cinematicZoomOut 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-hero-sub { animation: heroFadeUpBlur 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both; }
.animate-hero-title { animation: heroFadeUpBlur 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both; }
.animate-hero-tag { animation: heroFadeUpBlur 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both; }
.animate-hero-scroll { animation: heroFadeIn 1s ease 1.8s both; }
.animate-hero-scroll svg { animation: scrollBounce 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1) 2s; }

/* Faster hero anims on mobile/tablet */
@media (max-width: 991px) {
  .page-hero {
    padding-top: 120px !important;
    padding-bottom: 60px !important;
  }
  .animate-hero-bg { animation-duration: 1s; }
  .animate-hero-sub { animation-duration: 0.6s; animation-delay: 0.1s; }
  .animate-hero-title { animation-duration: 0.6s; animation-delay: 0.2s; }
  .animate-hero-tag { animation-duration: 0.6s; animation-delay: 0.3s; }
  .animate-hero-scroll { animation-delay: 0.8s; }
  .hero-anim { animation-duration: 0.5s; }
  .hero-anim-1 { animation-delay: 0.05s; }
  .hero-anim-2 { animation-delay: 0.15s; }
  .hero-anim-3 { animation-delay: 0.25s; }
  .hero-anim-4 { animation-delay: 0.35s; }
  .hero-anim-5 { animation-delay: 0.45s; }
  .page-hero * { animation-duration: 0.5s !important; animation-delay: 0s !important; }
}


.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: #F59E0B;
  font-size: 0.85rem;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.88rem; }
.author-role { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  outline: none;
  transition: all 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: var(--bg-secondary);
  box-shadow: 0 0 0 4px rgba(79,70,229,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }

/* ── TOUR DETAIL ── */
.tour-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  background: linear-gradient(rgba(11, 17, 33, 0.5), rgba(11, 17, 33, 0.7)), url('/inner-hero-bg.webp') no-repeat center center / cover;
  overflow: hidden;
  padding-top: 72px;
}
.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,17,33,0.88) 0%, rgba(11,17,33,0.3) 60%, transparent 100%);
}
.tour-hero-content { position: relative; z-index: 2; color: #fff; }
.tour-hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.tour-hero-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  opacity: 0.9;
}

.tour-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

/* ── BESPOKE TOUR TEMPLATE CSS ── */

/* Hero Full */
.tour-hero-full {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.tour-hero-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.tour-hero-full-content {
  text-align: center;
  color: #fff;
  z-index: 2;
  margin-top: -10vh; /* Shift up slightly for balance */
}
.hero-subheading {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.tour-hero-full-content h1 {
  font-family: 'Playfair Display', serif; /* Assuming a serif font for prestige */
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0,0,0,0.6), 0 2px 4px rgba(0,0,0,0.4);
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 500;
  opacity: 1;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* Page Layout */
.tour-detail-section {
  background: var(--bg-primary); /* Assuming #FDFCF8 or white */
  padding: 60px 0;
}
body.dark-theme .tour-detail-section {
  background: var(--bg-primary); 
}
.tour-detail-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .tour-detail-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }
}
.tour-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.tour-sidebar-col {
  width: 100%;
}
@media (min-width: 1024px) {
  .tour-sidebar-col { width: 360px; flex-shrink: 0; position: sticky; top: 120px; }
}

/* Section Blocks */
.tour-section-block {}
.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.section-line {
  width: 40px;
  height: 2px;
  background: #b49b6b; /* gold */
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

/* About Tour */
.about-split-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .about-split-layout {
    flex-direction: row;
    gap: 40px;
  }
  .about-text { flex: 1; }
  .about-quote { width: 40%; flex-shrink: 0; }
}
.about-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-quote {
  border-left: 3px solid #b49b6b;
  padding-left: 20px;
  background: rgba(180, 155, 107, 0.05); /* very soft gold bg */
  padding: 24px;
}
.quote-mark {
  font-size: 2rem;
  color: #b49b6b;
  line-height: 1;
  margin-bottom: 8px;
}
.about-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.6;
}

/* Highlights Grid */
.highlights-complex-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 16px;
}
@media (min-width: 640px) {
  .highlights-complex-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .highlights-complex-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 20px;
  }
  /* Symmetric Bento: Top wide-narrow, Bottom narrow-wide */
  .highlight-card-custom.wide-card   { grid-column: span 2; }
  .highlight-card-custom.tall-card   { grid-column: span 1; }
  .highlight-card-custom.square-card { grid-column: span 1; }
  .highlight-card-custom.wide-bottom { grid-column: span 2; }
}

.highlight-card-custom {
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  background: var(--bg-secondary);
  color: inherit; /* Ensure internal text inherits style color */
}

.highlight-card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Image overlay for readability */
.highlight-card-custom[style*="url"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.highlight-card-custom:hover[style*="url"]::after {
  opacity: 0.9;
}

/* Specific styling for image cards to boost text */
.highlight-card-custom[style*="url"] .highlight-card-content {
  color: #ffffff !important;
  text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

.highlight-card-custom[style*="url"] .highlight-card-content h3 {
  color: #ffffff !important;
}

.highlight-card-custom[style*="url"] .highlight-card-content p {
  color: #ffffff !important;
  font-weight: 500;
}
.highlight-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 1.5rem;
}
.highlight-card-content {
  position: relative;
  z-index: 2;
}
.highlight-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: inherit;
}
.highlight-card-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 1;
  margin: 0;
  max-width: 95%;
  color: inherit;
}

/* Itinerary Clean List */
.itinerary-list-clean {
  display: flex;
  flex-direction: column;
}
.itinerary-row {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}
.itinerary-row:last-child {
  border-bottom: none;
}
@media (min-width: 640px) {
  .itinerary-row {
    flex-direction: row;
    gap: 32px;
  }
}
.itinerary-col-day {
  width: 80px;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #b49b6b; /* gold */
  flex-shrink: 0;
  padding-top: 4px;
}
.itinerary-col-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.itinerary-col-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* SIDEBAR & FORM */
.booking-card {
  background: var(--bg-secondary); /* or #fdfdfd */
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  padding: 0; /* padding inside elements */
}
.booking-price-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border-light);
}
.starting-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-muted);
}
.price-info { text-align: right; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}
.price-desc {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: lowercase;
}

.booking-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group-clean {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group-clean label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.form-group-clean input,
.form-group-clean select {
  width: 100%;
  background: var(--bg-primary); /* darker field bg if card is light */
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-primary);
  border-radius: 0; /* sharp edges */
}
.form-group-clean input:focus,
.form-group-clean select:focus {
  outline: none;
  border-color: #b49b6b;
}

.btn-booking-submit {
  background: #71552a; /* deep brown/gold */
  color: #fff;
  border: none;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.btn-booking-submit:hover {
  background: #5b4322;
}
.guarantee-text {
  text-align: center;
  font-size: 0.55rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 12px;
  text-transform: uppercase;
}

/* 17.1 — Capacity & Availability Enhancements */
.capacity-meter {
  margin-top: 10px;
}
.capacity-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.scarcity-alert {
  font-size: 0.65rem;
  font-weight: 800;
  color: #ef4444;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.total-cap {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
}
.capacity-track {
  height: 3px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}
.capacity-fill {
  height: 100%;
  background: #71552a;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.capacity-fill.danger {
  background: #ef4444;
}
.date-select-modern {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-primary);
  border-radius: 0;
  outline: none;
  cursor: pointer;
}
.date-select-modern:focus {
  border-color: #b49b6b;
}

/* What's Included Box */
.included-box {
  background: #0B1121; /* dark navy/black */
  color: #fff;
  padding: 24px;
  margin-top: 24px;
}
.included-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}
.inc-icon {
  color: #b49b6b; /* gold check */
}
.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.included-list .bullet {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b49b6b;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.45);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── FOOTER ── */
footer {
  background: #0F172A;
  color: rgba(255,255,255,0.65);
  padding: 56px 0 0;
}
body.dark-theme footer { background: #070B14; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo-text .brand { color: #fff; font-size: 1.2rem; }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,0.35); }
.footer-brand p { margin-top: 14px; font-size: 0.85rem; line-height: 1.75; }

.footer-col h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  padding: 4px 0;
  transition: all 0.2s ease;
}
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  font-size: 0.78rem;
  gap: 10px;
}
.footer-bottom p { opacity: 0.35; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-banner::after {
  content: '';
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(16,185,129,0.08);
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  color: #fff !important;
}
.cta-banner p {
  opacity: 0.85;
  font-size: 0.92rem;
  max-width: 440px;
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.85) !important;
}
.cta-banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  background: #0f172a;
  background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.88) 20%, rgba(30, 41, 59, 0.78) 55%, rgba(15, 23, 42, 0.88) 100%), url('../../public/page-hero-bg.webp');
  background-size: cover;
  background-position: center 78%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  padding: 100px 0 80px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.1) 35%, rgba(15, 23, 42, 0.32) 100%);
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff !important;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
  animation: heroFadeUpBlur 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #34D399, #A7F3D0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8) !important;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0,0,0,0.1);
  animation: heroFadeUpBlur 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.page-hero .btn-primary,
.page-hero .btn-accent {
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(16,185,129,0.3) !important;
}
.page-hero .btn-primary:hover,
.page-hero .btn-accent:hover {
  background: var(--accent-hover) !important;
  box-shadow: 0 8px 28px rgba(16,185,129,0.4) !important;
}
.page-hero .btn-white {
  background: #fff !important;
  color: var(--primary) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important;
}
.page-hero .breadcrumb {
  display: none;
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
.page-hero .breadcrumb a {
  color: #fff;
  opacity: 0.8;
}
.page-hero .breadcrumb a:hover {
  opacity: 1;
  color: var(--primary);
}
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.breadcrumb a { opacity: 0.9; color: #fff; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { opacity: 0.4; }

/* ── ABOUT ── */
.about-split { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius-lg); width: 100%; }
.about-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-img-badge .num { font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800; }
.about-img-badge .txt { font-size: 0.75rem; opacity: 0.8; }
.values-list { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 24px; }
.value-item { display: flex; gap: 12px; align-items: flex-start; }
.value-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.value-item h4 { font-size: 0.92rem; margin-bottom: 3px; }
.value-item p { font-size: 0.82rem; color: var(--text-secondary); }

/* ── CAR RENTAL ── */
.car-rental-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .car-rental-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}
.car-rental-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.city-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.city-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.city-card .city-icon {
  font-size: 1.5rem;
  background: var(--gradient-subtle);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.city-card .city-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}
.city-card .city-arrow {
  color: var(--primary);
  font-weight: 800;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.city-card:hover .city-arrow {
  opacity: 1;
  transform: translateX(0);
}
.car-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}
.car-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
body.dark-theme .car-card {
  border-color: var(--border);
}
body.dark-theme .car-card:hover {
  border-color: rgba(129,140,248,0.2);
}
.car-img {
  overflow: hidden;
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.car-img img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.car-body {
  padding: 20px;
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.car-specs {
  display: flex;
  gap: 6px;
  margin: 10px 0;
  flex-wrap: wrap;
}
.car-spec {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-primary);
  padding: 4px 10px;
  border-radius: 20px;
}
.car-spec svg { width: 14px; height: 14px; stroke: var(--text-muted); }


/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}
.contact-info-card {
  background: var(--gradient-hero);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-info-card::before {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.contact-info-card::after {
  content: '';
  position: absolute;
  left: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(16,185,129,0.07);
}
.contact-info-card h3 {
  color: #fff !important;
  font-size: 1.4rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.contact-info-card > p {
  color: rgba(255,255,255,0.85) !important;
  opacity: 1;
  font-size: 0.88rem;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.contact-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; }
.contact-item h4 { font-size: 0.82rem; color: rgba(255,255,255,0.7) !important; margin-bottom: 3px; }
.contact-item p { font-weight: 600; font-size: 0.92rem; color: #fff !important; }

/* ── MAP ── */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ── PACKAGES TOOLBAR ── */
.pkg-toolbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .pkg-toolbar { flex-direction: row; align-items: center; }
}

/* Search */
.pkg-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  flex: 1;
  transition: border-color 0.2s ease;
}
.pkg-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.08);
}
.pkg-search svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.pkg-search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-primary);
  width: 100%;
}
.pkg-search input::placeholder {
  color: var(--text-muted);
}
.pkg-search-clear {
  border: none;
  background: var(--bg-primary);
  color: var(--text-muted);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: all 0.2s;
}
.pkg-search-clear:hover {
  background: var(--primary);
  color: #fff;
}

/* Sort */
.pkg-sort select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-secondary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 40px 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.2s;
  min-width: 180px;
}
.pkg-sort select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Filter chips */
.pkg-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pkg-filter-chip {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--bg-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-secondary);
}
.pkg-filter-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pkg-filter-chip.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* Results count */
.pkg-results-count {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.pkg-results-count strong {
  color: var(--text-primary);
}

/* Empty state */
.pkg-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.pkg-empty h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.pkg-empty p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Pagination */
.pkg-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pkg-page-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}
.pkg-page-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}
.pkg-page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.pkg-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 998;
  width: 42px;
  height: 42px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: all 0.3s ease;
}
.scroll-top.visible { opacity: 1; }
.scroll-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.scroll-top:hover svg { stroke: #fff; }
.scroll-top svg { width: 18px; height: 18px; stroke: var(--text-secondary); fill: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* ── CONTENT BODY ── */
.content-body { max-width: 780px; margin: 0 auto; }
.content-body h2 { font-size: 1.4rem; margin: 28px 0 12px; color: var(--text-primary); }
.content-body h3 { font-size: 1.1rem; margin: 20px 0 10px; color: var(--text-primary); }
.content-body p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 16px; }
.content-body ul, .content-body ol { padding-left: 24px; margin-bottom: 16px; }
.content-body li { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 8px; list-style: disc; }
.content-body ol li { list-style: decimal; }
.content-body a { color: var(--primary); font-weight: 500; }
.content-body a:hover { text-decoration: underline; }


/* =========================
   RESPONSIVE — MOBILE FIRST
   ========================= */

/* Base: mobile (default) */
.nav-links, .nav-cta { display: none; }
.nav-hamburger { display: flex; }
.hero-content { display: flex; flex-direction: column; }
.hero-btns { display: flex; flex-direction: column; width: 100%; }
.hero-stats { flex-wrap: wrap; gap: 1.25rem; }
.card { width: 100%; }
.values-list { grid-template-columns: 1fr; }
.tour-highlights { grid-template-columns: 1fr; }

/* --- Stat card (premium dark) --- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 20px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.stat-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  border-radius: 0 0 4px 4px;
}
.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.stat-card .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 8px;
}

/* --- Form card --- */
.form-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
body.dark-theme .form-card {
  background: var(--bg-elevated);
  border-color: var(--border);
}

/* --- Stat grid --- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* ── sm: 640px ── */
@media (min-width: 640px) {
  .container { padding: 0 24px; }

  .tour-grid, .grid-3, .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tour-highlights { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: row; }
  .btn { width: auto; }
  .values-list { grid-template-columns: 1fr 1fr; }

  .dest-slider .card {
    flex: 0 0 calc(50% - 10px);
    min-width: 280px;
  }
}

/* ── md: 768px ── */
@media (min-width: 768px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-hamburger { display: none; }
  .section { padding: 5rem 0; }
  .about-split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .contact-grid { grid-template-columns: 1fr 1.5fr; }
  .hero-stats { flex-wrap: nowrap; }
  .cta-banner {
    flex-direction: row;
    padding: 3.5rem;
    text-align: left;
    justify-content: space-between;
  }
  .tour-hero-meta { gap: 1.5rem; }
  .footer-bottom {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
  .form-row-premium {
    flex-direction: row;
  }
}

/* ── lg: 1024px ── */
@media (min-width: 1024px) {
  .section { padding: 6rem 0; }

  .tour-grid, .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .tour-body { flex-direction: row; }
  .tour-body > *:first-child { flex: 1; }
  .tour-body > *:last-child { width: 360px; flex-shrink: 0; }
  .tour-highlights { grid-template-columns: repeat(3, 1fr); }

  .dest-slider .card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
  }
}

/* ── xl: 1280px ── */
@media (min-width: 1280px) {
  /* layout polish at ultra-wide */
}


/* ── SUCCESS MODAL ── */
@keyframes modalFadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes modalSlideUp { from { opacity:0; transform:translateY(40px) scale(0.95); } to { opacity:1; transform:translateY(0) scale(1); } }
@keyframes checkDraw { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }
@keyframes circlePop { 0%{transform:scale(0);opacity:0;} 60%{transform:scale(1.15);} 100%{transform:scale(1);opacity:1;} }
@keyframes pulseGlow { 0%,100%{box-shadow:0 0 0 0 rgba(79,70,229,0.3);} 50%{box-shadow:0 0 0 16px rgba(79,70,229,0);} }

.cw-modal-overlay {
  position:fixed;inset:0;z-index:99999;background:rgba(0,0,0,0.55);
  backdrop-filter:blur(10px);display:flex;align-items:center;justify-content:center;
  animation:modalFadeIn .3s ease forwards;padding:20px;
}
.cw-modal-box {
  background:var(--bg-secondary);border-radius:20px;padding:44px 36px 36px;max-width:440px;width:100%;
  text-align:center;position:relative;overflow:hidden;
  animation:modalSlideUp .45s cubic-bezier(.34,1.56,.64,1) forwards;
  box-shadow:0 32px 80px rgba(0,0,0,0.2);
  border: 1px solid var(--border-light);
}
.cw-modal-box::before {
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:var(--gradient-brand);
}
.cw-check-wrap {
  width:80px;height:80px;background:var(--gradient-brand);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;animation:circlePop .5s cubic-bezier(.34,1.56,.64,1) .1s both,pulseGlow 2s ease .6s infinite;
}
.cw-check-wrap svg {
  width:40px;height:40px;stroke:#fff;fill:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;
  stroke-dasharray:100;stroke-dashoffset:100;animation:checkDraw .5s ease .5s forwards;
}
.cw-modal-title {
  font-family:'Poppins',sans-serif;font-size:1.6rem;font-weight:800;color:var(--text-primary);margin-bottom:8px;
}
.cw-modal-sub {
  font-size:.85rem;color:var(--text-secondary);line-height:1.7;margin-bottom:20px;
}
.cw-modal-details {
  background:var(--bg-primary);border:1px solid var(--border);border-radius:12px;
  padding:16px 18px;text-align:left;margin-bottom:20px;font-size:.82rem;color:var(--text-secondary);line-height:1.8;
}
.cw-modal-details strong { color:var(--primary); }
.cw-modal-btns { display:flex;gap:10px;flex-direction:column; }
.cw-btn-wa {
  display:flex;align-items:center;justify-content:center;gap:10px;
  background:#25D366;color:#fff;border:none;border-radius:50px;
  padding:13px 24px;font-size:.88rem;font-weight:600;cursor:pointer;
  transition:all .3s ease;font-family:'Inter',sans-serif;text-decoration:none;
}
.cw-btn-wa:hover {
  background:#1da851;transform:translateY(-2px);box-shadow:0 8px 28px rgba(37,211,102,0.35);
}
.cw-btn-close {
  background:transparent;color:var(--text-muted);border:1.5px solid var(--border);border-radius:50px;
  padding:11px 24px;font-size:.82rem;font-weight:500;cursor:pointer;
  transition:all .3s ease;font-family:'Inter',sans-serif;
}
.cw-btn-close:hover { border-color:var(--primary);color:var(--primary); }
.cw-modal-close-x {
  position:absolute;top:14px;right:14px;width:30px;height:30px;border-radius:50%;
  background:var(--bg-primary);border:none;cursor:pointer;display:flex;align-items:center;
  justify-content:center;color:var(--text-muted);font-size:.9rem;transition:all .2s;
}
.cw-modal-close-x:hover { background:var(--primary-light);color:var(--primary); }

/* ── TOAST NOTIFICATIONS ── */
.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1e293b;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    white-space: nowrap;
}
.custom-toast.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.custom-toast.error {
    background: #ef4444;
}
body.dark-theme .custom-toast {
    background: #334155;
    border: 1px solid rgba(255,255,255,0.1);
}
