/* ============================================
   Mittal Overseas - Premium Travel Website
   Color Palette: Navy Blue, White, Gold
   ============================================ */

:root {
  --primary: #0a2d5c;
  --primary-dark: #061d3d;
  --primary-light: #1a4a8a;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #a6851f;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f3f8;
  --gray-200: #e2e6ef;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 2px 8px rgba(10, 45, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 45, 92, 0.12);
  --shadow-lg: 0 16px 48px rgba(10, 45, 92, 0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: var(--transition);
}

/* Top announcement bar */
.header-topbar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  padding: 0.45rem 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-header.topbar-hidden .header-topbar {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  display: none;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.topbar-link i {
  color: var(--gold);
  font-size: 0.75rem;
}

.topbar-link:hover {
  color: var(--gold-light);
}

.topbar-badge {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(201, 162, 39, 0.15);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.topbar-badge i {
  color: var(--gold);
}

.topbar-social {
  display: flex;
  gap: 0.5rem;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: var(--transition);
}

.topbar-social a:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Main navbar */
.header-navbar {
  padding: 0.85rem 0;
  background: transparent;
  transition: var(--transition);
}

.header-nav-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 60px;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  transition: var(--transition);
}

.site-header.scrolled .header-navbar {
  padding: 0.5rem 0;
}

.site-header.scrolled .header-nav-wrap {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(10, 45, 92, 0.08);
  box-shadow: 0 8px 32px rgba(10, 45, 92, 0.12);
  padding: 0.4rem 0.4rem 0.4rem 1rem;
}

.inner-page .site-header .header-nav-wrap {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(10, 45, 92, 0.08);
  box-shadow: 0 4px 20px rgba(10, 45, 92, 0.1);
}

.navbar-brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: 1rem;
}

.site-header.scrolled .navbar-brand,
.inner-page .site-header .navbar-brand {
  color: var(--primary) !important;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.brand-name em {
  font-style: normal;
  color: var(--gold);
}

.site-header.scrolled .brand-name em,
.inner-page .site-header .brand-name em {
  color: var(--gold-dark);
}

.brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

.site-header.scrolled .brand-tagline,
.inner-page .site-header .brand-tagline {
  color: var(--gray-500);
}

.navbar-brand .brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.45);
  transition: var(--transition);
  flex-shrink: 0;
}

.navbar-brand:hover .brand-icon {
  transform: rotate(-12deg) scale(1.05);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.55);
}

.navbar-brand .brand-icon i {
  animation: planeFloat 3s ease-in-out infinite;
}

@keyframes planeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Nav menu pills */
.header-nav-menu {
  gap: 0.25rem;
}

.header-nav-menu .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500;
  font-size: 0.78rem;
  padding: 0.55rem .5rem !important;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  transition: var(--transition);
}

.site-header.scrolled .header-nav-menu .nav-link,
.inner-page .site-header .header-nav-menu .nav-link {
  color: #000 !important;
}

.header-nav-menu .nav-link i {
  font-size: 0.95rem;
  opacity: 0.85;
}

.header-nav-menu .nav-link::after {
  display: none;
}

.header-nav-menu .nav-link:hover,
.header-nav-menu .nav-link.active {
  background: rgba(201, 162, 39, 0.2);
  color: var(--gold-light) !important;
}

.site-header.scrolled .header-nav-menu .nav-link:hover,
.site-header.scrolled .header-nav-menu .nav-link.active,
.inner-page .site-header .header-nav-menu .nav-link:hover,
.inner-page .site-header .header-nav-menu .nav-link.active {
  background: rgba(201, 162, 39, 0.12);
  color: var(--primary) !important;
}

.header-nav-menu .nav-link.active {
  background: rgba(201, 162, 39, 0.25);
  font-weight: 600;
}

.site-header.scrolled .header-nav-menu .nav-link.active,
.inner-page .site-header .header-nav-menu .nav-link.active {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.08));
  color: var(--gold-dark) !important;
}

/* Tours dropdown menu */
.nav-tours-dropdown,
.nav-thailand-dropdown {
  position: relative;
}

.nav-tours-dropdown .dropdown-toggle::after,
.nav-thailand-dropdown .dropdown-toggle::after {
  display: none !important;
}

.nav-dropdown-arrow {
  font-size: 0.62rem;
  margin-left: 0.2rem;
  opacity: 0.9;
  transition: transform 0.3s ease;
  line-height: 1;
}

.nav-tours-dropdown:hover .nav-dropdown-arrow,
.nav-tours-dropdown.show .nav-dropdown-arrow,
.nav-tours-dropdown:focus-within .nav-dropdown-arrow,
.nav-thailand-dropdown:hover .nav-dropdown-arrow,
.nav-thailand-dropdown.show .nav-dropdown-arrow,
.nav-thailand-dropdown:focus-within .nav-dropdown-arrow {
  transform: rotate(180deg);
}

@media (min-width: 992px) {
  .nav-tours-dropdown::before,
  .nav-thailand-dropdown::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
    z-index: 1050;
  }

  .nav-tours-dropdown:hover > .dropdown-toggle,
  .nav-tours-dropdown.show > .dropdown-toggle,
  .nav-tours-dropdown:focus-within > .dropdown-toggle,
  .nav-thailand-dropdown:hover > .dropdown-toggle,
  .nav-thailand-dropdown.show > .dropdown-toggle,
  .nav-thailand-dropdown:focus-within > .dropdown-toggle {
    background: rgba(201, 162, 39, 0.2);
    color: var(--gold-light) !important;
  }

  .site-header.scrolled .nav-tours-dropdown:hover > .dropdown-toggle,
  .site-header.scrolled .nav-tours-dropdown.show > .dropdown-toggle,
  .site-header.scrolled .nav-tours-dropdown:focus-within > .dropdown-toggle,
  .inner-page .site-header .nav-tours-dropdown:hover > .dropdown-toggle,
  .inner-page .site-header .nav-tours-dropdown.show > .dropdown-toggle,
  .inner-page .site-header .nav-tours-dropdown:focus-within > .dropdown-toggle,
  .site-header.scrolled .nav-thailand-dropdown:hover > .dropdown-toggle,
  .site-header.scrolled .nav-thailand-dropdown.show > .dropdown-toggle,
  .site-header.scrolled .nav-thailand-dropdown:focus-within > .dropdown-toggle,
  .inner-page .site-header .nav-thailand-dropdown:hover > .dropdown-toggle,
  .inner-page .site-header .nav-thailand-dropdown.show > .dropdown-toggle,
  .inner-page .site-header .nav-thailand-dropdown:focus-within > .dropdown-toggle {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.08));
    color: var(--gold-dark) !important;
  }
}

.tours-dropdown-menu {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.65rem;
  min-width: 340px;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: visible;
  margin-top: 0.75rem !important;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(10, 45, 92, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.15);
  animation: dropdownFadeIn 0.25s ease;
  z-index: 1055;
}

@media (min-width: 992px) {
  .header-nav-wrap,
  .navbar-collapse,
  .nav-tours-dropdown,
  .nav-thailand-dropdown {
    overflow: visible !important;
  }

  .nav-tours-dropdown .tours-dropdown-menu,
  .nav-thailand-dropdown .tours-dropdown-menu {
    overflow: visible !important;
    max-height: none;
  }
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tours-dropdown-menu > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tours-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}

.tours-dropdown-menu .dropdown-item i {
  width: 28px;
  height: 28px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.tours-dropdown-menu .dropdown-item:hover,
.tours-dropdown-menu .dropdown-item:focus,
.tours-dropdown-menu .dropdown-item.active {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(201, 162, 39, 0.05));
  color: var(--primary);
}

.tours-dropdown-menu .dropdown-item:hover i,
.tours-dropdown-menu .dropdown-item.active i {
  background: var(--gold);
  color: var(--primary-dark);
}

.tours-dropdown-menu .dropdown-divider {
  margin: 0.4rem 0;
  border-color: var(--gray-200);
}

.tours-dropdown-menu .dropdown-item.view-all {
  font-weight: 600;
  color: var(--gold-dark);
}

.tours-dropdown-menu .dropdown-item.view-all i {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--gold);
}

.tours-dropdown-header {
  padding: 0.5rem 0.85rem 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
}

.tours-dropdown-header.thailand-submenu-header {
  color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), transparent);
  border-radius: var(--radius);
  margin-top: 0.15rem;
}

/* Thailand nested submenu */
.thailand-submenu-toggle {
  font-weight: 600 !important;
  color: var(--gold-dark) !important;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.03));
  cursor: pointer;
}

.thailand-submenu-toggle .submenu-arrow {
  margin-left: auto;
  font-size: 0.65rem;
  opacity: 0.85;
  transition: transform 0.25s ease;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  color: var(--gold-dark) !important;
}

/* Desktop: flyout panel on the right */
@media (min-width: 992px) {
  .tours-dropdown-menu .dropdown-submenu.nav-thailand-submenu {
    position: relative;
    display: list-item;
  }

  .tours-dropdown-menu .nav-thailand-submenu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 12px;
    height: 100%;
    z-index: 1059;
  }

  .tours-dropdown-menu .nav-thailand-submenu > .thailand-submenu-menu {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    right: auto !important;
    margin-left: 6px !important;
    display: none !important;
    overflow: visible;
    min-height: auto;
    min-width: 300px;
    width: max-content;
    max-width: 340px;
    padding: 0.5rem;
    background: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    z-index: 1060;
    transform: none !important;
    float: none !important;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
  }

  .tours-dropdown-menu .nav-thailand-submenu:hover > .thailand-submenu-menu,
  .tours-dropdown-menu .nav-thailand-submenu.show > .thailand-submenu-menu,
  .tours-dropdown-menu .nav-thailand-submenu:focus-within > .thailand-submenu-menu {
    display: block !important;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }

  .tours-dropdown-menu .nav-thailand-submenu > .thailand-submenu-menu::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 0;
    width: 12px;
    height: 100%;
  }

  .tours-dropdown-menu .thailand-submenu-menu .dropdown-sub-item {
    padding-left: 0.65rem !important;
    white-space: nowrap;
  }

  .nav-thailand-submenu:hover .submenu-arrow,
  .nav-thailand-submenu.show .submenu-arrow {
    transform: rotate(0deg);
  }
}

/* Mobile: expand below toggle */
@media (max-width: 991.98px) {
  .tours-dropdown-menu .dropdown-submenu.nav-thailand-submenu {
    display: grid;
    grid-template-rows: auto 0fr;
    transition: grid-template-rows 0.25s ease;
    width: 100%;
  }

  .site-header.scrolled .header-nav-menu .nav-link, .inner-page .site-header .header-nav-menu .nav-link {
    color: #fff !important;
  }

  .navbar-brand {
    max-width: 75%;
    width: 100%;
  }


  .tours-dropdown-menu .nav-thailand-submenu.show,
  .tours-dropdown-menu .nav-thailand-submenu:focus-within {
    grid-template-rows: auto 1fr;
  }

  .tours-dropdown-menu .nav-thailand-submenu > .thailand-submenu-menu {
    display: block !important;
    overflow: hidden;
    min-height: 0;
    position: static !important;
    width: 100%;
    padding: 0.25rem 0 0.35rem 0.35rem;
    margin: 0 !important;
    border: none;
    border-left: 2px solid rgba(201, 162, 39, 0.35);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}

.tours-dropdown-menu .dropdown-sub-item {
  font-size: 0.82rem;
  padding-left: 0.65rem;
}

.tours-dropdown-menu .dropdown-sub-item > span:first-of-type {
  flex: 1;
}

.tours-dropdown-menu .dropdown-sub-item .sub-price {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(201, 162, 39, 0.12);
  padding: 0.15rem 0.45rem;
  border-radius: 50px;
  white-space: nowrap;
  margin-left: 0.35rem;
}

.tours-dropdown-menu .dropdown-sub-item i.bi-arrow-right-short {
  width: 22px;
  height: 22px;
  font-size: 1rem;
  background: transparent;
  color: var(--gold);
}

/* Header action buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: 0.5rem;
}

.btn-header-call {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.site-header.scrolled .btn-header-call,
.inner-page .site-header .btn-header-call {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-header-call:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
  transform: scale(1.08);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.55rem 1.35rem !important;
  white-space: nowrap;
}

.btn-header-cta i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-header-cta:hover i {
  transform: translateX(4px);
}

/* Gold accent line on scroll */
.header-accent-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  opacity: 0.9;
}

.site-header.scrolled .header-accent-line,
.inner-page .site-header .header-accent-line {
  transform: scaleX(1);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
}

.inner-page .site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
}

.site-header.scrolled .navbar-toggler,
.inner-page .site-header .navbar-toggler {
  border-color: var(--gray-200);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.25em;
  height: 1.25em;
}

.site-header.scrolled .navbar-toggler-icon,
.inner-page .site-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2810, 45, 92, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.inner-page .site-header.scrolled,
.inner-page .site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff !important;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
  color: var(--primary-dark) !important;
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  background: transparent;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
}

.btn-primary-custom {
  background: var(--primary);
  color: var(--white) !important;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  color: var(--white) !important;
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-dark);
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 29, 61, 0.85) 0%,
    rgba(10, 45, 92, 0.6) 50%,
    rgba(6, 29, 61, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 155px;
  padding-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .text-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shapes .shape-1 {
  width: 300px;
  height: 300px;
  background: var(--gold);
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shapes .shape-2 {
  width: 180px;
  height: 180px;
  background: var(--white);
  bottom: 20%;
  right: 25%;
  animation-delay: 2s;
}

.hero-shapes .shape-3 {
  width: 120px;
  height: 120px;
  background: var(--gold-light);
  top: 40%;
  right: 5%;
  animation-delay: 4s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.05); }
}

.hero-search-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-top: 2rem;
  max-width: 700px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-search-box .search-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
  display: block;
}

.hero-search-box .form-control,
.hero-search-box .form-select {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.hero-search-box .btn-search {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  padding: 0.65rem 1.5rem;
  width: 100%;
  transition: var(--transition);
}

.hero-search-box .btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
}

.wave-divider {
  position: relative;
  height: 80px;
  margin-top: -1px;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.wave-divider-top {
  margin-top: 0;
  margin-bottom: -1px;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ---- Page Banner (Inner Pages) ---- */
.page-banner {
  position: relative;
  padding: 185px 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--primary-dark);
  text-align: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 29, 61, 0.88), rgba(10, 45, 92, 0.75));
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-banner .breadcrumb {
  justify-content: center;
  margin-bottom: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.page-banner .breadcrumb-item.active {
  color: var(--gold);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Section Styling ---- */
.section-padding {
  padding: 45px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .subtitle {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-500);
}

.bg-light-custom {
  background-color: var(--off-white);
}

/* ---- Feature Cards (Why Choose Us) ---- */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.feature-icon i {
  font-size: 1.6rem;
  color: var(--white);
}

.feature-card:hover .feature-icon i {
  color: var(--primary-dark);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* ---- Destination Cards ---- */
.destination-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--gray-200);
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.destination-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.destination-card .card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 29, 61, 0.85) 0%, transparent 55%);
  z-index: 1;
  transition: var(--transition);
}

.destination-card:hover .card-img-wrap::after {
  background: linear-gradient(to top, rgba(6, 29, 61, 0.7) 0%, transparent 60%);
}

.destination-card .dest-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.destination-card .dest-label i {
  color: var(--gold);
  margin-right: 0.35rem;
}

.destination-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .card-img-wrap img {
  transform: scale(1.1);
}

.destination-card .duration-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.destination-card .card-body {
  padding: 1.5rem;
}

.destination-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.destination-card .price {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.destination-card .price span {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 400;
}

/* ---- Destinations Slider (Home Page) ---- */
.destinations-slider-wrap {
  position: relative;
  padding: 0 50px;
}

.destinations-slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.destinations-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.destinations-track .destination-card {
  flex: 0 0 calc(25% - 1.125rem);
  min-width: calc(25% - 1.125rem);
}

.dest-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
}

.dest-slider-btn:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-50%) scale(1.08);
}

.dest-slider-prev { left: 0; }
.dest-slider-next { right: 0; }

.dest-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dest-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.dest-slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* ---- Tour Detail Page ---- */
.tour-detail-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-dark);
  padding: 185px 0 60px;
}

.tour-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 29, 61, 0.95) 0%, rgba(6, 29, 61, 0.4) 60%, rgba(6, 29, 61, 0.3) 100%);
}

.tour-detail-hero .container {
  position: relative;
  z-index: 1;
}

.tour-detail-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.tour-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tour-meta-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

.tour-meta-badge.gold {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
  font-weight: 700;
}

.tour-detail-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 2rem;
}

.tour-detail-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gray-100);
}

.tour-sidebar {
  position: sticky;
  top: 100px;
}

.tour-price-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.tour-price-card .price-label {
  font-size: 0.85rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tour-price-card .price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
  margin: 0.5rem 0;
}

.tour-detail-section.aos-init.aos-animate {
  margin-top: 2rem;
}

.tour-highlights-box {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
}

.tour-highlights-box h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.tour-highlights-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tour-highlights-box li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.tour-highlights-box li::before {
  content: '\F26B';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--gold);
}

@media (max-width: 1199.98px) {
  .destinations-track .destination-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
  }
}

@media (max-width: 991.98px) {
  .destinations-track .destination-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
  .destinations-slider-wrap { padding: 0 40px; }
}

@media (max-width: 575.98px) {
  .destinations-track .destination-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .brand-name {
    font-size: 1rem !important;
    letter-spacing: 1px;
  }
  
  .stat-item .stat-number {
    font-size: 2rem !important;
  }

  .destinations-slider-wrap { padding: 0 16px; }
  .dest-slider-btn { width: 36px; height: 36px; font-size: 1rem; }
  .tour-sidebar { position: static; }
}

/* ---- Tour Package Cards (Tours Page) ---- */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tour-card .tour-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.tour-card .tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-img img {
  transform: scale(1.08);
}

.tour-card .tour-img .price-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
}

.tour-card .tour-img .price-tag span {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}

.tour-card .tour-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.tour-card .tour-duration {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.tour-card .highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.tour-card .highlights li {
  font-size: 0.88rem;
  color: var(--gray-500);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.tour-card .highlights li::before {
  content: '\F26B';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.tour-card .tour-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tour-card .tour-actions .btn {
  flex: 1;
  min-width: 120px;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

/* ---- Reviews ---- */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.review-stars {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.review-card p {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author h4 {
  font-size: 1rem;
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15), transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ---- About Page ---- */
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.mission-vision-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  height: 100%;
  transition: var(--transition);
}

.mission-vision-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.mission-vision-card .icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mission-vision-card .icon-wrap i {
  font-size: 1.5rem;
  color: var(--gold);
}

.mission-vision-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* ---- Contact Page ---- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: var(--transition);
  text-align: center;
}

.contact-info-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.contact-info-card .icon-circle {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.contact-info-card .icon-circle i {
  font-size: 1.5rem;
  color: var(--gold);
}

.contact-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap .form-label {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Gallery ---- */
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 45, 92, 0.75), rgba(201, 162, 39, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

/* ---- Image Lightbox ---- */
.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 29, 61, 0.95);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: zoom-out;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.image-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

/* ---- Image loading placeholder ---- */
img {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.card-img-wrap img,
.tour-img img,
.tour-modal-img img {
  min-height: 100%;
  object-fit: cover;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.tour-card .tour-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 29, 61, 0.6), transparent 50%);
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item .gallery-overlay i {
  font-size: 2rem;
  color: var(--white);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 70px;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo {
  height: 130px;
  width: auto;
  object-fit: contain;
  display: block;
  background: none !important;
}

.site-footer p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-title {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.85rem;
}

/* ---- Floating Buttons ---- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1020;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 1020;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ---- Modal Styling ---- */
.modal-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.modal-header {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
}

.modal-header .modal-title {
  font-weight: 700;
  color: #fff;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.tour-modal-img {
  height: 280px;
  overflow: hidden;
}

.tour-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-nav-tabs {
  border-bottom: 2px solid var(--gray-200);
  padding: 0 1.5rem;
  margin-top: 1rem;
}

.modal-nav-tabs .nav-link {
  color: var(--gray-500);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  padding: 0.75rem 1.25rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  border-radius: 0;
}

.modal-nav-tabs .nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--gold);
  background: transparent;
}

.modal-tab-content {
  padding: 1.5rem;
  max-height: 400px;
  overflow-y: auto;
}

.itinerary-day {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.itinerary-day h5 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.inclusion-list,
.exclusion-list {
  list-style: none;
  padding: 0;
}

.inclusion-list li,
.exclusion-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
}

.inclusion-list li::before {
  content: '\F26B';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: #22c55e;
}

.exclusion-list li::before {
  content: '\F623';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: #ef4444;
}

/* ---- Form Validation ---- */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #ef4444;
}

.invalid-feedback {
  font-size: 0.8rem;
}

.form-success-msg {
  display: none;
  background: #dcfce7;
  color: #166534;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
}

.form-success-msg.show {
  display: block;
}

/* ---- Stats Counter ---- */
.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .header-topbar {
    display: none;
  }

  .header-nav-wrap {
    border-radius: 18px;
    padding: 0.65rem 1rem;
    flex-wrap: wrap;
  }

  .site-header.scrolled .header-nav-wrap,
  .inner-page .site-header .header-nav-wrap {
    border-radius: 18px;
  }

  .navbar-collapse {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    margin-top: 0.75rem;
    border: 1px solid rgba(201, 162, 39, 0.2);
  }

  .header-nav-menu .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    padding: 0.65rem 1rem !important;
  }

  .header-nav-menu .nav-link:hover,
  .header-nav-menu .nav-link.active {
    background: rgba(201, 162, 39, 0.2) !important;
    color: var(--gold-light) !important;
  }

  .tours-dropdown-menu {
    background: rgba(6, 29, 61, 0.95);
    border-color: rgba(201, 162, 39, 0.25);
    box-shadow: none;
    position: static !important;
    transform: none !important;
    width: 100%;
    margin-top: 0.5rem !important;
  }

  .tours-dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
  }

  .tours-dropdown-menu .dropdown-item:hover,
  .tours-dropdown-menu .dropdown-item.active {
    background: rgba(201, 162, 39, 0.2);
    color: var(--gold-light);
  }

  .tours-dropdown-menu .dropdown-item i {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
  }

  .tours-dropdown-header {
    color: rgba(255, 255, 255, 0.5);
  }

  .thailand-submenu-toggle {
    color: var(--gold-light) !important;
    background: rgba(201, 162, 39, 0.15) !important;
  }

  .tours-dropdown-menu .nav-thailand-submenu > .thailand-submenu-menu {
    background: rgba(6, 29, 61, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.2);
    margin-left: 0.5rem !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .tours-dropdown-menu .thailand-submenu-menu .dropdown-sub-item {
    white-space: normal;
  }

  .nav-thailand-submenu.show .submenu-arrow {
    transform: rotate(90deg);
  }

  .header-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    justify-content: center;
  }

  .brand-tagline {
    display: none;
  }

  .hero-content {
    padding-top: 110px;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .page-banner {
    padding: 140px 0 60px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }

  .tour-card .tour-actions {
    flex-direction: column;
  }

  .back-to-top {
    bottom: 90px;
    right: 15px;
    width: 42px;
    height: 42px;
  }

  .whatsapp-float {
    right: 15px;
    width: 52px;
    height: 52px;
  }
}
