/* DESIGN TOKENS — UPDATE FOR REBRAND */

:root {
  --brand-primary: #01509D;
  --brand-primary-dark: #003366;
  --brand-primary-light: #337ab7;
  --brand-dark: #0f1117;
  --brand-mid: #1a1e2a;
  --brand-surface: #f6f3ee;
  --brand-surface-alt: #edeae3;
  --brand-text: #0f1117;
  --brand-muted: #6b6b6b;
  --brand-white: #ffffff;
  --brand-black: #000000;
  --brand-dark-rgb: 15, 17, 23;
  --brand-white-rgb: 255, 255, 255;
  --brand-black-rgb: 0, 0, 0;
  --brand-success: #10b981;
  --brand-rating: #ffd700;
  --brand-footer-bg: #08090e;
  --brand-surface-input: #f8f6f0;
  --brand-surface-form: #f8f9fa;
  --brand-border-form: #e9ecef;
  --brand-eyebrow: #ffd700;
  --brand-link-warm: #ffcc00;
  --brand-border: rgba(15, 17, 23, 0.1);
  --font-display: "Cormorant Garamond", serif;
  --font-body: "DM Sans", sans-serif;

  /* Bootstrap 5 Global Overrides */
  --bs-primary: #004b93;
  --bs-primary-rgb: 0, 75, 147;
  --bs-link-color: #004b93;
  --bs-link-hover-color: #003366;
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), 0.25);

  /* Native browser element override */
  accent-color: var(--brand-primary);
}

.bg-brand-dark {
  background-color: var(--brand-dark) !important;
}

.bg-brand-surface {
  background-color: var(--brand-surface) !important;
}

.bg-brand-primary {
  background-color: var(--brand-primary) !important;
}

.text-brand-primary {
  color: var(--brand-primary) !important;
}

.bg-white-10 {
  background-color: rgba(var(--brand-white-rgb), 0.1) !important;
}

/* BASE */

.py-section {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .py-section {
    padding: 70px 0;
  }
}

.pt-120 {
  padding-top: 120px !important;
}

@media (max-width: 767px) {
  .pt-120 {
    padding-top: 60px !important;
  }
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--brand-surface);
  color: var(--brand-text);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-primary);
  display: block;
  margin-bottom: 0.55rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.06;
}

.section-title em {
  font-style: italic;
  color: var(--brand-primary);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

.reveal-d4 {
  transition-delay: 0.4s;
}

/* Buttons are now using Bootstrap button classes instead of custom .btn-brand styles */
.btn-primary {
  background: var(--brand-primary) !important;
  border: none !important;
  color: var(--brand-white) !important;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary.active,
.show>.btn-primary.dropdown-toggle,
.btn-primary:active:focus {
  background: var(--brand-primary-dark) !important;
  background-color: var(--brand-primary-dark) !important;
  border-color: var(--brand-primary-dark) !important;
  color: var(--brand-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(var(--bs-primary-rgb), 0.35) !important;
}

.btn-outline-dark {
  color: var(--brand-dark);
  border-color: var(--brand-dark);
  border-width: 1.5px;
  border-radius: 50px;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-dark:hover,
.btn-outline-dark:active,
.btn-outline-dark:focus {
  background: var(--brand-dark);
  color: var(--brand-white);
  border-color: var(--brand-dark);
}

.btn-outline-primary {
  color: var(--brand-white) !important;
  background: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  border-width: 1.5px;
  border-radius: 50px;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:focus-visible,
.btn-outline-primary.active,
.btn-outline-primary:active:focus {
  background: var(--brand-primary-dark) !important;
  background-color: var(--brand-primary-dark) !important;
  color: var(--brand-white) !important;
  border-color: var(--brand-primary-dark) !important;
}

.btn-outline-primary:disabled,
.btn-outline-primary[disabled] {
  color: rgba(var(--brand-white-rgb), 0.7);
  background: rgba(var(--bs-primary-rgb), 0.5);
  border-color: rgba(var(--bs-primary-rgb), 0.6);
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-outline-light {
  color: var(--brand-white) !important;
  background: rgba(var(--brand-white-rgb), 0.18) !important;
  border: 1px solid rgba(var(--brand-white-rgb), 0.4) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-light:hover,
.btn-outline-light:active,
.btn-outline-light:focus {
  background: rgba(var(--brand-white-rgb), 0.3) !important;
  color: var(--brand-white) !important;
  border-color: rgba(var(--brand-white-rgb), 0.5) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(var(--brand-black-rgb), 0.15);
}

.form-control {
  border-radius: 10px;
  border: 1px solid rgba(var(--brand-white-rgb), 0.1);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: rgba(var(--brand-white-rgb), 0.07);
  color: var(--brand-white);
  transition: border-color 0.2s;
}

.form-control:focus {
  background: rgba(var(--brand-white-rgb), 0.07);
  color: var(--brand-white);
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

.form-control::placeholder {
  color: rgba(var(--brand-white-rgb), 0.28);
}

.section-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-text);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s;
}

.section-link:hover {
  color: var(--brand-primary);
}

/* NAVBAR */

#navbar {
  z-index: 1050;
  padding: 20px 0;
  transition: all 0.35s ease;
}

#navbar.scrolled {
  background: rgba(15, 17, 23, 0.96) !important;
  backdrop-filter: blur(18px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(var(--brand-black-rgb), 0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark i {
  color: var(--brand-white);
  font-size: 0.95rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-white);
}

.navbar-toggler {
  border: 1.5px solid rgba(var(--brand-white-rgb), 0.35);
  padding: 5px 9px;
}

.navbar-toggler i {
  color: var(--brand-white);
  font-size: 1.1rem;
}

.nav-link-item {
  color: rgba(var(--brand-white-rgb), 0.75) !important;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 0 !important;
  position: relative;
  transition: color 0.2s;
}

.nav-link-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--brand-primary);
  transition: right 0.3s;
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--brand-white) !important;
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
  right: 0;
}

.nav-cta {
  background: var(--brand-primary) !important;
  color: var(--brand-white) !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--brand-primary-dark) !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(10, 12, 18, 0.97);
    border-radius: 14px;
    margin-top: 12px;
    padding: 16px 20px;
  }

  .nav-link-item {
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(var(--brand-white-rgb), 0.06);
  }

  .nav-link-item::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    display: inline-block;
  }
}

/* HERO */

#hero {
  background:
    linear-gradient(135deg,
      rgba(15, 17, 23, 0.9) 0%,
      rgba(15, 17, 23, 0.5) 55%,
      rgba(var(--bs-primary-rgb), 0.1) 100%),
    url("../images/hero_mountain.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: visible;
  padding-top: 120px;
  padding-bottom: 0;
}

.hero-eyebrow {
  color: var(--brand-primary-light);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.1rem;
  animation: fadeUp 0.7s ease 0.15s both;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  color: var(--brand-white);
  line-height: 0.96;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-title em {
  color: var(--brand-primary);
  font-style: italic;
}

.hero-subtitle {
  color: rgba(var(--brand-white-rgb), 0.6);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.7s ease 0.45s both;
}

.hero-btns {
  animation: fadeUp 0.7s ease 0.6s both;
}

/* Hero stats (desktop) */
.hero-stats {
  position: absolute;
  bottom: 50px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeLeft 0.7s ease 0.75s both;
}

.stat-chip {
  background: rgba(var(--brand-white-rgb), 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(var(--brand-white-rgb), 0.13);
  border-radius: 14px;
  padding: 13px 20px;
  text-align: right;
}

.stat-chip .snum {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand-white);
  line-height: 1;
}

.stat-chip .slbl {
  font-size: 0.68rem;
  color: rgba(var(--brand-white-rgb), 0.4);
  margin-top: 2px;
}

/* Search bar */
.hero-search {
  position: relative;
  width: 100%;
  z-index: 10;
  margin-top: auto;
}

.search-card {
  background: var(--brand-white);
  border-radius: 18px 18px 0 0;
  padding: 26px 36px;
  box-shadow: 0 -14px 40px rgba(var(--brand-black-rgb), 0.12);
  display: flex;
  align-items: flex-end;
  gap: 0;
  flex-wrap: wrap;
}

.s-field {
  flex: 1;
  min-width: 140px;
  padding: 0 22px;
  border-right: 1px solid var(--brand-border);
}

.s-field:first-child {
  padding-left: 0;
}

.s-field:last-of-type {
  border-right: none;
}

.s-field label {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 5px;
}

.s-field input:not([type="date"]) {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--brand-text);
  background: transparent;
  appearance: none;
}

.s-field input[type="date"] {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--brand-text);
  background: transparent;
}

.s-field select {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--brand-text);
  background: transparent;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230f1117' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  background-size: 16px 12px;
  padding-right: 24px;
}

/* Custom Dropdown Styling */
.custom-traveler-dropdown .dropdown-toggle::after {
  content: none;
}

.custom-traveler-dropdown .dropdown-toggle {
  background-image: none;
  padding-right: 0 !important;
}

.custom-traveler-dropdown .dropdown-toggle:focus,
.custom-traveler-dropdown .dropdown-toggle:active,
.custom-traveler-dropdown .dropdown-toggle.show {
  box-shadow: none !important;
  border-color: transparent !important;
  outline: none !important;
  color: var(--brand-text) !important;
  background-color: transparent !important;
}

.custom-traveler-dropdown .dropdown-menu {
  box-shadow: 0 12px 30px rgba(var(--brand-black-rgb), 0.12) !important;
  border: 1px solid var(--brand-border) !important;
}

.custom-traveler-dropdown .dropdown-item {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
  color: var(--brand-text);
  margin-bottom: 2px;
}

.custom-traveler-dropdown .dropdown-item:last-child {
  margin-bottom: 0;
}

.custom-traveler-dropdown .dropdown-item:hover,
.custom-traveler-dropdown .dropdown-item:active,
.custom-traveler-dropdown .dropdown-item.active {
  background: var(--brand-primary) !important;
  color: var(--brand-white) !important;
}

/* Booking modal */
.booking-modal {
  border: none;
  border-radius: 14px;
  overflow: hidden;
}

.booking-modal .modal-header,
.booking-modal .modal-footer {
  border-color: var(--brand-border);
  padding: 22px 24px;
}

.booking-modal .modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--brand-text);
}

.booking-modal .modal-body {
  padding: 24px;
}

.booking-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-summary div {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 12px 14px;
}

.booking-summary span,
.booking-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 5px;
}

.booking-summary strong {
  display: block;
  color: var(--brand-text);
  font-size: 0.94rem;
  font-weight: 600;
}

.booking-input {
  background: var(--brand-white) !important;
  border: 1px solid var(--brand-border) !important;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--brand-text) !important;
  font-size: 0.9rem;
}

.booking-input::placeholder {
  color: var(--brand-muted) !important;
}

.booking-input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.18rem rgba(var(--bs-primary-rgb), 0.14);
}

/* Enhanced Booking Modal Styles */
.pricing-breakdown {
  background: var(--brand-surface-alt);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(15, 17, 23, 0.05);
}

.breakdown-item span:first-child {
  font-size: 0.82rem;
  color: var(--brand-muted);
}

.breakdown-item span:last-child {
  font-size: 0.9rem;
  color: var(--brand-text);
  font-weight: 600;
}

.breakdown-item.discount span {
  color: var(--brand-success) !important;
  font-weight: 700;
}

.breakdown-item.discount i {
  color: var(--brand-success) !important;
}

.breakdown-total {
  border-top: 1px dashed rgba(15, 17, 23, 0.1) !important;
}

.breakdown-total span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-text);
}

.booking-label i {
  color: var(--brand-primary);
  margin-right: 5px;
}

/* Ensure date inputs are styled correctly */
input[type="date"].booking-input {
  min-height: 48px;
}

/* Modal Footer Buttons - Equal Width */
.booking-modal .modal-footer {
  display: flex;
  gap: 12px;
}

.booking-modal .modal-footer .btn {
  flex: 1;
  margin: 0;
  white-space: nowrap;
  height: 52px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  #hero {
    padding-bottom: 0px !important;
  }

  .hero-stats,
  .hero-scroll {
    display: none;
  }

  .hero-search {
    margin-bottom: -50px !important;
    position: relative !important;
    z-index: 10 !important;
  }

  .search-card {
    flex-direction: column;
    gap: 14px;
    padding: 20px 20px 10px !important;
  }

  .s-field {
    padding: 0;
    border-right: none;
    min-width: 100%;
    border-bottom: 1px solid var(--brand-border);
    padding-bottom: 12px;
  }

  .s-field:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .booking-summary {
    grid-template-columns: 1fr;
  }

  /* Global Button Standardization - Mobile */
  .hero-btns .btn,
  .hero-btns a,
  .hero-btns button,
  .btn-group-responsive .btn,
  .btn-group-responsive a,
  .btn-group-responsive button,
  .search-card button[type="submit"],
  .contact-form button[type="submit"],
  .enquiry-form button[type="submit"] {
    width: 100% !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.95rem !important;
    margin-top: 10px !important;
    padding: 0 25px !important;
  }

  #searchBookBtn {
    margin-top: 8px !important;
  }

  #trust-bar {
    padding-top: 70px !important;
  }
}

/* TRUST BAR */

#trust-bar {
  background: var(--brand-white);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
}

.trust-item:last-child {
  border-right: none;
}

.t-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(var(--bs-primary-rgb), 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-icon i {
  color: var(--brand-primary);
  font-size: 1.1rem;
}

.trust-item h6 {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 1px;
}

.trust-item p {
  font-size: 0.74rem;
  color: var(--brand-muted);
  margin: 0;
}

@media (max-width: 575px) {
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--brand-border);
    padding: 14px 0;
  }

  .trust-item:last-child {
    border-bottom: none;
  }
  
  #trust-bar .row > div {
    padding-bottom: 15px;
  }

  #trust-bar .d-flex {
    flex-direction: column !important;
    text-align: center;
    justify-content: center;
    gap: 8px !important;
    padding: 15px 10px !important;
  }

  #trust-bar .t-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto;
  }

  #trust-bar .t-icon i {
    font-size: 0.95rem;
  }

  #trust-bar h6 {
    font-size: 0.8rem;
    margin-bottom: 3px !important;
  }

  #trust-bar p {
    font-size: 0.7rem;
    line-height: 1.3;
  }
}

/* DESTINATIONS */

#destinations {
  padding: 88px 0;
  background: var(--brand-surface);
}

.dest-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 310px 210px;
  gap: 12px;
}

.dest-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s;
}

.dest-card:hover {
  transform: scale(1.015);
  z-index: 2;
}

.dest-card.span-r {
  grid-row: span 2;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 35%,
      rgba(10, 12, 18, 0.86) 100%);
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
}

.dest-info h3 {
  color: var(--brand-white);
  font-size: 1.45rem;
  margin-bottom: 5px;
}

.dest-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.dest-meta span {
  color: rgba(var(--brand-white-rgb), 0.58);
  font-size: 0.76rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dest-meta .price {
  color: var(--brand-primary-light);
  font-weight: 600;
  font-size: 0.82rem;
}

.dest-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand-primary);
  color: var(--brand-white);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .dest-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px;
  }

  .dest-card.span-r {
    grid-row: 1;
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .dest-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .dest-card {
    height: 210px;
  }

  .dest-card.span-r {
    grid-column: span 1;
  }
}

/* WHY US */

#why-us {
  padding: 88px 0;
  background: var(--brand-dark);
  position: relative;
  overflow: hidden;
}

#why-us::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle,
      rgba(var(--bs-primary-rgb), 0.1) 0%,
      transparent 70%);
  pointer-events: none;
}

.why-visual {
  position: relative;
}

.why-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 520px;
}

.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid var(--brand-dark);
  box-shadow: 0 14px 36px rgba(var(--brand-black-rgb), 0.4);
  z-index: 2;
}

.why-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-badge {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--brand-primary);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(var(--bs-primary-rgb), 0.4);
  z-index: 2;
}

.exp-badge .enum {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brand-white);
  line-height: 1;
}

.exp-badge .elbl {
  color: rgba(var(--brand-white-rgb), 0.7);
  font-size: 0.72rem;
  line-height: 1.4;
  margin-top: 3px;
}

.feat-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(var(--bs-primary-rgb), 0.1);
  border: 1px solid rgba(var(--bs-primary-rgb), 0.22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.feat-icon i {
  color: var(--brand-primary-light);
  font-size: 1.15rem;
}

.feat-row:hover .feat-icon {
  background: rgba(var(--bs-primary-rgb), 0.2);
}

.feat-text h5 {
  color: var(--brand-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feat-text p {
  color: rgba(var(--brand-white-rgb), 0.4);
  font-size: 0.8rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .why-img-wrap {
    height: 360px;
  }

  .why-accent {
    width: 130px;
    height: 130px;
    right: -8px;
  }

  .exp-badge {
    left: 0;
  }
}

/* GALLERY STRIP */

#gallery-strip {
  overflow: hidden;
}

.g-strip {
  display: flex;
  height: 260px;
  gap: 5px;
}

.g-item {
  flex: 1;
  overflow: hidden;
}

.g-item.g-wide {
  flex: 1.7;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.g-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 767px) {
  .g-strip {
    height: 170px;
  }
}

/* PACKAGES */

#packages {
  padding: 88px 0;
  background: var(--brand-surface);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.f-tab {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid var(--brand-border);
  background: var(--brand-white);
  font-family: var(--font-body);
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--brand-muted);
  transition: all 0.2s;
  cursor: pointer;
}

.f-tab.active,
.f-tab:hover {
  background: var(--brand-primary);
  color: var(--brand-white);
  border-color: var(--brand-primary);
}

.pkg-card {
  background: var(--brand-white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(var(--brand-black-rgb), 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
}

.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(var(--brand-black-rgb), 0.1);
}

.pkg-img {
  position: relative;
  height: 222px;
  overflow: hidden;
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.05);
}

.pkg-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(var(--brand-black-rgb), 0.48);
  backdrop-filter: blur(6px);
  color: var(--brand-white);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pkg-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-primary);
  color: var(--brand-white);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.pkg-body {
  padding: 20px;
}

.pkg-dest {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 5px;
}

.pkg-name {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.pkg-metas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.pkg-metas span {
  font-size: 0.75rem;
  color: var(--brand-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.pkg-metas i {
  color: var(--brand-primary);
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--brand-border);
}

.pkg-price .pfrom {
  font-size: 0.64rem;
  color: var(--brand-muted);
}

.pkg-price .pamount {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.pkg-price .pper {
  font-size: 0.68rem;
  color: var(--brand-muted);
}

.pkg-btn-pill {
  background: var(--brand-black) !important;
  color: var(--brand-white) !important;
  border-radius: 50px !important;
  padding: 4px 14px !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: none !important;
  height: 34px !important;
  width: auto !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(var(--brand-black-rgb), 0.1);
}

.pkg-btn-pill:hover,
.pkg-btn-pill:active {
  background: var(--brand-primary) !important;
  color: var(--brand-white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(var(--bs-primary-rgb), 0.35) !important;
}

#searchBookBtn {
  background: var(--brand-primary) !important;
  color: var(--brand-white) !important;
  border: none !important;
}

#searchBookBtn:hover {
  background: var(--brand-primary-dark) !important;
}

.pkg-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-dark);
  border: none;
  color: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.22s;
}

.pkg-arrow:hover {
  background: var(--brand-primary);
  transform: rotate(45deg);
}

/* TOUR TYPES */

#tour-types {
  padding: 88px 0;
  background: var(--brand-surface-alt);
}

.type-card {
  background: var(--brand-white);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(var(--brand-black-rgb), 0.04);
  transition: all 0.32s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-primary);
  transform: translateY(101%);
  transition: transform 0.36s ease;
  z-index: 0;
}

.type-card:hover::before {
  transform: translateY(0);
}

.type-card > * {
  position: relative;
  z-index: 1;
}

.type-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  background: rgba(var(--bs-primary-rgb), 0.09);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.type-icon i {
  font-size: 1.55rem;
  color: var(--brand-primary);
  transition: color 0.3s;
}

.type-card:hover .type-icon {
  background: rgba(var(--brand-white-rgb), 0.18);
}

.type-card:hover .type-icon i {
  color: var(--brand-white);
}

.type-card h5 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.type-card p {
  font-size: 0.76rem;
  color: var(--brand-muted);
  line-height: 1.55;
  margin: 0;
  transition: color 0.3s;
}

.type-card:hover h5 {
  color: var(--brand-white);
}

.type-card:hover p {
  color: rgba(var(--brand-white-rgb), 0.8);
}

/* TESTIMONIALS */

#testimonials {
  padding: 88px 0;
  background: var(--brand-dark);
  overflow: hidden;
}

.testi-outer {
  overflow: hidden;
  position: relative;
}

.testi-outer::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 130px;
  background: linear-gradient(to left, var(--brand-dark), transparent);
  z-index: 2;
  pointer-events: none;
}

.testi-track {
  display: flex;
  gap: 18px;
  animation: marquee 32s linear infinite;
  width: max-content;
}

.testi-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.testi-card {
  width: 330px;
  flex-shrink: 0;
  background: rgba(var(--brand-white-rgb), 0.05);
  border: 1px solid rgba(var(--brand-white-rgb), 0.07);
  border-radius: 18px;
  padding: 26px;
  transition: border-color 0.3s;
}

.testi-card:hover {
  border-color: rgba(var(--bs-primary-rgb), 0.38);
}

.testi-stars {
  color: var(--brand-rating);
  font-size: 0.78rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testi-text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(var(--brand-white-rgb), 0.8);
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-author h6 {
  font-family: var(--font-body);
  color: var(--brand-white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1px;
}

.testi-author span {
  font-size: 0.72rem;
  color: rgba(var(--brand-white-rgb), 0.38);
}

/* CTA / CONTACT */

#cta-section {
  padding: 88px 0;
  background: var(--brand-mid);
  position: relative;
  overflow: hidden;
}

#cta-section::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 195px 195px;
  gap: 10px;
}

.cta-photo {
  border-radius: 13px;
  overflow: hidden;
}

.cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.cta-photo:hover img {
  transform: scale(1.05);
}

.cta-photo.tall {
  grid-row: span 2;
  border-radius: 16px;
}

.contact-link {
  color: rgba(var(--brand-white-rgb), 0.42);
  text-decoration: none;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}

.contact-link:hover {
  color: rgba(var(--brand-white-rgb), 0.75);
}

@media (max-width: 767px) {
  .cta-photos {
    grid-template-rows: 150px 150px;
  }
}

/* FOOTER */

footer {
  background: var(--brand-footer-bg);
  padding: 68px 0 32px;
}

.f-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-white);
}

.f-desc {
  color: rgba(var(--brand-white-rgb), 0.3);
  font-size: 0.82rem;
  line-height: 1.8;
  margin: 12px 0 20px;
}

.social-links {
  display: flex;
  gap: 9px;
}

.soc-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(var(--brand-white-rgb), 0.1);
  color: rgba(var(--brand-white-rgb), 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
}

.soc-link:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.f-heading {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(var(--brand-white-rgb), 0.28);
  margin-bottom: 16px;
}

.f-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.f-links a {
  color: rgba(var(--brand-white-rgb), 0.48);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}

.f-links a:hover {
  color: var(--brand-white);
}

.f-links i {
  color: var(--brand-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.f-divider {
  border-color: rgba(var(--brand-white-rgb), 0.05);
  margin: 38px 0 26px;
}

.f-copy {
  color: rgba(var(--brand-white-rgb), 0.18);
  font-size: 0.76rem;
}

.f-legal a {
  color: rgba(var(--brand-white-rgb), 0.18);
  font-size: 0.76rem;
  text-decoration: none;
  transition: color 0.2s;
}

.f-legal a:hover {
  color: rgba(var(--brand-white-rgb), 0.5);
}

.newsletter-inp {
  background: rgba(var(--brand-white-rgb), 0.07);
  border: 1px solid rgba(var(--brand-white-rgb), 0.1);
  border-radius: 8px;
  padding: 9px 13px;
  color: var(--brand-white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  outline: none;
  flex: 1;
  transition: border-color 0.2s;
}

.newsletter-inp:focus {
  border-color: var(--brand-primary);
}

.newsletter-inp::placeholder {
  color: rgba(var(--brand-white-rgb), 0.25);
}

.newsletter-btn {
  background: var(--brand-primary);
  border: none;
  color: var(--brand-white);
  border-radius: 8px;
  padding: 9px 14px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.newsletter-btn:hover {
  background: var(--brand-primary-dark);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ==============================
   MOBILE RESPONSIVENESS
   ============================== */

@media (max-width: 767px) {
  /* Navbar */
  .navbar-collapse {
    background: rgba(15, 17, 23, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-radius: 0 0 16px 16px;
    margin-top: 10px;
  }

  .nav-link-item {
    font-size: 0.9rem;
    padding: 10px 0 !important;
  }

  .nav-cta {
    margin-top: 10px;
  }

  /* Hero */
  #hero {
    padding-bottom: 0px !important;
  }

  .hero-search {
    margin-bottom: -50px !important;
    position: relative !important;
    z-index: 10 !important;
  }

  .search-card {
    flex-direction: column;
    gap: 14px;
    padding: 20px 20px 10px !important;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-stats {
    display: none;
  }

  .hero-btns,
  .btn-group-responsive {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn,
  .hero-btns a,
  .hero-btns button,
  .btn-group-responsive .btn,
  .btn-group-responsive a,
  .btn-group-responsive button {
    width: 100% !important;
    justify-content: center !important;
    margin: 8px 0 !important;
  }

  #searchBookBtn {
    margin-top: 8px !important;
  }

  /* Section spacing */
  .py-section {
    padding: 60px 0;
  }

  .pt-120 {
    padding-top: 60px !important;
  }

  .mb-60 {
    margin-bottom: 30px !important;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  /* Package cards */
  .pkg-card {
    min-height: 300px;
  }

  /* Contact page */
  .contact-card {
    padding: 24px;
  }

  .contact-info-card {
    justify-content: flex-start;
  }

  .map-container {
    height: 280px;
  }

  /* Footer */
  .social-links {
    flex-wrap: wrap;
  }

  .newsletter-btn {
    width: auto;
    min-width: 50px;
  }

  .main-footer .row > div {
    margin-bottom: 2rem;
  }

  .main-footer .row > div:last-child {
    margin-bottom: 0;
  }

  /* Scrollable Filter Tabs */
  .filter-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 10px !important;
    padding: 5px 0 15px 0 !important;
    margin-bottom: 20px !important;
    scrollbar-width: none;
    width: 100% !important;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .f-tab {
    flex: 0 0 auto !important;
    min-width: 100px;
  }

  #trust-bar {
    padding-top: 70px !important;
  }
}

@media (max-width: 991px) {
  /* Contact info items */
  .contact-info-item {
    align-items: flex-start;
  }

  /* Gallery strip */
  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  /* Stat chips on hero */
  .hero-stats {
    right: 0;
    bottom: 20px;
  }
}