/* ============================================================
   WanderLux Travels - Premium CSS Design System
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy: #0f3460;
  --navy-dark: #1a1a2e;
  --navy-mid: #16213e;
  --gold: #e8b86d;
  --gold-dark: #c9922a;
  --gold-light: #f5d08a;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #f1f3f5;
  --mid-gray: #dee2e6;
  --text-dark: #1a1a2e;
  --text-body: #4a4a6a;
  --text-light: #9099a6;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 32px;
  --shadow-sm: 0 2px 12px rgba(15,52,96,0.08);
  --shadow-md: 0 8px 30px rgba(15,52,96,0.12);
  --shadow-lg: 0 20px 60px rgba(15,52,96,0.18);
  --shadow-gold: 0 8px 25px rgba(232,184,109,0.35);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  padding-bottom: 70px; /* mobile bottom nav */
}
@media (min-width: 992px) { body { padding-bottom: 0; } }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 600;
}
p { color: var(--text-body); }
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; height: auto; }

/* ---- Skip Link ---- */
.skip-link { position: absolute; top: -100%; left: 0; z-index: 9999; padding: 12px 20px; background: var(--navy); color: #fff; }
.skip-link:focus { top: 0; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(232,184,109,0.2);
}
.top-bar-item { display: inline-flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 13px; height: 13px; }
.top-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  margin-left: 4px;
  transition: var(--transition);
}
.top-social:hover { background: var(--gold); color: var(--navy-dark); }
.top-social svg { width: 13px; height: 13px; }

/* ---- NAVBAR ---- */
.main-navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(15,52,96,0.06);
  transition: var(--transition);
}
.main-navbar.scrolled { box-shadow: var(--shadow-md); }
.main-navbar .container { height: 68px; }

/* Brand */
.brand-logo {
  display: flex; align-items: center; gap: 10px;
}
.brand-icon {
  font-size: 22px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: 0.5px;
}
.brand-tagline { font-size: 9px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }

/* Nav Links */
.main-navbar .nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
  position: relative;
}
.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { transform: scaleX(1); }
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--navy) !important; }

/* Gold Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark) !important;
  border: none;
  font-weight: 600;
  border-radius: 50px;
  padding: 9px 22px;
  font-size: 13px;
  letter-spacing: 0.4px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(232,184,109,0.45);
  color: var(--navy-dark) !important;
}
.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold-dark) !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  background: transparent;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark) !important;
}
.btn-nav-cta {
  padding: 8px 20px !important;
  font-size: 13px !important;
}

/* Navbar Toggler */
.navbar-toggler { border: none; padding: 8px; background: transparent; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-line {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Offcanvas */
.mobile-nav-drawer {
  background: var(--navy-dark);
  width: 300px !important;
}
.mobile-nav-drawer .offcanvas-header { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px; }
.mobile-nav-drawer .brand-logo-sm { display: flex; align-items: center; gap: 8px; }
.mobile-nav-drawer .brand-logo-sm .brand-icon { color: var(--gold); font-size: 20px; -webkit-text-fill-color: var(--gold); }
.mobile-nav-drawer .brand-logo-sm .brand-name { color: white; font-family: var(--font-display); font-size: 17px; font-weight: 700; }
.mobile-nav-list { list-style: none; padding: 20px 0; margin: 0; }
.mobile-nav-list li a {
  display: block;
  padding: 13px 25px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.mobile-nav-list li a:hover,
.mobile-nav-list li a.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(232,184,109,0.08);
  padding-left: 30px;
}
.mobile-nav-footer { padding: 20px 20px 30px; border-top: 1px solid rgba(255,255,255,0.1); }

/* ---- HERO SLIDER ---- */
.hero-swiper { height: 90vh; min-height: 580px; }
@media (max-width: 768px) { .hero-swiper { height: 75vh; min-height: 480px; } }
.hero-slide {
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.swiper-slide-active .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,52,96,0.75) 0%, rgba(26,26,46,0.65) 60%, rgba(26,26,46,0.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  color: white;
  padding: 60px 0;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(232,184,109,0.2);
  border: 1px solid rgba(232,184,109,0.5);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 35px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark) !important;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  border: none;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(232,184,109,0.5); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: white !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* Hero Stats Strip */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  background: white;
  padding: 18px 0;
  box-shadow: var(--shadow-md);
}
.hero-stat-item { text-align: center; padding: 0 15px; border-right: 1px solid var(--mid-gray); }
.hero-stat-item:last-child { border-right: none; }
.hero-stat-number { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--navy); }
.hero-stat-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* Swiper Controls */
.swiper-button-next, .swiper-button-prev {
  width: 48px !important; height: 48px !important;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: white !important;
  transition: var(--transition);
}
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--gold); border-color: var(--gold); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px !important; font-weight: 700; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.5) !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; width: 24px !important; border-radius: 4px !important; }

/* ---- SEARCH BAR ---- */
.smart-search-section { margin-top: -30px; position: relative; z-index: 10; }
.search-card {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15,52,96,0.06);
}
.search-card .search-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.search-field-group { position: relative; }
.search-field-group label { font-size: 11px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; display: block; }
.search-field-group .form-control,
.search-field-group .form-select {
  border: 1.5px solid var(--mid-gray);
  border-radius: 10px;
  padding: 11px 15px;
  font-size: 14px;
  color: var(--text-dark);
  font-family: var(--font-body);
  transition: var(--transition);
  height: auto;
  background: var(--off-white);
}
.search-field-group .form-control:focus,
.search-field-group .form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,52,96,0.1);
  background: white;
}
.btn-search-go {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 26px;
}
.btn-search-go:hover { background: linear-gradient(135deg, var(--navy-mid), var(--navy)); transform: translateY(-1px); box-shadow: var(--shadow-md); color: white; }

/* ---- SECTION STYLES ---- */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--navy-dark); }
.section-gradient { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); }
.section-light { background: var(--off-white); }
.section-title-block { margin-bottom: 50px; }
.section-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(232,184,109,0.15);
  border: 1px solid rgba(232,184,109,0.4);
  color: var(--gold-dark);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-title-dark { color: white; }
.section-title em { color: var(--gold); font-style: italic; }
.section-desc { font-size: 15px; color: var(--text-light); max-width: 560px; }
.section-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 14px 0;
}

/* ---- PACKAGE CARD ---- */
.pkg-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(15,52,96,0.06);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.pkg-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pkg-card:hover .pkg-card-img img { transform: scale(1.06); }
.pkg-card-badges {
  position: absolute; top: 14px; left: 14px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.badge-tag {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-featured { background: var(--gold); color: var(--navy-dark); }
.badge-bestseller { background: #e74c3c; color: white; }
.badge-trending { background: #27ae60; color: white; }
.pkg-card-save {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}
.pkg-card-save:hover { background: #fee; }
.pkg-card-save svg { width: 16px; height: 16px; color: var(--text-light); }
.pkg-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pkg-card-destination { font-size: 11px; font-weight: 600; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.pkg-card-destination svg { width: 11px; height: 11px; }
.pkg-card-title { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; font-family: var(--font-display); line-height: 1.35; }
.pkg-card-title a { color: inherit; }
.pkg-card-title a:hover { color: var(--navy); }
.pkg-card-meta { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.pkg-meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-light); font-weight: 500; }
.pkg-meta-item svg { width: 13px; height: 13px; }
.pkg-card-rating { font-size: 13px; margin-bottom: 14px; }
.pkg-card-rating .stars { color: var(--gold); }
.pkg-card-footer { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--light-gray); display: flex; align-items: center; justify-content: space-between; }
.pkg-price-old { font-size: 12px; color: var(--text-light); text-decoration: line-through; }
.pkg-price-current { font-size: 20px; font-weight: 700; color: var(--navy); font-family: var(--font-display); }
.pkg-price-per { font-size: 11px; color: var(--text-light); font-family: var(--font-body); font-weight: 400; }
.pkg-price-save { font-size: 11px; color: #27ae60; font-weight: 600; }
.btn-pkg-book {
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white !important;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-pkg-book:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy-dark) !important; transform: translateY(-1px); }

/* ---- DESTINATION CARD ---- */
.dest-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.dest-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,52,96,0.85) 0%, rgba(15,52,96,0.2) 60%, transparent 100%);
  transition: var(--transition);
}
.dest-card:hover::after { background: linear-gradient(to top, rgba(15,52,96,0.9) 0%, rgba(15,52,96,0.4) 70%, rgba(15,52,96,0.1) 100%); }
.dest-card img {
  width: 100%; display: block;
  transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.07); }
.dest-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 20px;
  transform: translateY(8px);
  transition: var(--transition);
}
.dest-card:hover .dest-card-body { transform: translateY(0); }
.dest-name { color: white; font-family: var(--font-display); font-size: 20px; font-weight: 700; margin: 0; }
.dest-country { color: var(--gold); font-size: 12px; font-weight: 600; margin-top: 3px; display: flex; align-items: center; gap: 4px; }
.dest-pkg-count {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(232,184,109,0.2);
  border: 1px solid rgba(232,184,109,0.4);
  border-radius: 50px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px;
  opacity: 0;
  transition: var(--transition);
}
.dest-card:hover .dest-pkg-count { opacity: 1; }

/* Different heights for masonry effect */
.dest-card-tall img { height: 380px; object-fit: cover; }
.dest-card-short img { height: 180px; object-fit: cover; }
.dest-card-mid img { height: 280px; object-fit: cover; }

/* ---- TESTIMONIAL CARD ---- */
.testimonial-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid rgba(15,52,96,0.06);
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(15,52,96,0.06);
  font-weight: 700;
}
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--text-body); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-avatar-placeholder {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px;
  font-family: var(--font-display);
}
.testimonial-author-name { font-weight: 600; font-size: 14px; color: var(--text-dark); margin: 0; }
.testimonial-author-loc { font-size: 12px; color: var(--text-light); }
.testimonial-package { font-size: 11px; color: var(--gold-dark); font-weight: 600; margin-top: 3px; }

/* ---- WHY CHOOSE US ---- */
.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--border-radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(232,184,109,0.3); transform: translateY(-4px); }
.why-icon {
  width: 70px; height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232,184,109,0.15), rgba(232,184,109,0.05));
  border: 1px solid rgba(232,184,109,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.why-title { color: white; font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.why-desc { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.65; }

/* ---- FILTERS ---- */
.filter-bar {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  position: sticky;
  top: 80px;
}
.filter-section-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 14px; }
.filter-check { margin-bottom: 8px; }
.filter-check .form-check-input:checked { background-color: var(--navy); border-color: var(--navy); }
.filter-check .form-check-label { font-size: 13.5px; cursor: pointer; }
.price-range-slider { accent-color: var(--navy); }
.active-filter-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: rgba(15,52,96,0.08);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.active-filter-tag:hover { background: var(--navy); color: white; }

/* ---- PACKAGE DETAIL ---- */
.package-gallery-main { border-radius: var(--border-radius-lg); overflow: hidden; }
.package-gallery-main img { width: 100%; height: 420px; object-fit: cover; }
.gallery-thumbs { margin-top: 10px; }
.gallery-thumbs img { height: 80px; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: 0.7; transition: var(--transition); }
.gallery-thumbs img:hover,
.gallery-thumbs .swiper-slide-thumb-active img { opacity: 1; outline: 2px solid var(--gold); }
.detail-card { background: white; border-radius: var(--border-radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(15,52,96,0.06); margin-bottom: 24px; }
.detail-card h5 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.itinerary-day { border-left: 3px solid var(--gold); padding: 16px 20px; margin-bottom: 16px; border-radius: 0 10px 10px 0; background: var(--off-white); }
.itinerary-day-label { font-size: 11px; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1px; }
.itinerary-day-title { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.included-list li { padding: 6px 0; font-size: 14px; display: flex; align-items: flex-start; gap: 8px; }
.included-list li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.excluded-list li { padding: 6px 0; font-size: 14px; display: flex; align-items: flex-start; gap: 8px; }
.excluded-list li::before { content: '✗'; color: var(--danger); font-weight: 700; flex-shrink: 0; }
.booking-sticky-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15,52,96,0.08);
  overflow: hidden;
  position: sticky;
  top: 88px;
}
.booking-sticky-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 22px 24px;
  color: white;
}
.booking-sticky-price { font-size: 28px; font-weight: 700; color: var(--gold); font-family: var(--font-display); }
.booking-sticky-body { padding: 22px 24px; }

/* ---- DASHBOARD ---- */
.dashboard-sidebar {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,52,96,0.06);
  overflow: hidden;
}
.dash-sidebar-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 28px 24px;
  text-align: center;
}
.dash-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  margin-bottom: 12px;
}
.dash-avatar-placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--navy-dark);
  font-weight: 700;
  font-family: var(--font-display);
  border: 3px solid rgba(255,255,255,0.3);
  margin: 0 auto 12px;
}
.dash-user-name { color: white; font-size: 16px; font-weight: 600; margin: 0; }
.dash-user-email { color: rgba(255,255,255,0.6); font-size: 12px; }
.dash-nav-list { padding: 16px 0; }
.dash-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.dash-nav-item:hover,
.dash-nav-item.active {
  color: var(--navy);
  border-left-color: var(--gold);
  background: rgba(15,52,96,0.04);
}
.dash-nav-item svg { width: 17px; height: 17px; }
.stat-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,52,96,0.06);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 24px; height: 24px; }
.stat-icon-navy { background: rgba(15,52,96,0.1); color: var(--navy); }
.stat-icon-gold { background: rgba(232,184,109,0.15); color: var(--gold-dark); }
.stat-icon-green { background: rgba(40,167,69,0.1); color: var(--success); }
.stat-icon-red { background: rgba(220,53,69,0.1); color: var(--danger); }
.stat-number { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--text-dark); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-top: 4px; }

/* ---- BOOKING STATUS BADGES ---- */
.status-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 600; }
.status-pending { background: rgba(255,193,7,0.15); color: #856404; }
.status-confirmed { background: rgba(40,167,69,0.12); color: #155724; }
.status-cancelled { background: rgba(220,53,69,0.12); color: #721c24; }
.status-completed { background: rgba(15,52,96,0.1); color: var(--navy); }

/* ---- FORMS ---- */
.form-label { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--mid-gray);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
  color: var(--text-dark);
}
.form-control:focus, .form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,52,96,0.1);
}
.input-group > .form-control { border-radius: 10px 0 0 10px; }
.input-group > .btn { border-radius: 0 10px 10px 0; }
.form-check-input:checked { background-color: var(--navy); border-color: var(--navy); }

/* ---- AUTH PAGES ---- */
.auth-wrap {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 40px 20px;
}
.auth-card {
  background: white;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}
.auth-card-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 36px 36px 30px;
  text-align: center;
}
.auth-card-header .brand-icon { font-size: 32px; -webkit-text-fill-color: var(--gold); color: var(--gold); }
.auth-card-header h2 { color: white; font-size: 22px; margin: 10px 0 5px; }
.auth-card-header p { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; }
.auth-card-body { padding: 32px 36px; }
.auth-divider { text-align: center; position: relative; margin: 20px 0; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--mid-gray); }
.auth-divider span { position: relative; background: white; padding: 0 12px; font-size: 12px; color: var(--text-light); font-weight: 500; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-title { font-size: clamp(28px,5vw,48px); color: white; font-weight: 700; margin-bottom: 10px; }
.page-hero-breadcrumb .breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 13px; }
.page-hero-breadcrumb .breadcrumb-item a { color: var(--gold); }
.page-hero-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.8); }
.page-hero-breadcrumb .breadcrumb-divider { color: rgba(255,255,255,0.4); }

/* ---- BLOG CARD ---- */
.blog-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(15,52,96,0.06);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 22px; }
.blog-card-category { font-size: 11px; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1px; }
.blog-card-title { font-size: 16px; font-weight: 600; margin: 8px 0 12px; line-height: 1.4; }
.blog-card-title a { color: var(--text-dark); }
.blog-card-title a:hover { color: var(--navy); }
.blog-card-meta { font-size: 12px; color: var(--text-light); display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.main-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); }
.footer-main { padding: 70px 0 40px; }
.footer-brand .brand-logo { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-icon { -webkit-text-fill-color: var(--gold); color: var(--gold); font-size: 22px; }
.footer-brand .brand-name { color: white; font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.75; margin: 16px 0 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 13px; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-widget-title { font-size: 14px; font-weight: 700; color: white; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.footer-links li a::before { content: '›'; color: var(--gold); font-size: 16px; line-height: 1; }
.footer-links li a:hover { color: var(--gold); padding-left: 4px; }
.newsletter-form .form-control { border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.08); color: white; border-radius: 10px 0 0 10px; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form .form-control:focus { border-color: var(--gold); box-shadow: none; background: rgba(255,255,255,0.12); }
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ---- MOBILE BOTTOM NAV ---- */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: white;
  border-top: 1px solid var(--mid-gray);
  display: flex;
  height: 64px;
  box-shadow: 0 -4px 20px rgba(15,52,96,0.1);
}
.mobile-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-light);
  font-size: 10px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.mobile-nav-btn svg { width: 20px; height: 20px; }
.mobile-nav-btn.active { color: var(--navy); }
.mobile-nav-btn.active svg { color: var(--navy); }
.mobile-nav-center { position: relative; }
.mobile-nav-fab {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(15,52,96,0.4);
  margin-top: -14px;
  margin-bottom: 2px;
}
.mobile-nav-fab svg { color: white !important; width: 22px; height: 22px; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 80px; right: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 25px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-tooltip {
  position: absolute;
  right: 66px; top: 50%;
  transform: translateY(-50%);
  background: white;
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: white;
  border-right: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@media (min-width: 992px) { .whatsapp-float { bottom: 30px; } }

/* ---- UTILITY ---- */
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-navy-dark { background: var(--navy-dark) !important; }
.bg-gold { background: var(--gold) !important; }
.rounded-xl { border-radius: var(--border-radius-xl) !important; }
.shadow-gold { box-shadow: var(--shadow-gold) !important; }
.font-display { font-family: var(--font-display) !important; }
.img-lazy { opacity: 0; transition: opacity 0.4s ease; }
.img-lazy.loaded { opacity: 1; }
.overlay-navy { background: linear-gradient(135deg, rgba(15,52,96,0.8), rgba(26,26,46,0.7)); }

/* Loading spinner */
.spinner-gold { color: var(--gold) !important; }
.page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
.page-loader.done { opacity: 0; pointer-events: none; }
.loader-logo { text-align: center; color: var(--gold); font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.loader-dots { display: flex; gap: 6px; justify-content: center; margin-top: 18px; }
.loader-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: bounce 1.2s infinite ease-in-out; }
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%,80%,100%{transform:scale(0)} 40%{transform:scale(1)} }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .section { padding: 55px 0; }
  .hero-swiper { height: 72vh; }
  .filter-bar { position: static; }
}
@media (max-width: 767px) {
  .section { padding: 44px 0; }
  .section-title { font-size: 24px; }
  .search-card { padding: 20px; }
  .pkg-card-img { height: 190px; }
  .booking-sticky-card { position: static; }
  .auth-card-body { padding: 24px 22px; }
  .auth-card-header { padding: 28px 22px; }
  .hero-stats .d-flex { flex-wrap: wrap; }
  .hero-stat-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid var(--mid-gray); }
}
