/* ================================
   WANDERLUX - PREMIUM TRAVEL WEBSITE
   Modern, Luxury, High-Conversion Design
   ================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors - Luxury Palette */
  --primary-color: #2c5f7f;
  --primary-dark: #1a3d52;
  --primary-light: #4a8bb5;
  --secondary-color: #d4a574;
  --secondary-dark: #b8894f;
  --accent-color: #e8b86d;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #1a1a1a;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2c5f7f 0%, #4a8bb5 100%);
  --gradient-secondary: linear-gradient(135deg, #d4a574 0%, #e8b86d 100%);
  --gradient-overlay: linear-gradient(to bottom, rgb(0 0 0 / 6%), rgba(0, 0, 0, 0.6))

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Segoe UI", "Noto Sans", "Helvetica Neue", Arial, sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition-base);
}

input,
select,
textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (max-width: 767.98px) {
  .container,
  .container-wide {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--spacing-md);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition-base);
}

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

.header.scrolled .nav-brand {
  color: var(--primary-color);
}

.nav-brand i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.brand-name {
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.tour-departure-section {
  margin-bottom: 36px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tour-departure-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.tour-departure-section-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #0b5fae;
}

.tour-departure-section-subtitle {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 14px;
}

.tour-departure-list {
  display: grid;
  gap: 16px;
}

.tour-departure-card {
  border: 1px solid #dbe7f3;
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.tour-departure-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.tour-departure-dates {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #0f172a;
  font-weight: 700;
  font-size: 17px;
}

.tour-departure-meta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tour-departure-meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8fbff;
  border: 1px solid #dbe7f3;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
}

.tour-departure-meta-pill.is-available {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #166534;
}

.tour-departure-status {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.tour-departure-status.is-open {
  background: #dbeafe;
  color: #1d4ed8;
}

.tour-departure-status.is-limited {
  background: #fef3c7;
  color: #b45309;
}

.tour-departure-status.is-full,
.tour-departure-status.is-closed {
  background: #fee2e2;
  color: #b91c1c;
}

.tour-departure-table-wrap {
  overflow-x: auto;
}

.tour-departure-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.tour-departure-table th,
.tour-departure-table td {
  padding: 12px 14px;
  text-align: left;
  border-top: 1px solid #edf2f7;
}

.tour-departure-table thead th {
  border-top: 0;
  background: #f8fbff;
  color: #475569;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tour-departure-table tbody td {
  color: #0f172a;
  font-size: 14px;
}

.tour-departure-addons {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tour-departure-addon-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
}

.tour-departure-addon-meta {
  margin-top: 4px;
  font-size: 12px;
  color: #9a3412;
}

.tour-departure-note {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.tour-itinerary-section {
  margin-bottom: 36px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tour-itinerary-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.tour-itinerary-section-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #0b5fae;
}

.tour-itinerary-section-subtitle {
  margin: 6px 0 0;
  color: #7c6f57;
  font-size: 14px;
}

.tour-itinerary-list {
  display: grid;
  gap: 0;
  position: relative;
}

.tour-itinerary-card {
  position: relative;
  padding-left: 0px;
  border-bottom: 1px solid #ececec;
}

.tour-itinerary-card::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: repeating-linear-gradient(
    to bottom,
    #dedede 0,
    #dedede 10px,
    transparent 10px,
    transparent 18px
  );
}

.tour-itinerary-card:last-child {
  border-bottom: 0;
}

.tour-itinerary-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.tour-itinerary-card.is-open .tour-itinerary-toggle {
  background: #dbe9fb;
  border: 1px solid #b7cff3;
  border-radius: 0;
  padding: 18px 16px 18px 0;
  margin-left: 0;
  box-shadow: inset 0 0 0 1px #b7cff3;
}

.tour-itinerary-marker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  z-index: 1;
}

.tour-itinerary-marker-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 6px solid #0b65b8;
  background: #fff;
  box-sizing: border-box;
}

.tour-itinerary-card.is-open .tour-itinerary-marker-dot {
  border-color: #1fc1c7;
}

.tour-itinerary-toggle-title {
  display: block;
  color: #1f3f6d;
  font-size: 17px;
  font-weight: 500;
}

.tour-itinerary-toggle-icon {
  color: #0b65b8;
  font-size: 22px;
}

.tour-itinerary-content {
  margin-left: 56px;
  padding: 18px 0 22px 0;
  color: #334155;
  line-height: 1.8;
}

.tour-itinerary-content > *:first-child {
  margin-top: 0;
}

.tour-itinerary-content > *:last-child {
  margin-bottom: 0;
}

.tour-highlight-section {
  margin-bottom: 36px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tour-highlight-section-head {
  margin-bottom: 18px;
}

.tour-highlight-section-title {
  margin: 0;
  color: #14233c;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.tour-highlight-list {
  display: grid;
  gap: 16px;
}

.tour-highlight-item {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.tour-highlight-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff8df 0%, #fff3bf 100%);
  color: #ffbf00;
  border: 1px solid #ffd54f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  font-size: 18px;
}

.tour-highlight-item-text {
  color: #16253d;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
}

.tour-service-section {
  margin-bottom: 36px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tour-service-section-head {
  margin-bottom: 20px;
}

.tour-service-section-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #1f3f6d;
}

.tour-service-section-subtitle {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 14px;
}

.tour-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tour-service-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.tour-service-card {
  border-radius: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5edf6;
  display: grid;
  gap: 18px;
}

.tour-service-card.is-inclusion {
  background: linear-gradient(180deg, #ffffff 0%, #fbfff6 100%);
  border-color: #d8e9c2;
}

.tour-service-card.is-exclusion {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
  border-color: #f0d2d4;
}

.tour-service-card-head {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.tour-service-card-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.tour-service-card-badge.is-inclusion {
  background: linear-gradient(135deg, #84d223 0%, #68bf1c 100%);
  box-shadow: 0 10px 20px rgba(104, 191, 28, 0.22);
}

.tour-service-card-badge.is-exclusion {
  background: linear-gradient(135deg, #ef6b73 0%, #dc2626 100%);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.18);
}

.tour-service-card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #1f2937;
}

.tour-service-card-subtitle {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 14px;
}

.tour-service-list {
  display: grid;
  gap: 14px;
}

.tour-service-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
}

.tour-service-item.is-inclusion {
  background: rgba(132, 210, 35, 0.06);
  border: 1px solid #d8e9c2;
}

.tour-service-item.is-exclusion {
  background: rgba(239, 107, 115, 0.05);
  border: 1px solid #f0d2d4;
}

.tour-service-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.tour-service-item.is-inclusion .tour-service-item-icon {
  background: linear-gradient(135deg, #84d223 0%, #68bf1c 100%);
  box-shadow: 0 10px 20px rgba(104, 191, 28, 0.22);
}

.tour-service-item.is-exclusion .tour-service-item-icon {
  background: linear-gradient(135deg, #ef6b73 0%, #dc2626 100%);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.18);
}

.tour-service-item-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
}

.tour-service-item-content {
  color: #2f3540;
  font-size: 15px;
  line-height: 1.8;
}

.tour-service-item-content > *:first-child {
  margin-top: 0;
}

.tour-service-item-content > *:last-child {
  margin-bottom: 0;
}

.tour-policy-section {
  margin-bottom: 36px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tour-policy-section-head {
  margin-bottom: 20px;
}

.tour-policy-section-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #7b5813;
}

.tour-policy-section-subtitle {
  margin: 6px 0 0;
  color: #7c6f57;
  font-size: 14px;
}

.tour-policy-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tour-policy-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #eadfc8;
  background: #fff;
}

.tour-policy-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7b5813;
  background: linear-gradient(135deg, #ffe29b 0%, #ffd166 100%);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.18);
  font-size: 18px;
}

.tour-policy-card-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
}

.tour-policy-card-content {
  color: #374151;
  font-size: 15px;
  line-height: 1.8;
}

.tour-policy-card-content > *:first-child {
  margin-top: 0;
}

.tour-policy-card-content > *:last-child {
  margin-bottom: 0;
}


.tour-exclusion-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.tour-exclusion-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ef6b73 0%, #dc2626 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.18);
}

.tour-exclusion-item-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
}

.tour-exclusion-content {
  color: #2f3540;
  font-size: 15px;
  line-height: 1.8;
}

.tour-exclusion-content > *:first-child {
  margin-top: 0;
}

@media (max-width: 991px) {
  .tour-highlight-item-text {
    font-size: 17px;
  }

  .tour-service-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.tour-exclusion-content > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .tour-content-section-title,
  .tour-highlight-section-title,
  .tour-departure-section-title,
  .tour-itinerary-section-title,
  .tour-service-section-title,
  .tour-policy-section-title {
    font-size: 18px;
  }

  .tour-destination-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .tour-destination-item-image img {
    height: 200px;
  }

  .tour-highlight-item {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }

  .tour-highlight-item-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .tour-highlight-item-text {
    font-size: 15px;
  }

  .tour-departure-card {
    padding: 14px;
  }

  .tour-departure-card-top {
    flex-direction: column;
  }

  .tour-departure-dates {
    font-size: 15px;
  }

  .tour-departure-table {
    min-width: 540px;
  }

  .tour-itinerary-card {
    padding-left: 1px;
  }

  .tour-itinerary-card::before {
    left: 12px;
  }

  .tour-itinerary-toggle {
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    gap: 10px;
    padding: 14px 0;
  }

  .tour-itinerary-card.is-open .tour-itinerary-toggle {
    padding: 14px 12px 14px 0;
  }

  .tour-itinerary-marker {
    width: 30px;
    height: 30px;
  }

  .tour-itinerary-marker-dot {
    width: 18px;
    height: 18px;
    border-width: 4px;
  }

  .tour-itinerary-toggle-title {
    font-size: 15px;
  }

  .tour-itinerary-content {
    margin-left: 44px;
    padding: 14px 0 18px;
  }

  .tour-inclusion-section {
    padding: 16px;
  }

  .tour-inclusion-section-title {
    font-size: 18px;
  }

  .tour-inclusion-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .tour-inclusion-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 14px;
  }

  .tour-exclusion-section {
    padding: 16px;
  }

  .tour-exclusion-section-title {
    font-size: 18px;
  }

  .tour-exclusion-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .tour-exclusion-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 14px;
  }
}
img.nav-brand-logo{
  display: block;
  height: auto;
  max-height: 70px;
  width: auto;
  margin-top: 0;
}
/* .nav-brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  display: inline-block;
} */

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 0px;
}

.nav-item {
  position: relative;
}

.nav-item.has-children {
  padding-right: 0.25rem;
}

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

.nav-item > .nav-link-row {
  color: var(--white);
}

.header.scrolled .nav-item > .nav-link-row {
  color: var(--dark-gray);
}

.nav-submenu .nav-link-row {
  color: var(--dark-gray);
}


.nav-caret-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: inherit;
  padding: 0.2rem;
}

.nav-caret {
  margin-left: 0.45rem;
  font-size: 0.72rem;
}

.nav-caret.open {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition-base);
  z-index: 20;
}

.nav-submenu .nav-item {
  width: 100%;
}

.nav-submenu .nav-link-row {
  width: 100%;
}

.nav-submenu .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark-gray);
  font-size: 1rem;
  padding: 0.6rem 1rem;
  width: 100%;
}

.nav-submenu .nav-link::after {
  display: none;
}

.nav-item.has-children:hover > .nav-submenu,
.nav-item.has-children.is-open > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu .nav-item.has-children > .nav-submenu {
  top: 0;
  left: calc(100% + 0.25rem);
}


.nav-link {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--white);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-base);
}

.header.scrolled .nav-link {
  color: var(--dark-gray);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-cta {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--white);
  padding: 0.5rem;
}

.header.scrolled .mobile-toggle {
  color: var(--primary-color);
}

.frontend-main {
  transition: padding-top var(--transition-base);
}

body.frontend-no-banner-page .frontend-main {
  padding-top: 98px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero iframe {
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: var(--spacing-md);
  width: 100%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s backwards;
}

/* Search Box */
.search-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: var(--transition-base);
}

.search-field:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 127, 0.1);
}

.search-field i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.search-field input,
.search-field select {
  flex: 1;
  background: transparent;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.search-field input::placeholder {
  color: var(--gray);
}

.btn-search {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  grid-column: 1 / -1;
  transition: var(--transition-base);
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}


.hero-search-floating {
  margin: 0 auto;
  max-width: 760px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  backdrop-filter: blur(10px);
  box-shadow: none;
  animation: fadeInUp 1s ease 0.35s backwards;
  border-radius: 30px;
}

.hero-search-head {
  display: none;
}

.hero-search-head h3 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
}

.hero-search-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.modern-search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 0.4rem 0.45rem 0.4rem 1rem;
  box-shadow: none;
  margin-top: 0;
}

.modern-single-input {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1rem;
}

.modern-single-input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.modern-btn-search {
  border-radius: 999px;
  min-height: 44px;
  min-width: 44px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  transition: var(--transition-base);
}

.modern-btn-search.icon-only {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.modern-btn-search.icon-only i {
  color: #fff;
}

.modern-btn-search.icon-only:hover i {
  color: #0b5fa2;
}

/* Slider Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-base);
}

.slider-control:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
  left: 2rem;
}

.slider-control.next {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-base);
}

.slider-dot.active {
  background: var(--white);
  width: 32px;
  border-radius: 6px;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  background: var(--white);
  padding: 3rem 0;
  box-shadow: var(--shadow-sm);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.trust-badge i {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.trust-badge h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.25rem;
}

.trust-badge p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ===== SECTION STYLES ===== */
.homef section {
  padding: var(--spacing-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-tag {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--primary-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== DESTINATIONS SECTION ===== */
.destinations-section {
  background: var(--off-white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.destination-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.destination-card:hover .destination-image {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--white);
}

.destination-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.destination-country {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.destination-tours {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ===== TOURS SECTION ===== */
.tour-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--dark-gray);
  font-weight: 500;
  border: 2px solid var(--light-gray);
  transition: var(--transition-base);
  max-width: 100%;
  text-align: center;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.tour-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.tour-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.tour-card:hover .tour-image {
  transform: scale(1.1);
}

.tour-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
}

.tour-wishlist {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray);
  transition: var(--transition-base);
}

.tour-wishlist:hover,
.tour-wishlist.active {
  color: #e74c3c;
  transform: scale(1.1);
}

.tour-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-category {
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.tour-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tour-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-meta-item i {
  color: var(--primary-color);
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  color: #ffc107;
  font-size: 0.9rem;
}

.rating-count {
  color: var(--gray);
  font-size: 0.85rem;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
}

.tour-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.8rem;
  color: var(--gray);
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.price-old {
  font-size: 1rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.btn-view-tour {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition-base);
}

.btn-view-tour:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

/* ===== TOUR SEARCH ===== */
.tour-search-panel {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.tour-search-summary {
  color: #64748b;
  margin: 0 0 14px;
}

.tour-search-summary-keyword {
  color: #0b5fae;
}

.tour-search-input {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0 12px;
  outline: none;
  margin-bottom: 12px;
  background: #fff;
}

.tour-search-input:focus {
  border-color: #0b5fae;
  box-shadow: 0 0 0 3px rgba(11, 95, 174, 0.12);
}

.tour-search-group {
  margin-bottom: 8px;
}

.tour-search-group:last-child {
  margin-bottom: 0;
}

.tour-search-group-title {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

.tour-search-chip-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tour-search-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.tour-search-chip-link {
  background: #eff6ff;
  color: #1d4ed8;
}

.tour-search-chip-button {
  background: #f1f5f9;
  color: #0f172a;
  border: none;
  cursor: pointer;
}

.tour-search-empty {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  color: #334155;
}

.tour-search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.tour-search-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}

.tour-search-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.tour-search-card-media {
  position: relative;
}

.tour-search-card-link {
  display: block;
}

.tour-search-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.tour-search-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #e2b173;
  color: var(--white);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.tour-search-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-search-card-category {
  font-size: 12px;
  font-weight: 700;
  color: #0b5fae;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tour-search-card-title {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 10px;
}

.tour-search-card-title-link {
  color: #0f172a;
  text-decoration: none;
}

.tour-search-card-excerpt {
  color: #64748b;
  margin: 0 0 14px;
  line-height: 1.6;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-search-card-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.tour-search-card-meta-item {
  font-size: 13px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-search-card-meta-icon {
  color: #0b5fae;
}

.tour-search-card-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.tour-search-card-price {
  min-width: 0;
}

.tour-search-card-price-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 4px;
}

.tour-search-card-price-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tour-search-card-price-amount {
  font-size: 22px;
  font-weight: 800;
  color: #ea580c;
  line-height: 1.1;
  font-family: var(--font-body);
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums tabular-nums;
}

.tour-search-card-price-old {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
  font-family: var(--font-body);
  font-variant-numeric: lining-nums tabular-nums;
}

.tour-search-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b5fae, #0d7c8a);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.tour-search-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.tour-search-pagination-btn {
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
  font-weight: 600;
  cursor: pointer;
}

.tour-search-pagination-btn.is-active {
  border-color: #0b5fae;
  background: #0b5fae;
  color: #fff;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: var(--transition-base);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== EXPERIENCES SECTION ===== */
.experiences-section {
  background: var(--white);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.experience-card {
  text-align: center;
  padding: 2rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.experience-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition-base);
}

.experience-card:hover .experience-icon {
  transform: scale(1.1) rotate(5deg);
}

.experience-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.experience-card p {
  color: var(--gray);
  line-height: 1.7;
}


/* ===== EXPERIENCES CUSTOM (NO INLINE STYLE) ===== */
.experiences-custom-section {
  background: #eef0f2;
  padding: 72px 0 58px;
}

.experiences-custom-container {
  max-width: 1120px;
}

.experiences-custom-header {
  margin-bottom: 54px;
}

.experiences-custom-tag {
  color: #0b5fae;
}

.experiences-custom-title {
  color: #0b5fae;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
}

.experiences-custom-row {
  row-gap: 44px;
}

.experience-custom-icon-shell {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f2f4f7;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-custom-icon-core {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.experience-custom-heading {
  color: #3a4a5a;
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin-bottom: 10px;
}

.experience-custom-desc {
  color: #566679;
  line-height: 1.75;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  max-width: 530px;
  margin: 0 auto;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: var(--gradient-primary);
  color: var(--white);
}

.testimonials-section .section-tag {
  color: var(--accent-color);
}
/*
.testimonials-section .section-title {
  color: var(--white);
} */

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: var(--radius-xl);
  text-align: center;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  background: var(--off-white);
  padding-top: 5px;
}

.page-header {
  background: linear-gradient(135deg, #ff8a00 0%, #0f78b8 60%, #0a4f93 100%);
  color: var(--white);
  padding: 150px 20px 60px;
  text-align: center;
}

.page-header-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 10px;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  overflow-wrap: anywhere;
}

.page-header-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  max-width: 760px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.destinations-list {
  padding: 60px 20px;
}

.destinations-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
    min-height: 240px;

}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-base);
}

.blog-link:hover {
  color: var(--secondary-color);
  gap: 1rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  transition: var(--transition-base);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--secondary-color);
  transition: var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: var(--gradient-secondary);
  padding: 4rem 0;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.newsletter-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex: 1;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--dark-gray);
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: var(--gray);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.footer-brand span {
  font-family: var(--font-heading);
}

.footer-brand-logo {
  width: 260px;
  border-radius: 6px;
  display: inline-block;
}
ul.footer-links {
    padding-left: 0px;
    font-size: 0.9rem;
}
.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}
img.nav-brand-logo{
  max-height: 58px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-4px);
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 0.5rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-certifications {
  display: flex;
  gap: 1rem;
}

.trust-certifications img {
  height: 30px;
  opacity: 0.8;
  transition: var(--transition-base);
}

.trust-certifications img:hover {
  opacity: 1;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.copyright i {
  color: #e74c3c;
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  animation: modalSlideIn 0.3s ease;
}

.modal-large {
  max-width: 1000px;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark-gray);
  transition: var(--transition-base);
}

.modal-close:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--gray);
}

/* ===== FORMS ===== */
.booking-form,
.newsletter-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--dark-gray);
  transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 127, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* Booking modal - contact form style */
.modal-content-booking {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-content-booking .modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--white);
  margin-bottom: 0;
  padding: 2rem 4.2rem 1rem 3rem;
  border-bottom: 1px solid #eef1f4;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}


.modal-content-booking .modal-header .modal-header-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--dark-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.modal-content-booking .modal-header .modal-header-close:hover {
  background: var(--primary-color);
  color: var(--white);
}

.booking-form-contact {
  padding: 1.25rem 3rem 2rem;
  overflow-y: auto;
  max-height: calc(90vh - 140px);
}

.booking-form-contact .form-row {
  margin-bottom: 1rem;
}

.booking-form-contact .form-group {
  margin-bottom: 0.75rem;
}

.booking-form-contact .form-group textarea {
  min-height: 120px;
}

.btn-book-submit {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.95rem 1.25rem;
  border: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ff6b35 0%, #ff874f 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: var(--transition-base);
  box-shadow: 0 8px 18px rgba(255, 107, 53, 0.28);
}

.btn-book-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 107, 53, 0.36);
}

.btn-book-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  box-shadow: none;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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



.news-detail-banner-wrap {
  margin-bottom: 20px;
}

.news-detail-banner-image {
  width: 100%;
  object-fit: cover;
}

.news-detail-section {
  padding-top: 40px;
  padding-bottom: 60px;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.news-detail-main {
  min-width: 0;
  max-width: 100%;
}

.news-detail-breadcrumb {
  margin-bottom: 28px;
  font-size: 13px;
}

.news-detail-breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-detail-breadcrumb-link {
  color: #0b5fae;
  text-decoration: none;
  font-weight: 500;
}

.news-detail-breadcrumb-sep {
  color: #ccc;
}

.news-detail-breadcrumb-current {
  color: #666;
}

.news-detail-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 14px;
}

.news-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
}

.news-detail-meta-icon {
  color: #0b5fae;
  font-size: 16px;
}

.news-detail-category-link {
  color: #0b5fae;
  text-decoration: none;
  font-weight: 500;
}

.news-detail-title-wrap {
  margin-bottom: 32px;
}

.news-detail-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0b5fae;
  line-height: 1.3;
  margin-bottom: 0;
}

.news-detail-content-wrap {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  max-width: 100%;
  min-width: 0;
}

.news-detail-excerpt {
  font-size: 1.1rem;
  font-style: italic;
  color: #666;
  margin-bottom: 28px;
  border-left: 4px solid #0b5fae;
  background-color: #f8f9fa;
  padding: 16px 20px;
  border-radius: 4px;
}

.news-detail-toc {
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid #e5edf7;
  background: #f8fbff;
  border-radius: 10px;
}

.news-detail-toc-title {
  font-size: 15px;
  font-weight: 700;
  color: #0b5fae;
  margin-bottom: 10px;
}

.news-detail-toc-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.news-detail-toc-link {
  color: #2b3a4d;
  text-decoration: none;
  line-height: 1.5;
}

.news-detail-toc-link:hover {
  color: #0b5fae;
  text-decoration: underline;
}

.news-detail-toc-link.is-active {
  color: #0b5fae;
  font-weight: 600;
  text-decoration: underline;
}


.article-body h2 {
  scroll-margin-top: 90px;
}


.article-body {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-body * {
  max-width: 100% !important;
  box-sizing: border-box;
}

.article-body img,
.article-body iframe,
.article-body video,
.article-body table,
.article-body pre,
.article-body code {
  max-width: 100% !important;
}

.article-body table,
.article-body pre,
.article-body code {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.news-detail-share {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
  flex-wrap: wrap;
}

.news-detail-share-label {
  color: #666;
  font-weight: 500;
  font-size: 14px;
}

.news-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-share-btn-facebook {
  background-color: #4267b2;
}

.news-share-btn-twitter {
  background-color: #1da1f2;
}

.news-share-btn-linkedin {
  background-color: #0077b5;
}

.news-share-btn-copy {
  background-color: #666;
}

.news-detail-comments,
.news-detail-back-wrap {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}

.news-detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b5fae;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.news-detail-sidebar {
  position: sticky;
  top: 20px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-detail-sidebar-section {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eef2f7;
}

.news-detail-sidebar-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.news-detail-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: #0b5fae;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.news-detail-sidebar-links,
.news-detail-related-list {
  display: grid;
  gap: 8px;
}

.news-detail-sidebar-link,
.news-detail-related-link {
  text-decoration: none;
}

.news-detail-sidebar-link {
  font-size: 14px;
  color: #2b3a4d;
  padding: 9px 12px;
  border-radius: 8px;
  transition: all 0.25s ease;
  display: block;
  border: 1px solid #e5edf7;
  background: #fff;
}

.news-detail-sidebar-link:hover {
  background-color: #f0f5fa;
  border-color: #cfe2ff;
  color: #0b5fae;
}

.news-detail-related-list {
  gap: 16px;
}

.news-detail-related-link {
  color: inherit;
  display: block;
}

.news-detail-related-card {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e5edf7;
  background: #fff;
  transition: all 0.25s ease;
}

.news-detail-related-link:hover .news-detail-related-card {
  background-color: #f0f5fa;
  border-color: #cfe2ff;
}

.news-detail-related-image {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-detail-related-content {
  flex: 1;
  min-width: 0;
}

.news-detail-related-title {
  font-size: 13px;
  font-weight: 600;
  color: #0b5fae;
  margin-bottom: 4px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-detail-related-date {
  font-size: 11px;
  color: #999;
}

.tour-detail-banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 700px;
  background: #08121f;
  overflow: hidden;
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-detail-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.tour-detail-banner.is-video {
  background: #020617;
}

.tour-detail-banner-media,
.tour-detail-banner-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.tour-detail-banner-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.77vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}

.tour-detail-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.tour-detail-banner-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tour-detail-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease;
}

.tour-detail-banner-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s backwards;
}

.tour-detail-banner-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.6);
  color: #fff;
  z-index: 5;
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 20px;
  cursor: pointer;
}

.tour-detail-banner-control:hover {
  background: rgba(11, 95, 174, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.tour-detail-banner-control.prev {
  left: 24px;
}

.tour-detail-banner-control.next {
  right: 24px;
}

.tour-detail-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.tour-detail-banner-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tour-detail-banner-dots button:hover {
  background: rgba(255, 255, 255, 0.8);
}

.tour-detail-banner-dots button.active {
  width: 28px;
  background: #fff;
}

.tour-detail-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.tour-detail-breadcrumb {
  margin-bottom: 28px;
  font-size: 13px;
}

.tour-detail-breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tour-detail-breadcrumb-link {
  color: #0b5fae;
  text-decoration: none;
  font-weight: 500;
}

.tour-detail-breadcrumb-sep {
  color: #ccc;
}

.tour-detail-breadcrumb-current {
  color: #666;
}

.tour-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.tour-detail-title-mobile {
  display: none;
}

.tour-detail-title-desktop {
  margin-bottom: 32px;
}

.tour-detail-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0b5fae;
  line-height: 1.3;
  margin-bottom: 0;
}

.tour-detail-content-wrap {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}


.tour-content-section-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #0b5fae;
  text-transform: none;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tour-highlight-section,
.tour-destination-section,
.tour-itinerary-section,
.tour-departure-section,
.tour-service-section,
.tour-policy-section {
  margin-bottom: 36px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tour-highlight-section-head,
.tour-destination-section-head,
.tour-itinerary-section-head,
.tour-departure-section-head,
.tour-service-section-head,
.tour-policy-section-head {
  margin-bottom: 14px;
}

.tour-destination-list {
  display: grid;
  gap: 20px;
}

.tour-destination-item {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.tour-destination-item-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.tour-destination-item-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
}

.tour-destination-item-text,
.tour-destination-item-text p {
  margin: 0;
  color: #334155;
  line-height: 1.75;
}

.tour-highlight-list,
.tour-policy-grid,
.tour-service-list {
  gap: 12px;
}

.tour-highlight-item,
.tour-policy-card,
.tour-service-card,
.tour-service-item {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.tour-highlight-item-text {
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
}

.tour-highlight-item-icon,
.tour-policy-card-icon,
.tour-service-item-icon {
  width: 20px;
  height: 20px;
  font-size: 11px;
  border-radius: 50%;
  box-shadow: none;
}

.tour-service-item.is-inclusion .tour-service-item-icon {
  background: #67c23a;
  color: #fff;
}

.tour-service-item.is-exclusion .tour-service-item-icon {
  background: #f4b400;
  color: #fff;
}

.tour-service-card.is-inclusion,
.tour-service-card.is-exclusion,
.tour-service-item.is-inclusion,
.tour-service-item.is-exclusion {
  background: transparent;
  border: 0;
}
.tour-service-item {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}


.tour-policy-card-title,
.tour-service-item-title {
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 600;
}

.tour-policy-card-content,
.tour-service-item-content,
.tour-departure-note,
.tour-itinerary-content {
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
}

.tour-child-price-single {
  color: #1f2937;
}

.tour-child-price-single-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.tour-child-price-single-content,
.tour-child-price-single-content p,
.tour-child-price-single-content li {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}

.tour-child-price-single-content > *:first-child {
  margin-top: 0;
}

.tour-child-price-single-content > *:last-child {
  margin-bottom: 0;
}

.tour-note-simple-list {
  display: grid;
  gap: 14px;
}

.tour-note-simple-item {
  padding: 0;
}

.tour-note-accordion {
  display: grid;
  gap: 10px;
}

.tour-note-accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.tour-note-accordion-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}

.tour-note-accordion-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.tour-note-accordion-icon {
  color: #0b5fae;
  font-size: 13px;
  flex-shrink: 0;
}

.tour-note-accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.tour-note-accordion-content.is-open {
  max-height: 600px;
  opacity: 1;
}

.tour-note-accordion-content-inner {
  padding: 0 0 12px;
  color: #334155;
  font-size: 15px;
  line-height: 1.75;
}

.tour-note-accordion-content-inner > *:first-child {
  margin-top: 0;
}

.tour-note-accordion-content-inner > *:last-child {
  margin-bottom: 0;
}
.tour-departure-card.is-accordion {
  padding: 0;
}

.tour-departure-accordion-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  padding: 14px 18px;
}

.tour-departure-accordion-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tour-departure-accordion-status-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tour-departure-accordion-icon {
  color: #0b5fae;
  font-size: 13px;
}

.tour-departure-accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.tour-departure-accordion-content.is-open {
  max-height: 1400px;
  opacity: 1;
}

.tour-departure-accordion-content-inner {
  padding: 0 18px 18px;
}

.tour-departure-booking-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #f8fbff;
  padding: 10px 12px;
}

.tour-departure-booking-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #0f172a;
}

.tour-departure-booking-old {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 14px;
}

.tour-departure-booking-price strong {
  color: #0b5fae;
  font-size: 20px;
  line-height: 1;
}

.tour-departure-booking-price span:last-child {
  color: #64748b;
  font-size: 13px;
}

.tour-departure-booking-btn {
  border: 0;
  border-radius: 999px;
  background: #0b5fae;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(11, 95, 174, 0.3);
}

.tour-departure-booking-btn:hover:not(:disabled) {
  background: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.tour-departure-booking-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.tour-departure-booking-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.booking-page {
  padding: 60px 0 80px;
}

.booking-hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
  margin-bottom: 42px;
}

.booking-hero-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 95, 174, 0.12);
  color: #0b5fae;
  font-weight: 700;
  font-size: 13px;
}

.booking-title {
  font-size: 32px;
  line-height: 1.1;
  margin: 0;
  color: #0f172a;
}

.booking-tagline {
  font-size: 16px;
  color: #475569;
  max-width: 100%;
}

.booking-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
}

.booking-hero-meta div {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 16px;
}

.booking-hero-meta span {
  display: block;
  color: #64748b;
  font-size: 13px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.booking-hero-meta strong {
  font-size: 18px;
  color: #0b5fae;
}

.booking-hero-right {
  display: flex;
  align-items: stretch;
}

.booking-contact-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.booking-contact-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.booking-contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0b5fae;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.booking-contact-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.booking-page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.booking-page-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-page-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-summary-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
}

.booking-summary-card h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 18px;
  color: #0f172a;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.booking-summary-row span {
  color: #64748b;
  font-size: 14px;
}

.booking-summary-row strong {
  color: #0f172a;
  font-size: 15px;
  text-align: right;
}

.booking-summary-total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.booking-summary-total strong {
  color: #0b5fae;
  font-size: 20px;
}

.booking-summary-note {
  margin-top: 18px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.booking-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-note-card {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 20px;
}

.booking-note-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #0b5fae;
}

.booking-page-form {
  display: grid;
  gap: 18px;
}

.booking-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.booking-guest-grid {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
}

.booking-guest-row {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
}

.booking-guest-label {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.booking-guest-meta {
  font-size: 13px;
  color: #64748b;
}

.booking-addon-row {
  padding: 18px 20px;
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
}

.booking-page-form label {
  font-size: 14px;
  color: #334155;
  font-weight: 600;
}

.booking-page-form input,
.booking-page-form select,
.booking-page-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  color: #0f172a;
  background: #fff;
}

.booking-page-form textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-status-message {
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
}

.booking-status-message.success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #a7f3d0;
}

.booking-status-message.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.btn-booking-submit {
  width: 100%;
  background: #0b5fae;
  color: #fff;
  border-radius: 999px;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.btn-booking-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 991.98px) {
  .booking-hero {
    grid-template-columns: 1fr;
  }

  .booking-page-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .tour-departure-accordion-toggle {
    padding: 12px 14px;
  }

  .tour-departure-accordion-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .tour-departure-accordion-content-inner {
    padding: 0 14px 14px;
  }

  .tour-departure-booking-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .tour-departure-booking-btn {
    width: 100%;
  }
}


.tour-unified-richtext,
.tour-unified-richtext p,
.tour-unified-richtext li,
.tour-unified-richtext span,
.tour-unified-richtext div,
.tour-unified-richtext a,
.tour-unified-richtext strong,
.tour-unified-richtext em {
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: #334155 !important;
}

.tour-unified-richtext p,
.tour-unified-richtext ul,
.tour-unified-richtext ol {
  margin: 0 0 10px !important;
}

.tour-unified-richtext ul,
.tour-unified-richtext ol {
  padding-left: 20px !important;
}

.tour-unified-richtext > *:first-child {
  margin-top: 0 !important;
}

.tour-unified-richtext > *:last-child {
  margin-bottom: 0 !important;
}



.tour-detail-toc {
  margin-bottom: 24px;
  padding: 18px 18px;
  border: 1px solid #cfe2ff;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(11, 95, 174, 0.1);
}

.tour-detail-toc-title {
  font-size: 15px;
  font-weight: 800;
  color: #0b5fae;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.tour-detail-toc-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.tour-detail-toc-link {
  color: #1f334d;
  text-decoration: none;
  line-height: 1.5;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.tour-detail-toc-link:hover {
  color: #0b5fae;
  background: rgba(11, 95, 174, 0.08);
}

.tour-detail-toc-link.is-active {
  color: #0b5fae;
  font-weight: 700;
  background: rgba(11, 95, 174, 0.12);
}

.tour-content-body h2 {
  scroll-margin-top: 90px;
}

.tour-detail-sidebar {
  position: sticky;
  top: 100px;
}

.tour-section-nav {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
  border-radius: 0 0 12px 12px;
}

.tour-section-nav-title {
  font-size: 16px;
  font-weight: 800;
  color: #0b5fae;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.tour-section-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tour-section-nav-list.mobile {
  flex-direction: row;
  overflow-x: auto;
  padding-bottom: 4px;
}

.tour-section-nav-link {
  display: block;
  padding: 6px 12px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
  color: #64748b;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  border-bottom: 1px solid #f1f5f9;
  padding-left: 12px;
  text-transform: uppercase;
}

.tour-section-nav-link:hover {
  color: #334155;
}

.tour-section-nav-link.active {
  font-weight: 600;
  color: #0b5fae;
  padding-left: 24px;
}

.tour-section-nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  background-color: #0b5fae;
  border-radius: 2px;
}

.tour-detail-summary {
  background-color: #f0f5fa;
  padding: 20px;
  border-left: 4px solid #0b5fae;
  margin-bottom: 40px;
  border-radius: 4px;
}

.tour-detail-summary-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.tour-sidebar-price {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}

.tour-sidebar-price-label {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 600;
}

.tour-sidebar-price-value {
  font-size: 30px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 6px;
  line-height: 1;
}

.tour-sidebar-price-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tour-sidebar-price-old {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.tour-sidebar-price-discount {
  font-size: 12px;
  color: #ff6b35;
  font-weight: 700;
  background-color: #fff1eb;
  padding: 4px 8px;
  border-radius: 999px;
}

.tour-sidebar-info-grid,
.tour-sidebar-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tour-sidebar-info-grid {
  margin-bottom: 18px;
}

.tour-sidebar-info-card {
  padding: 10px 12px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.tour-sidebar-info-label,
.tour-sidebar-fact-label {
  font-size: 10px;
  color: #999;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.tour-sidebar-info-value {
  font-size: 13px;
  font-weight: 700;
  color: #0b5fae;
  line-height: 1.35;
}

.tour-sidebar-facts-wrap {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}

.tour-sidebar-facts-title {
  font-size: 11px;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.tour-sidebar-fact-card {
  padding: 10px 12px;
  background-color: #f9fafb;
  border-radius: 8px;
  min-width: 0;
}

.tour-sidebar-fact-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.tour-sidebar-fact-icon {
  color: #ff6b35;
  font-size: 13px;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.tour-sidebar-fact-value {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}

.tour-sidebar-category {
  margin-bottom: 14px;
  font-size: 13px;
  color: #64748b;
}

.tour-sidebar-category-link {
  color: #0b5fae;
  text-decoration: none;
  font-weight: 600;
}

.tour-sidebar-cta-group {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.tour-sidebar-btn {
  width: 100%;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.tour-sidebar-btn-icon {
  margin-right: 8px;
}

.tour-sidebar-btn-primary {
  padding: 13px 18px;
  background-color: #ff6b35;
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.tour-sidebar-btn-primary:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.tour-sidebar-btn-secondary {
  padding: 13px 18px;
  background-color: #f0f5fa;
  color: #0b5fae;
  border: 2px solid #0b5fae;
}

.tour-sidebar-btn-link {
  padding: 10px 14px;
  background-color: transparent;
  color: #0b5fae;
  border: none;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
}

.tour-sidebar-status {
  font-size: 12px;
  line-height: 1.5;
}

.tour-sidebar-status.is-success {
  color: #0f766e;
}

.tour-sidebar-status.is-error {
  color: #b91c1c;
}

.tour-sidebar-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0b5fae;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.tour-sidebar-phone-icon {
  color: #ff6b35;
}
/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 992px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .navbar {
    gap: 0.75rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(268px, calc(100vw - 52px));
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    flex-direction: column;
    align-items: stretch;
    padding: 5.4rem 1rem 1.2rem;
    box-shadow: -10px 0 28px rgba(11, 95, 174, 0.18);
    border-left: 1px solid rgba(11, 95, 174, 0.16);
    transition: var(--transition-base);
    gap: 0.35rem;
    transform: translateX(calc(100% + 24px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    text-align: left;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    color: #123a68;
    font-size: 1.02rem;
    text-align: left;
    display: block;
    width: 100%;
    padding: 0.56rem 0.25rem;
    border-radius: 10px;
  }

  .nav-item.has-children {
    width: 100%;
  }

  .news-detail-section {
    padding-top: 20px;
    padding-bottom: 52px;
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-detail-main,
  .news-detail-content-wrap {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .news-detail-breadcrumb {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .news-detail-title {
    font-size: 1.55rem;
  }

  .news-detail-sidebar {
    position: static;
    top: auto;
    padding: 16px 14px;
  }

  .news-detail-sidebar-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .news-detail-related-card {
    padding: 10px;
  }


  .news-detail-toc {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 8px;
  }

  .news-detail-toc-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .news-detail-toc-list {
    gap: 6px;
    padding-left: 18px;
  }

  .news-detail-toc-link {
    font-size: 14px;
    line-height: 1.45;
  }

  .article-body h2 {
    scroll-margin-top: 78px;
  }

  .news-detail-related-image {
    width: 56px;
    height: 56px;
  }

  .news-detail-share {
    gap: 10px;
  }

  .article-body {
    padding: 0 6px;
  }

  .article-body,
  .article-body * {
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .article-body table,
  .article-body pre,
  .article-body code,
  .article-body iframe,
  .article-body video {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-item.has-children .nav-link-row {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .nav-item.has-children .nav-link {
    width: 100%;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(11, 95, 174, 0.1);
    color: #0b5fae;
  }

  .nav-caret-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0b5fae;
    min-width: 32px;
    min-height: 32px;
  }

  .nav-submenu {
    position: static;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    padding: 0.2rem 0 0.3rem 0.7rem;
    display: none;
  }

  .nav-item.has-children.is-open > .nav-submenu {
    display: block;
  }

  .nav-submenu .nav-link {
    padding: 0.4rem 0.25rem;
    font-size: 0.95rem;
  }

  .nav-submenu .nav-item.has-children > .nav-submenu {
    left: 0;
    top: 0;
    padding-left: 0.9rem;
  }


  .mobile-toggle {
    display: block;
    color: #0b5fae;
  }

  .nav-actions {
    gap: 0.65rem;
  }

  .btn-cta {
    padding: 0.7rem 1rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .hero-search-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-search-floating {
    padding: 0.9rem;
    border-radius: 16px;
  }

  .modern-search-box {
    padding: 0.75rem;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  .experiences-custom-header {
    margin-bottom: 36px;
  }

  .experiences-custom-row {
    row-gap: 30px;
  }

  .experience-custom-heading {
    font-size: 1.35rem;
  }

  .experience-custom-desc {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .tour-search-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .tour-search-card-image {
    height: 220px;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 320px;
    max-height: 640px;
  }

  .hero-slide {
    background-position: center top;
  }

  .hero-content {
    padding: 0.75rem 0.35rem;
  }

  .hero-title {
    font-size: 1.55rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .hero-search-floating {
    max-width: 100%;
  }

  .modern-search-box {
    position: relative;
    display: block;
    border-radius: 16px;
    padding: 0.35rem;
    padding-right: 56px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.4);
  }

  .modern-single-input {
    min-height: 44px;
    font-size: 0.95rem;
    padding: 0 0.7rem;
  }

  .modern-btn-search.icon-only {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff8a00, #ff5a00);
    box-shadow: 0 8px 18px rgba(255, 106, 0, 0.45);
  }

  .experiences-custom-row {
    row-gap: 18px;
  }

  .experience-custom-heading {
    font-size: 1rem;
    line-height: 1.35;
  }

  .experience-custom-desc {
    font-size: 0.88rem;
    line-height: 1.55;
  }


  .slider-control {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slider-control.prev {
    left: 1rem;
  }

  .slider-control.next {
    right: 1rem;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .destinations-grid,
  .tours-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
  }

  .tour-filters {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .modal-content {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .navbar {
    padding: 1rem var(--spacing-sm);
  }

  .btn-cta {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 1;
    flex-shrink: 0;
    padding-left: 8px;
  }

  .btn-cta i {
    font-size: 1rem;
    margin: 0;
    line-height: 1;
    display: block;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .page-header {
    padding: 128px 16px 48px;
  }

  .page-header-title {
    font-size: 2rem;
  }

  .destinations-list {
    padding: 48px 16px;
  }

  .destinations-empty-state {
    padding: 40px 5px !important;
  }

  .tour-detail-section {
    padding-top: 20px;
    padding-bottom: 52px;
  }

  .tour-detail-banner {
    min-height: 350px;
    height: clamp(350px, 50vh, 600px);
  }

  .tour-detail-banner-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .tour-detail-banner-content {
    padding: 30px 16px;
  }

  .tour-detail-banner-control {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .tour-detail-banner-control.prev {
    left: 12px;
  }

  .tour-detail-banner-control.next {
    right: 12px;
  }

  .tour-detail-banner-dots {
    bottom: 14px;
    gap: 6px;
  }

  .tour-detail-breadcrumb {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .tour-detail-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .tour-detail-title-mobile {
    display: block;
    margin-bottom: 18px;
  }

  .tour-detail-title-desktop {
    display: none;
  }

  .tour-detail-title {
    font-size: 1.55rem;
  }

  .tour-detail-content-wrap {
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .tour-detail-toc {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(11, 95, 174, 0.12);
  }

  .tour-detail-toc-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .tour-detail-toc-list {
    gap: 6px;
    padding-left: 18px;
  }

  .tour-detail-toc-link {
    font-size: 14px;
    line-height: 1.45;
    padding: 3px 6px;
    border-radius: 7px;
  }

  .tour-content-body h2 {
    scroll-margin-top: 78px;
  }

  .tour-detail-main {
    min-width: 0;
    max-width: 100%;
  }

  .tour-detail-sidebar {
    position: static;
    top: auto;
    order: -1;
    padding: 16px 14px;
  }

  .tour-detail-summary {
    padding: 14px 12px;
    margin-bottom: 24px;
  }

  .tour-sidebar-price-value {
    font-size: 26px;
  }

  .tour-sidebar-info-grid,
  .tour-sidebar-facts-grid {
    grid-template-columns: 1fr;
  }

  .tour-sidebar-btn {
    font-size: 14px;
  }

  .tour-sidebar-phone-link {
    font-size: 13px;
    word-break: break-word;
    text-align: center;
  }

  .tour-content-body {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    padding: 0px 6px;
  }

  .tour-content-body * {
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .tour-content-body img,
  .tour-content-body iframe,
  .tour-content-body video,
  .tour-content-body table,
  .tour-content-body pre,
  .tour-content-body code {
    max-width: 100% !important;
  }

  .tour-content-body pre,
  .tour-content-body code,
  .tour-content-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .destinations-grid-page {
    gap: 20px;
  }

  /* Checkout mobile */
  .checkout-page {
    padding-top: 18px !important;
    padding-bottom: 42px !important;
  }

  .checkout-head {
    margin-bottom: 14px !important;
  }

  .checkout-title {
    font-size: 1.55rem !important;
    line-height: 1.25;
  }

  .checkout-layout {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .checkout-form-card,
  .checkout-summary-card {
    border-radius: 12px !important;
    padding: 14px !important;
  }

  .checkout-summary-card {
    position: static !important;
    top: auto !important;
  }

  .checkout-contact-row {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .checkout-page input,
  .checkout-page textarea,
  .checkout-page button {
    font-size: 16px !important;
  }

  .checkout-reasons {
    margin-top: 28px !important;
    padding: 18px 14px !important;
  }

  .checkout-reasons-title {
    font-size: 1.45rem !important;
  }

  .checkout-reasons-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #checkoutSuggestedToursGrid {
    gap: 14px;
  }

  /* Cart mobile */
  .cart-page {
    padding-top: 18px !important;
    padding-bottom: 42px !important;
  }

  .cart-head {
    margin-bottom: 14px !important;
  }

  .cart-title {
    font-size: 1.55rem !important;
    line-height: 1.25;
  }

  .cart-layout {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .cart-list-card,
  .cart-summary-card {
    border-radius: 12px !important;
    padding: 14px !important;
  }

  .cart-summary-card {
    position: static !important;
    top: auto !important;
  }

  .cart-item-row {
    grid-template-columns: 76px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .cart-item-actions {
    flex-wrap: wrap;
    gap: 6px !important;
  }

  .cart-item-total {
    grid-column: 1 / -1;
    justify-self: end;
    margin-top: 4px;
  }

  .cart-checkout-btn {
    width: 100%;
  }

  #cartSuggestedToursGrid {
    gap: 14px;
  }

  /* About mobile */
  .about-hero {
    height: 300px !important;
    padding: 0 14px;
  }

  .about-hero-content {
    width: 100%;
    max-width: 100%;
  }

  .about-hero-title {
    font-size: 2rem !important;
    margin-bottom: 10px !important;
    line-height: 1.25 !important;
  }

  .about-hero-subtitle {
    font-size: 0.98rem !important;
    line-height: 1.5;
  }

  .about-intro-section {
    padding-top: 28px !important;
    padding-bottom: 32px !important;
  }

  .about-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .about-intro-title {
    font-size: 1.7rem !important;
    margin-bottom: 12px !important;
  }

  .about-intro-content {
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
  }

  .about-intro-media img,
  .about-intro-media > div {
    height: 240px !important;
    border-radius: 10px !important;
  }

  .about-stats-section {
    padding-top: 28px !important;
    padding-bottom: 32px !important;
  }

  .about-stats-head {
    margin-bottom: 20px !important;
  }

  .about-stats-title {
    font-size: 1.7rem !important;
    margin-bottom: 10px !important;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .about-stats-item {
    padding: 10px 8px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e2e8f0;
  }

  .about-stats-icon {
    font-size: 30px !important;
    margin-bottom: 8px !important;
  }

  .about-stats-number {
    font-size: 1.25rem !important;
    margin-bottom: 4px !important;
  }

  .about-stats-label {
    font-size: 13px !important;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .search-box {
    padding: 1.5rem;
  }

  .btn-cta {
    width: 42px;
    height: 42px;
  }

  .nav-brand {
    font-size: 1.2rem;
  }

  .nav-brand i {
    font-size: 1.5rem;
  }

  img.nav-brand-logo {
    max-height: 46px;
  }

  .modern-search-box {
    grid-template-columns: 1fr;
    border-radius: 28px;
    padding: 0.85rem;
  }

  /* .modern-btn-search.icon-only {
    width: 100%;
    min-width: 0;
  } */

  .tour-filters {
    justify-content: stretch;
  }

  .filter-btn {
    width: 100%;
  }

  .blog-content {
    padding: 1.25rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .page-header {
    padding-top: 116px;
  }

  .page-header-title {
    font-size: 1.7rem;
  }

  .page-header-subtitle {
    font-size: 0.98rem;
  }

  .destinations-grid-page {
    grid-template-columns: 1fr;
  }

  .tour-search-panel {
    padding: 14px;
  }

  .tour-search-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tour-search-card-image {
    height: 210px;
  }

  .tour-search-card-body {
    padding: 15px;
  }

  .tour-search-card-title {
    font-size: 1.05rem;
  }

  .tour-search-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .tour-search-card-cta {
    justify-content: center;
  }

  .tour-search-card-price-amount {
    font-size: 1.25rem;
  }
}

/* ===== UTILITY ANIMATIONS ===== */
.fade-in {
  animation: fadeInUp 0.6s ease;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease;
}

.slide-in-right {
  animation: slideInRight 0.6s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== LOADING STATE ===== */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== SMOOTH SCROLLING ===== */
html {
  scroll-padding-top: 80px;
}

/* ===== SELECTION ===== */
::selection {
  background: var(--secondary-color);
  color: var(--white);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ===== ENHANCED BOOKING FORM STYLES ===== */

.booking-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.booking-form-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-note-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.booking-note-card .booking-note-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.booking-note-card p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.95;
}

/* Form Sections */
.booking-form-section {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--white);
  margin-bottom: 15px;
}

.booking-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 20px;
  display: block;
  font-family: var(--font-heading);
}

/* Passenger Quantity Section */
.booking-guest-section {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--white);
}

.booking-guest-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
}

.booking-guest-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.booking-guest-info {
  flex: 1;
}

.booking-guest-label {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 4px;
}

.booking-guest-meta {
  font-size: 0.9rem;
  color: var(--gray);
}

.booking-guest-control {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.booking-guest-btn {
  background: transparent;
  border: none;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--primary-color);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-guest-btn:hover {
  background: var(--light-gray);
  color: var(--primary-dark);
}

.booking-guest-input {
  width: 50px;
  border: none;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 4px;
  background: transparent;
}

.booking-guest-input::-webkit-outer-spin-button,
.booking-guest-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Addon Row */
.booking-addon-row {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--off-white);
}

.booking-addon-row label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  cursor: pointer;
  font-weight: 500;
}

.booking-addon-row input[type="checkbox"] {
  cursor: pointer;
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
}

.booking-addon-label {
  flex: 1;
  padding-left: 8px;
}

/* Passenger Details */
.booking-passengers-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-passenger-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 20px;
}

.booking-passenger-title {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 1rem;
}

/* Terms Checkbox */
.booking-terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
  line-height: 1.6;
}

.booking-terms-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--primary-color);
  margin-right: 10px;
}

.booking-terms-checkbox strong {
  color: var(--primary-color);
}

/* Status Messages */
.booking-status-message {
  padding: 16px;
  border-radius: var(--radius-md);
  font-weight: 500;
}

.booking-status-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.booking-status-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Submit Button */
.btn-booking-submit {
  background: var(--gradient-primary);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.btn-booking-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-booking-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Summary Card */
.booking-summary-card {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.booking-summary-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-gray);
  font-family: var(--font-heading);
}

.booking-summary-section {
  margin-bottom: 20px;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--light-gray);
}

.booking-summary-row:last-child {
  border-bottom: none;
}

.booking-summary-row span {
  color: var(--gray);
}

.booking-summary-row strong {
  color: var(--dark-gray);
  font-weight: 600;
}

.booking-summary-divider {
  height: 1px;
  background: var(--light-gray);
  margin: 16px 0;
}

.booking-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  border-radius: var(--radius-md);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.booking-summary-total strong {
  color: white;
  font-size: 1.25rem;
}

.booking-summary-note {
  margin-top: 20px;
  padding: 12px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.5;
}

/* Form Group */
.booking-form-group {
  margin-bottom: 15px;
}

.booking-page-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.booking-page-form input[type="text"],
.booking-page-form input[type="email"],
.booking-page-form input[type="tel"],
.booking-page-form input[type="date"],
.booking-page-form select,
.booking-page-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: white;
  transition: border-color 0.2s ease;
}

.booking-page-form input[type="text"]:focus,
.booking-page-form input[type="email"]:focus,
.booking-page-form input[type="tel"]:focus,
.booking-page-form input[type="date"]:focus,
.booking-page-form select:focus,
.booking-page-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 127, 0.1);
}

/* Form Row */
.booking-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form-row .booking-form-group {
  margin-bottom: 0;
}

.booking-passenger-inline-row {
  grid-template-columns: minmax(220px, 1.3fr) minmax(170px, 1fr) minmax(170px, 1fr);
}

@media (max-width: 991.98px) {
  .booking-passenger-inline-row {
    grid-template-columns: 1fr;
  }
}


/* Success Link */
.booking-success-link {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  color: #155724;
}

.booking-view-order-link {
  display: inline-block;
  margin-top: 8px;
  color: #155724;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.booking-view-order-link:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-form-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }

  .booking-summary-card {
    position: static;
    top: auto;
  }

  .booking-form-row {
    grid-template-columns: 1fr;
  }

  .booking-page-form input,
  .booking-page-form select,
  .booking-page-form textarea {
    font-size: 16px;
  }
}

/* Booking Success Page */
.booking-success-page {
  padding: 60px 0 80px;
}

.booking-success-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.booking-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.booking-success-icon svg {
  color: #28a745;
  animation: bounce 0.6s ease-out;
}

@keyframes bounce {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.booking-success-title {
  font-size: 32px;
  font-weight: 700;
  color: #28a745;
  margin-bottom: 12px;
  line-height: 1.3;
}

.booking-success-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.booking-success-content {
  text-align: left;
  margin-bottom: 40px;
}

.booking-success-card {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.booking-success-card h2 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #dee2e6;
}

.booking-success-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #dee2e6;
}

.booking-success-item:last-child {
  border-bottom: none;
}

.booking-success-item span {
  color: #666;
  font-size: 14px;
}

.booking-success-item strong {
  color: #333;
  font-size: 15px;
  text-align: right;
  max-width: 50%;
  word-wrap: break-word;
}

.booking-success-order-id {
  flex-direction: column;
  align-items: flex-start;
}

.booking-success-id-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}

.booking-success-id {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  flex: 1;
  word-break: break-all;
}

.booking-success-copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #0b5fae;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.booking-success-copy-btn:hover {
  background: #0a4a8e;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(11, 95, 174, 0.3);
}

.booking-success-copy-btn:active {
  transform: translateY(0);
}

.booking-success-steps {
  background: #e7f3ff;
  border-left: 4px solid #0b5fae;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 30px;
  text-align: left;
}

.booking-success-steps h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0b5fae;
  margin-bottom: 16px;
}

.booking-success-steps-list {
  margin: 0;
  padding-left: 20px;
  list-style: decimal;
}

.booking-success-steps-list li {
  margin-bottom: 12px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.booking-success-steps-list strong {
  color: #0b5fae;
}

.booking-success-contact {
  background: #fff5e6;
  border-left: 4px solid #ff9800;
  border-radius: 8px;
  padding: 24px;
  text-align: left;
}

.booking-success-contact h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ff9800;
  margin-bottom: 12px;
}

.booking-success-contact p {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.booking-success-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.booking-success-contact-info div {
  color: #333;
}

.booking-success-contact-info a {
  color: #0b5fae;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.booking-success-contact-info a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.booking-success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-success-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.booking-success-btn-primary {
  background: #0b5fae;
  color: #fff;
}

.booking-success-btn-primary:hover {
  background: #0a4a8e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 95, 174, 0.3);
}

.booking-success-btn-secondary {
  background: #f0f0f0;
  color: #0b5fae;
  border: 2px solid #0b5fae;
}

.booking-success-btn-secondary:hover {
  background: #0b5fae;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .booking-success-wrapper {
    max-width: 100%;
    padding: 20px;
  }

  .booking-success-title {
    font-size: 24px;
  }

  .booking-success-subtitle {
    font-size: 14px;
  }

  .booking-success-card {
    padding: 20px;
  }

  .booking-success-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-success-item strong {
    max-width: 100%;
    text-align: left;
  }

  .booking-success-id-wrapper {
    margin-top: 8px;
  }

  .booking-success-actions {
    flex-direction: column;
  }

  .booking-success-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Booking UI (TransViet-inspired) ===== */
.booking-page {
  background: transparent;
  padding: 36px 0 64px;
}

.booking-hero {
  display: block;
  background: #ffffff;
  border: 1px solid #e5edf6;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}

.booking-hero-left {
  width: 100%;
}

.booking-hero-right {
  display: none;
}

.booking-badge {
  background: #eaf4ff;
  color: #0a5ea8;
  font-weight: 700;
}

.booking-title {
  font-size: 28px;
  color: #14324d;
}

.booking-page-grid {
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 1fr);
  gap: 18px;
}

.booking-form-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 16px;
  max-width: none;
  padding: 0;
  align-items: start;
}

.booking-note-card,
.booking-form-section,
.booking-guest-section,
.booking-addon-row,
.booking-summary-card,
.booking-contact-card,
.booking-page-form {
  background: #fff;
  border: 1px solid #e5edf6;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(15, 40, 70, 0.04);
}

.booking-note-card {
  padding: 16px 18px;
}

.booking-note-card .booking-note-title {
  font-size: 18px;
  color: #0b5fae;
}

.booking-page-form {
  padding: 18px;
}

.booking-summary-card {
  position: sticky;
  top: 90px;
  padding: 20px;
}

.booking-summary-total {
  background: linear-gradient(90deg, #0b5fae 0%, #11a0d9 100%);
}

.btn-booking-submit {
  border-radius: 10px;
  background: linear-gradient(90deg, #ff8a00 0%, #ff6200 100%);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.btn-booking-submit:hover:not(:disabled) {
  background: linear-gradient(90deg, #ff7b00 0%, #f35600 100%);
}

.booking-guest-control {
  border-radius: 10px;
}

.booking-guest-btn {
  color: #0b5fae;
}

.booking-guest-btn:hover {
  background: #edf5ff;
}

.booking-page-form input,
.booking-page-form select,
.booking-page-form textarea {
  border-radius: 10px;
  border-color: #d5e3f3;
}

@media (max-width: 991.98px) {
  .booking-page-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-summary-card {
    position: static;
    top: auto;
  }

  .booking-title {
    font-size: 23px;
  }
}


.booking-steps-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.booking-step-btn {
  border: 1px solid #d5e3f3;
  background: #f7fbff;
  color: #27506f;
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 12px;
  transition: all 0.2s ease;
}

.booking-step-btn.active {
  background: #0b5fae;
  border-color: #0b5fae;
  color: #fff;
}

.booking-step-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.booking-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 14px 0 4px;
}

.booking-step-next,
.booking-step-back {
  border: 1px solid #d5e3f3;
  background: #fff;
  color: #14324d;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
}

.booking-step-next {
  margin-left: auto;
  background: #edf5ff;
  border-color: #b7d4f3;
}

.booking-step-next:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 991.98px) {
  .booking-steps-nav {
    grid-template-columns: 1fr;
  }

  .booking-step-actions {
    flex-direction: column;
  }

  .booking-step-next,
  .booking-step-back {
    width: 100%;
  }
}

.booking-scroll-section {
  scroll-margin-top: 110px;
  margin-bottom: 16px;
}

.booking-scroll-title {
  margin: 0 0 12px;
  color: #0b5fae;
  font-size: 18px;
  font-weight: 700;
}

.booking-scroll-sidebar {
  position: sticky;
  top: 90px;
}

.booking-scroll-sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid #e5edf6;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(15, 40, 70, 0.04);
  padding: 14px;
}

.booking-scroll-tab {
  width: 100%;
  text-align: left;
  border: 1px solid #d5e3f3;
  background: #f7fbff;
  color: #27506f;
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 12px;
  transition: all 0.2s ease;
}

.booking-scroll-tab.active {
  background: #0b5fae;
  border-color: #0b5fae;
  color: #fff;
}

.booking-scroll-tab:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 991.98px) {
  .booking-scroll-sidebar {
    position: static;
    top: auto;
    order: -1;
  }

  .booking-scroll-sidebar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .booking-scroll-sidebar-inner {
    grid-template-columns: 1fr;
  }
}

.booking-main-title {
  margin: 0 0 10px;
  color: #0f2a44;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
}

.booking-page-form {
  gap: 20px;
}

.booking-scroll-section {
  margin-bottom: 8px;
}

.booking-sidebar-support {
  margin-top: 14px;
  border: 1px solid #dbe8f6;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
  border-radius: 12px;
  padding: 14px 14px 12px;
  color: #334155;
}

.booking-sidebar-support-title {
  font-size: 16px;
  font-weight: 800;
  color: #1f3348;
  margin-bottom: 10px;
  line-height: 1.25;
}

.booking-sidebar-support-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #334155;
}

.booking-sidebar-support-total strong {
  color: #0b5fae;
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.booking-sidebar-support-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #2b3642;
  text-decoration: none;
  margin-bottom: 8px;
}

.booking-sidebar-support p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #3d4d5f;
}

@media (max-width: 991.98px) {
  .booking-main-title {
    font-size: 22px;
  }

  .booking-sidebar-support {
    grid-column: 1 / -1;
    margin-top: 6px;
  }

  .booking-sidebar-support-total strong {
    font-size: 30px;
  }

  .booking-sidebar-support-phone {
    font-size: 17px;
  }

  .booking-sidebar-support p {
    font-size: 15px;
  }
}



.booking-guest-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #4b647c;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #e5edf6;
  padding-bottom: 8px;
  margin-bottom: 4px;
}

.booking-guest-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-guest-line-total {
  min-width: 120px;
  text-align: right;
  font-weight: 700;
  color: #0f2a44;
}

@media (max-width: 767.98px) {
  .booking-guest-item {
    align-items: flex-start;
  }

  .booking-guest-right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .booking-guest-line-total {
    min-width: 0;
    text-align: left;
  }
}
