/**
 * Author:  Kiran Khadka
 * Version: 1.0.0 (First edition)
 * Contact: +977-9869756622
 * Mail:    therealkiranda@gmail.com
 * © 2026 Kiran Khadka. All rights reserved.
 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');

:root {
  --gold:        #c49a3c;
  --gold-light:  #e8c46a;
  --navy:        #1B2B48;
  --navy-light:  #223656;
  --azure:       #4A8AE3;
  --ice:         #F4F7FB;
  --cool-gray:   #9BA7B8;
  --teal:        #2a6b6e;
  --teal-light:  #3d9194;
  --ink:         #0e0d0b;
  --cream:       #f5f0e8;
  --sand:        #e8dfc8;
  --white:       #fdfcf9;
}

/* ---- TYPOGRAPHY ---- */
body { font-family: 'DM Sans', sans-serif; background: var(--ice); color: var(--navy); }
.font-serif { font-family: 'Cormorant Garamond', serif; }

/* ---- NAVBAR ---- */
.voy-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99999 !important;
  padding: 18px 0;
  background: var(--navy) !important;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.voy-nav.scrolled {
  background: var(--navy) !important;
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.voy-nav .container { display: flex; align-items: center; justify-content: space-between; gap: 0; }
#desktop-menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
#desktop-menu .navbar-nav {
  margin: 0 auto;
  justify-content: center;
}
#desktop-menu .d-flex {
  margin-left: auto;
}
.voy-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300;
  color: #fff !important; text-decoration: none; letter-spacing: 0.1em;
}
.voy-brand span { color: var(--gold-light); font-style: italic; }
.voy-nav .nav-link { color: rgba(255,255,255,0.85) !important; font-size: 13px; letter-spacing: 0.06em; transition: color 0.2s; }
.voy-nav .nav-link:hover { color: var(--azure) !important; }
.voy-nav .navbar-toggler { color: #fff !important; border-color: rgba(255,255,255,0.45) !important; }
.voy-nav .navbar-toggler .bi { color: #fff !important; }
#mobile-menu-btn { color: #fff !important; }
#mobile-menu-btn .bi { color: #fff !important; }
.voy-nav .dropdown-toggle { color: #fff !important; }
.voy-nav .dropdown-toggle::after { color: #fff !important; }
.voy-nav .dropdown-menu {
  min-width: 180px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
}
.voy-nav .dropdown-item { color: var(--navy); }
.voy-nav .dropdown-item:hover, .voy-nav .dropdown-item:focus { background: var(--azure); color: #fff; }

/* ---- MOBILE MENU ---- */
#mobile-menu {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
/* #mobile-menu visibility is now controlled via opacity/transform in main.js */
#mobile-menu .navbar-nav {
  padding: 15px 20px;
  gap: 0 !important;
}
#mobile-menu .nav-item {
  padding: 0;
}
#mobile-menu .nav-link {
  padding: 12px 0 !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.85) !important;
}
#mobile-menu .dropdown-menu {
  position: static !important;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 10px 0 10px 20px;
  margin: 0;
  min-width: auto;
}
#mobile-menu .dropdown-item {
  padding: 8px 0;
  color: rgba(255,255,255,0.75) !important;
  font-size: 13px !important;
}
#mobile-menu .d-flex {
  padding: 15px 20px 10px;
  gap: 10px !important;
  flex-direction: column;
}
#mobile-menu .d-flex .btn {
  width: 100%;
}
#mobile-menu .dropdown-toggle::after {
  color: rgba(255,255,255,0.85) !important;
}

/* ---- THEME TOGGLE ---- */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}

/* ---- BUTTONS ---- */
.btn-gold {
  background: var(--navy); color: #fff !important;
  border: none; font-weight: 500; letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-outline-gold {
  border: 1.5px solid var(--azure); color: var(--navy) !important;
  background: transparent; font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.voy-nav .btn-outline-gold {
  border-color: rgba(255,255,255,0.85) !important;
  color: #fff !important;
}
.voy-nav .btn-outline-gold:hover {
  background: var(--azure);
  color: #fff !important;
}
.btn-outline-gold:hover { background: var(--azure); color: #fff !important; }
.text-gold { color: var(--gold) !important; }
.text-gold-light { color: var(--gold-light) !important; }
.bg-ink  { background: var(--ink) !important; }
.bg-cream { background: var(--cream) !important; }

/* ---- HERO ---- */
.hero-section {
  min-height: 100vh; position: relative;
  display: flex; align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&auto=format&fit=crop') center/cover;
  animation: heroZoom 18s ease-out forwards;
  transform: scale(1.05);
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(14,13,11,0.1) 0%, rgba(14,13,11,0.45) 50%, rgba(14,13,11,0.85) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 16px;
  animation: fadeUp 0.7s 0.3s both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px,7vw,90px); font-weight: 300; line-height: 1.0;
  color: #fff; margin-bottom: 20px;
  animation: fadeUp 0.8s 0.5s both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.7);
  max-width: 420px; line-height: 1.7; margin-bottom: 36px;
  animation: fadeUp 0.8s 0.7s both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

/* SEARCH BAR */
.hero-search-bar {
  background: rgba(253,252,249,0.97); border-radius: 4px;
  padding: 6px; display: flex; flex-wrap: wrap; gap: 0;
  box-shadow: 0 20px 60px rgba(14,13,11,0.25);
  animation: fadeUp 0.8s 0.9s both;
  max-width: 780px;
}
.search-group {
  flex: 1; min-width: 160px; padding: 14px 20px;
  border-right: 1px solid rgba(14,13,11,0.08);
}
.search-group:last-of-type { border-right: none; }
.search-group label {
  display: block; font-size: 9px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.search-group .form-select, .search-group .form-control {
  border: none; padding: 0; font-size: 14px; background: transparent; box-shadow: none;
}
.search-submit { min-width: 120px; border-radius: 2px; }

/* ---- SECTIONS ---- */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.section-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--azure); margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px,4vw,50px); font-weight: 300; line-height: 1.1;
  color: var(--navy);
}
.section-title em { font-style: italic; color: var(--azure); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }

/* CATEGORY PILLS */
.cat-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: #fff; border: 1.5px solid var(--sand);
  border-radius: 30px; font-size: 13px; font-weight: 500; color: var(--ink);
  text-decoration: none; transition: all 0.2s;
}
.cat-pill:hover { border-color: var(--gold); color: var(--gold); background: var(--cream); }

/* ---- PACKAGE CARDS ---- */
.package-card {
  background: #fff; border-radius: 6px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(14,13,11,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.package-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(14,13,11,0.12); }
.card-img-link { display: block; position: relative; overflow: hidden; height: 220px; }
.card-cover-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.package-card:hover .card-cover-img { transform: scale(1.06); }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--teal); color: #fff;
  font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.card-badge-gold { background: var(--gold); color: var(--ink); }
.card-body-custom { padding: 20px; }
.card-location { font-size: 12px; color: var(--gold); margin-bottom: 6px; }
.card-title-custom { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; margin-bottom: 8px; }
.card-title-custom a { color: var(--ink); text-decoration: none; }
.card-title-custom a:hover { color: var(--teal); }
.card-rating { margin-bottom: 8px; }
.card-meta { display: flex; gap: 14px; font-size: 12px; color: rgba(14,13,11,0.5); margin-bottom: 14px; }
.card-footer-custom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--sand); padding-top: 12px; }
.price-from { font-size: 10px; color: #999; display: block; }
.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--ink); }
.price-per { font-size: 11px; color: #999; }

/* WHY CARDS */
.why-card { padding: 28px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; }

/* STATS */
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label  { font-size: 13px; color: rgba(14,13,11,0.5); margin-top: 6px; }

/* CTA BLOCK */
.cta-block { background: var(--cream); border-radius: 6px; padding: 80px 40px; }

/* ---- PAGE HEADER ---- */
.page-header {
  background: var(--ice); padding: 100px 0 40px; margin-bottom: 0;
}
.page-header-title {
  font-family: 'Cormorant Garamond', serif; font-size: 48px;
  font-weight: 300; color: var(--navy);
}
.page-header-title em { font-style: italic; color: var(--azure); }
.breadcrumb-item a { color: var(--navy); }
.breadcrumb-item.active { color: rgba(27,43,72,0.65); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(27,43,72,0.35); }

/* ---- FILTER SIDEBAR ---- */
.filter-sidebar { background: #fff; border-radius: 6px; padding: 24px; box-shadow: 0 2px 16px rgba(14,13,11,0.06); }
.filter-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--sand); }
.filter-group { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--sand); }
.filter-group:last-of-type { border-bottom: none; }
.filter-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }

/* ---- PACKAGE DETAIL ---- */
.detail-hero { height: 480px; position: relative; background: center/cover no-repeat; }
.detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,13,11,0.85) 0%, rgba(14,13,11,0.2) 60%); }
.detail-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px,5vw,62px); font-weight: 300; color: #fff; line-height: 1.1; }
.detail-meta { color: rgba(255,255,255,0.75); font-size: 14px; }
.badge-category { display: inline-block; background: var(--teal); color: #fff; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; margin-bottom: 12px; }
.breadcrumb-dark .breadcrumb-item a { color: rgba(255,255,255,0.6); }
.breadcrumb-dark .breadcrumb-item.active { color: rgba(255,255,255,0.4); }
.breadcrumb-dark .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }

.section-block { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--sand); }
.section-block:last-child { border-bottom: none; }
.block-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; margin-bottom: 20px; }
.prose { line-height: 1.8; color: rgba(14,13,11,0.75); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 8px; border-radius: 6px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item-main { grid-row: span 2; }

/* ITINERARY */
.itinerary-list { position: relative; }
.itinerary-item { display: flex; gap: 24px; margin-bottom: 28px; }
.itinerary-day { min-width: 60px; background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 6px; border-radius: 4px; text-align: center; height: fit-content; }
.itinerary-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; margin-bottom: 8px; }
.itinerary-desc { color: rgba(14,13,11,0.65); font-size: 14px; line-height: 1.7; }
.itinerary-tag { font-size: 11px; background: var(--cream); border-radius: 20px; padding: 3px 10px; color: rgba(14,13,11,0.6); }

/* INCLUSIONS */
.inclusion-list { list-style: none; padding: 0; }
.inclusion-list li { padding: 6px 0; border-bottom: 1px solid var(--sand); font-size: 14px; }

/* REVIEWS */
.review-item { padding: 20px 0; border-bottom: 1px solid var(--sand); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; }
.review-form-block { background: var(--cream); border-radius: 6px; padding: 24px; }

/* STAR PICKER */
.star-picker { display: flex; flex-direction: row-reverse; gap: 4px; }
.star-picker input { display: none; }
.star-picker label { font-size: 28px; color: var(--sand); cursor: pointer; transition: color 0.15s; }
.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label { color: var(--gold); }

/* BOOKING SIDEBAR */
.booking-sidebar {
  position: relative;
  top: auto;
  background: #fff;
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 4px 32px rgba(14,13,11,0.1);
  z-index: 0 !important;
}
.booking-sidebar.sticky-top {
  position: relative !important;
  top: auto !important;
  z-index: 0 !important;
}

@media (min-width: 992px) {
  .booking-sidebar,
  .booking-sidebar.sticky-top {
    position: sticky !important;
    top: 135px !important;
    z-index: 0 !important;
  }
}
.booking-price-block { text-align: center; padding-bottom: 16px; border-bottom: 1px solid var(--sand); }
.booking-price { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--ink); line-height: 1; }
.booking-total-row { display: flex; justify-content: space-between; background: var(--cream); padding: 12px 16px; border-radius: 4px; font-size: 14px; }
.booking-sidebar-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--sand); }
.voy-nav { z-index: 999999 !important; }

/* ---- AUTH ---- */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 16px 40px; background: var(--cream); }
.auth-card { background: #fff; border-radius: 8px; padding: 48px 40px; width: 100%; max-width: 440px; box-shadow: 0 8px 48px rgba(14,13,11,0.1); }
.auth-logo { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; letter-spacing: 0.1em; margin-bottom: 24px; }
.auth-logo span { color: var(--gold); font-style: italic; }
.auth-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; margin-bottom: 6px; }
.auth-sub { color: rgba(14,13,11,0.5); margin-bottom: 28px; }

/* ---- DASHBOARD ---- */
.dash-sidebar { background: #fff; border-radius: 6px; padding: 24px; box-shadow: 0 2px 16px rgba(14,13,11,0.06); }
.dash-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 28px; margin: 0 auto; }
.dash-sidebar { text-align: center; }
.dash-nav { list-style: none; padding: 0; text-align: left; }
.dash-nav a { display: flex; align-items: center; padding: 10px 14px; border-radius: 4px; text-decoration: none; color: var(--ink); font-size: 14px; transition: background 0.2s; }
.dash-nav a:hover, .dash-nav a.active { background: var(--cream); color: var(--gold); }
.dash-card { background: #fff; border-radius: 6px; box-shadow: 0 2px 16px rgba(14,13,11,0.06); overflow: hidden; margin-bottom: 0; }
.dash-card-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--sand); }

/* STAT CARDS */
.stat-card { background: #fff; border-radius: 6px; padding: 20px; text-align: center; box-shadow: 0 2px 12px rgba(14,13,11,0.06); position: relative; }
.stat-icon { font-size: 28px; opacity: 0.15; position: absolute; top: 16px; right: 16px; }
.stat-val { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; }
.stat-lbl { font-size: 12px; color: rgba(14,13,11,0.5); }
.stat-card-gold .stat-val   { color: var(--gold); }
.stat-card-success .stat-val{ color: #2d8a4e; }
.stat-card-warning .stat-val{ color: #e8a838; }
.stat-card-info .stat-val   { color: #3d9194; }

/* BADGES */
.badge-status { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.badge-status-pending   { background: #fff3cd; color: #7d6011; }
.badge-status-confirmed { background: #d1e7dd; color: #155724; }
.badge-status-completed { background: #cfe2ff; color: #084298; }
.badge-status-cancelled { background: #f8d7da; color: #721c24; }
.badge-status-verified  { background: #d1e7dd; color: #155724; }
.badge-status-rejected  { background: #f8d7da; color: #721c24; }

/* TABLES */
.voy-table { font-size: 14px; }
.voy-table th { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(14,13,11,0.4); border-bottom: 2px solid var(--sand); }

/* DETAIL FIELDS */
.detail-field { background: var(--cream); border-radius: 4px; padding: 12px 16px; }
.detail-field-label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.detail-field-val { font-size: 15px; }

/* BANK INFO */
.bank-info { background: var(--cream); border-radius: 6px; padding: 20px; border-left: 4px solid var(--gold); }

/* FOOTER */
.voy-footer { background: var(--navy); color: #fff; margin-top: 80px; }
.footer-heading { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li, .footer-links a { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.85); text-decoration: none; margin-bottom: 10px; display: block; transition: color 0.2s; }
.footer-links a:hover { color: var(--azure); }
.voy-footer .text-muted { color: rgba(255,255,255,0.9) !important; }
.voy-footer .text-muted a { color: rgba(255,255,255,0.9) !important; }
.footer-social { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); text-decoration: none; transition: all 0.2s; }
.footer-social:hover { border-color: var(--azure); color: var(--azure); }
.footer-divider { border-color: rgba(255,255,255,0.08); }

/* PAGINATION */
.page-link { color: var(--ink); }
.page-item.active .page-link { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* FORMS */
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 0.2rem rgba(196,154,60,0.15); }

/* RESPONSIVE NAV */
@media (max-width: 991px) {
  .voy-nav { background: var(--navy) !important; }
  .hero-search-bar { flex-direction: column; }
  .search-group { border-right: none; border-bottom: 1px solid rgba(14,13,11,0.08); }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item-main { grid-row: auto; }
  .voy-nav .navbar-collapse { background: var(--navy); padding: 20px; }
  .voy-nav .navbar-nav .nav-item { padding: 8px 0; }
  .voy-nav .navbar-nav .nav-item .nav-link { padding: 10px 0; font-size: 16px; }
  .voy-nav .navbar-collapse .d-flex { margin-top: 20px; flex-direction: column; gap: 10px; }
  .voy-nav .navbar-collapse .d-flex .btn { width: 100%; justify-content: center; }
}
