/* ==========================================================================
   01. CSS VARIABLES / DESIGN TOKENS
   ========================================================================== */

:root {
  /* Brand Core Colors */
  --primary: #ff5500;
  --primary-dark: #d94400;
  --primary-hover: #e64a00;
  --primary-light: #fff4ed;
  --primary-rgb: 255, 85, 0;
  --primary-glow: rgba(255, 85, 0, 0.4);
  --primary-subtle: rgba(255, 85, 0, 0.08);
  /* Neutral & Voyager Surface Tokens */
  --fox-gold: #ffb703;
  --fox-text-primary: #0f172a;
  --fox-text-secondary: #475569;
  /* Typography */
  --fox-font-heading: 'Outfit', sans-serif;
  --fox-ease: cubic-bezier(0.16, 1, 0.3, 1);
  /* Dark / Text Colors */
  --dark: #0f172a;
  --dark-surface: #1e293b;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --white: #ffffff;
  /* Background / Border */
  --light-bg: #f8fafc;
  --border-color: #e2e8f0;
  --border-dark: #cbd5e1;
  /* Radius */
  --fox-radius-lg: 24px;
  --fox-radius-md: 14px;
  --border-radius-sm: 8px;

}

/* ==========================================================================
   02. GLOBAL RESET / BASE
   ========================================================================== */

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--border-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}

/* ==========================================================================
   03. COMMON UTILITIES
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-padding {
  padding: 60px 0;
}

.trips-section-header-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.trips-editorial-intro {
  max-width: 780px;
  margin: 0 auto 30px auto;
}

.trips-eyebrow-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.trips-eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: var(--primary);
}

.trips-eyebrow-text {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.trips-editorial-title {
  color: #10243E;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.trips-editorial-subtitle {
  color: #718096;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fox-breadcrumb-nav {
  padding-bottom: 15px;
}

.fox-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 600;
}

.fox-breadcrumb-item {
  display: flex;
  align-items: center;
  color: #64748b;
}

.fox-breadcrumb-item+.fox-breadcrumb-item::before {
  content: "›";
  font-size: 1.1rem;
  color: #94a3b8;
  padding: 0 10px;
  line-height: 1;
}

.fox-breadcrumb-link {
  color: var(--primary, #ff5500);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.fox-breadcrumb-link:hover {
  color: var(--primary-dark, #d94400);
  text-decoration: underline;
}

.fox-breadcrumb-item.active {
  color: #fff;
  font-weight: 700;
}

/* ==========================================================================
   04. TYPOGRAPHY
   ========================================================================== */

/* ==========================================================================
   05. BUTTONS
   ========================================================================== */

/* ==========================================================================
   06. FORMS
   ========================================================================== */

/* ==========================================================================
   07. HEADER / NAVIGATION
   ========================================================================== */

.navbar-brand img {
  height: 52px;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 10px 24px;
  border: none;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.5);
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid var(--border-color);
  color: var(--dark);
  font-weight: 700;
  border-radius: 50px;
  padding: 8px 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.btn-outline-custom:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.fox-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.fox-sticky-header.is-scrolled {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fox-header-inner-container {
  max-width: 1300px;
  margin: 0px auto;
  padding: 12px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  position: relative !important;
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
}

.fox-sticky-header.is-scrolled .fox-header-inner-container {
  padding-top: 6px;
  padding-bottom: 6px;
  border-bottom-color: transparent;
}

.fox-header-logo-img {
  height: 60px;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fox-sticky-header.is-scrolled .fox-header-logo-img {
  height: 48px;
}

.fox-dropdown-header-title {
  font-size: 13px;
}

.fox-dropdown-header-subtitle {
  font-size: 11px;
}

.fox-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.fox-btn-login {
  background: rgb(243, 107, 53);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
}

.fox-btn-login:hover {
  background: #e05820;
  transform: translateY(-1px);
}

.fox-navbar-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
  position: static !important;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fox-nav-item {
  position: static !important;
  list-style: none;
}

.fox-nav-item.has-simple-dropdown {
  position: relative !important;
}

.fox-nav-link {
  color: rgba(255, 255, 255, 0.95);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}

.fox-nav-link:hover,
.fox-nav-link.active,
.fox-nav-item:hover>.fox-nav-link {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.fox-nav-link i.bi-chevron-down {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.fox-nav-item:hover>.fox-nav-link i.bi-chevron-down {
  transform: rotate(180deg);
}

.fox-pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.fox-pkg-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.fox-pkg-title {
  color: var(--dark-surface);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fox-pkg-icon {
  color: var(--border-dark);
  font-size: 12px;
  transition: all 0.2s ease;
}

.fox-simple-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 2000;
  margin-top: 8px;
}

.fox-nav-item.has-simple-dropdown:hover .fox-simple-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fox-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.fox-dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 20px;
}

/* ==========================================================================
   08. MEGA MENU / DROPDOWN
   ========================================================================== */

.fox-mega-dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(12px) !important;
  width: 1120px !important;
  max-width: calc(100vw - 40px) !important;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(226, 232, 240, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000 !important;
  overflow: hidden;
  margin-top: 6px;
}

.fox-nav-item:hover .fox-mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) !important;
}

.fox-mega-topbar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-surface) 100%);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--primary);
}

.fox-mega-title {
  color: var(--white);
  font-size: 14.5px;
  font-weight: 800;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fox-mega-subtitle {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
}

.fox-mega-container {
  display: flex;
  height: 440px;
}

.fox-mega-sidebar {
  width: 250px;
  background: var(--light-bg);
  border-right: 1px solid var(--border-color);
  padding: 10px;
  overflow-y: auto;
}

.fox-mega-sidebar::-webkit-scrollbar {
  width: 4px;
}

.fox-mega-sidebar::-webkit-scrollbar-thumb {
  background: var(--border-dark);
  border-radius: 4px;
}

.fox-dest-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  margin-bottom: 3px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.fox-dest-btn:hover,
.fox-dest-btn.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.fox-dest-btn.active {
  border-left: 3px solid var(--primary);
}

.fox-dest-count {
  font-size: 11px;
  background: var(--border-color);
  color: var(--text-muted);
  padding: 2px 7px;
  border-radius: 12px;
  font-weight: 700;
}

.fox-dest-btn.active .fox-dest-count {
  background: var(--primary-light);
  color: var(--primary);
}

.fox-mega-content {
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
  background: var(--white);
}

.fox-mega-content::-webkit-scrollbar {
  width: 4px;
}

.fox-mega-content::-webkit-scrollbar-thumb {
  background: var(--border-dark);
  border-radius: 4px;
}

.fox-pkg-tab {
  display: none;
  animation: fadeIn 0.25s ease-in-out;
}

.fox-pkg-tab.active {
  display: block;
}

.fox-pkg-tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

.fox-pkg-tab-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fox-pkg-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.fox-pkg-card:hover {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.12);
}

.fox-pkg-card:hover .fox-pkg-title {
  color: var(--primary);
}

.fox-pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 700;
  color: #0284c7;
  background: #e0f2fe;
  padding: 1px 7px;
  border-radius: 5px;
  width: fit-content;
}

.fox-pkg-card:hover .fox-pkg-icon {
  color: var(--primary);
  transform: translateX(3px);
}

/* ==========================================================================
   09. MOBILE NAVIGATION
   ========================================================================== */

.fox-mobile-toggle-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fox-mobile-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.fox-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.fox-mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

.fox-mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 3000;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.fox-mobile-drawer.show {
  transform: translateX(-340px);
}

.fox-mobile-drawer-header {
  padding: 16px 20px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--primary);
}

.fox-mobile-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.fox-mobile-close-btn:hover {
  background: var(--primary);
}

.fox-mobile-drawer-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}

.fox-mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--dark-surface);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 10px;
  margin-bottom: 6px;
}

.fox-mobile-nav-item:hover,
.fox-mobile-nav-item.active {
  background: var(--primary-light);
  color: var(--primary);
}

.fox-mobile-acc {
  margin-bottom: 6px;
}

.fox-mobile-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-surface);
  cursor: pointer;
  transition: background 0.2s ease;
}

.fox-mobile-acc-btn:hover {
  background: #f1f5f9;
}

.fox-acc-icon {
  transition: transform 0.25s ease;
  font-size: 12px;
}

.fox-mobile-acc-btn.open .fox-acc-icon {
  transform: rotate(180deg);
}

.fox-mobile-acc-content {
  display: none;
  padding: 8px 0 8px 8px;
}

.fox-mobile-acc-content.open {
  display: block;
}

.fox-sub-acc {
  margin-bottom: 4px;
}

.fox-sub-acc-btn {
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
}

.fox-sub-acc-content {
  display: none;
  padding-left: 10px;
}

.fox-sub-acc-content.open {
  display: block;
}

.fox-mobile-acc-content a,
.fox-sub-acc-content a {
  display: block;
  padding: 8px 12px;
  color: #334155;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-left: 2px solid #E2E8F0;
  margin-bottom: 4px;
  border-radius: 0 6px 6px 0;
  transition: all 0.2s ease;
}

.fox-mobile-acc-content a:hover,
.fox-sub-acc-content a:hover {
  color: #FF5A00;
  background: #FFF3EA;
  border-left-color: #FF5A00;
}

.fox-mobile-logo-img {
  height: 40px;
}

/* ==========================================================================
   10. HERO
   ========================================================================== */

.fox-hero-section {
  position: relative;
  overflow: visible;
  z-index: 100;
}

.fox-hero-bg-swiper {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.fox-hero-bg-swiper .swiper-slide img {
  transform: scale(1);
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.fox-hero-bg-swiper .swiper-slide-active img {
  transform: scale(1.12);
}

.fox-hero-bg-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fox-hero-overlay {
  position: absolute;
  inset: 0px;
  background: linear-gradient(rgba(18, 59, 93, 0.72) 0%, rgba(18, 59, 93, 0.6) 40%, rgba(18, 59, 93, 0.82) 100%);
  pointer-events: none;
  z-index: 2;
}

.tour-hero-overlay {
  position: absolute;
  inset: 0px;
  background: linear-gradient(rgb(0 0 0 / 60%) 0%, rgb(0 0 0 / 63%) 40%, rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none;
  z-index: 2;
}

.fox-hero-content-wrapper {
  position: relative;
  z-index: 100;
}

.fox-hero-main-container {
  margin: 0px auto;
  padding: 124px 0px 48px;
}

.fox-hero-iternary-container {
  padding: 124px 0px 10px;
}

.fox-hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  color: #ff5a1f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}

.fox-hero-title {
  font-size: 34px;
  font-weight: 800;
  color: rgb(255, 255, 255);
  line-height: 1.25;
  margin-bottom: 12px;
  max-width: 720px;
}

.fox-hero-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  max-width: 680px;
  font-weight: 500;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.hero-pagination-vertical .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 0.6;
  width: 100px;
  height: 10px;
  margin: 6px 0 !important;
}

.hero-pagination-vertical .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  height: 24px;
  border-radius: 6px;
}

.fox-trending-searches {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.fox-trending-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.fox-trending-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.fox-pill-item {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 5px 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.fox-pill-item:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.25);
}

.fox-hero-usps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.fox-usp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.fox-usp-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  flex: 0 0 auto;
  box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.4);
}

.fox-usp-content {
  color: var(--white);
}

.fox-usp-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}

.fox-usp-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

/* ==========================================================================
   11. SEARCH
   ========================================================================== */

.fox-search-widget {
  width: 100%;
  margin-top: 10px;
}

.fox-search-cards-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.fox-notch-group {
  display: flex;
  align-items: center;
  position: relative;
  flex: 2.2;
  min-width: 300px;
}

.fox-input-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: 14px;
  padding: 10px 25px;
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.fox-input-card:focus-within,
.fox-input-card.active {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.18) !important;
  z-index: 5;
}

.fox-input-card label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 2px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fox-input-flex {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fox-input-flex i {
  font-size: 15px;
}

.fox-input-flex input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  width: 100%;
  padding: 0;
}

.fox-input-flex input::placeholder {
  color: var(--text-light);
  font-weight: 600;
}

.fox-input-card.notch-right {
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  padding-right: 22px;
  -webkit-mask-image: radial-gradient(circle at 100% 50%, transparent 19px, black 19.5px);
  mask-image: radial-gradient(circle at 100% 50%, transparent 19px, black 19.5px);
}

.fox-swap-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.fox-search-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 14px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
  transition: all 0.25s ease;
  white-space: nowrap;
  align-self: center;
}

.fox-search-btn:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #b93700 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.6);
  color: var(--white);
}

.fox-tour-card-wrap,
.fox-date-card-wrap {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fox-tour-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  min-width: 320px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  border: 1px solid var(--border-color);
  z-index: 1000;
  display: none;
  overflow: hidden;
  animation: foxFadeInDown 0.2s ease-out forwards;
}

.fox-tour-dropdown-menu.show {
  display: block;
}

.fox-tour-dropdown-list {
  max-height: 280px;
  overflow-y: auto;
  padding: 6px 0;
}

.fox-tour-item {
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark-surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.15s ease, color 0.15s ease;
  border-bottom: 1px solid #f1f5f9;
}

.fox-tour-item:last-child {
  border-bottom: none;
}

.fox-tour-item:hover,
.fox-tour-item.selected {
  background: var(--light-bg);
  color: var(--primary);
}

.fox-calendar-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 580px;
  max-width: calc(100vw - 32px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--border-color);
  padding: 20px;
  z-index: 1000;
  display: none;
  animation: foxFadeInDown 0.2s ease-out forwards;
}

.fox-calendar-popover.show {
  display: block;
}

.fox-cal-header-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.fox-cal-tab-box {
  flex: 1;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fox-cal-tab-box.active {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.15);
}

.fox-cal-tab-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.fox-cal-tab-val {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
}

.fox-cal-months-row {
  display: flex;
  gap: 24px;
}

.fox-cal-month {
  flex: 1;
}

.fox-cal-month-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.fox-cal-month-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
}

.fox-cal-nav-btn {
  background: transparent;
  border: none;
  font-size: 16px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
}

.fox-cal-nav-btn:hover {
  background: #f1f5f9;
  color: var(--dark);
}

.fox-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.fox-cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.fox-cal-days-grid span {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark-surface);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.fox-cal-days-grid span.day-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.fox-cal-days-grid span.day-btn.selected {
  background: var(--primary) !important;
  color: var(--white) !important;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.35);
}

.fox-cal-days-grid span.day-btn.holiday {
  font-weight: 700;
}

.fox-cal-holidays-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.fox-hol-label {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--dark);
  display: block;
  margin-bottom: 8px;
}

.fox-hol-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fox-hol-badge {
  background: #f1f5f9;
  color: #334155;
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}

.fox-date-input {
  cursor: pointer;
}

/* ==========================================================================
   12. CARDS
   ========================================================================== */

/* ==========================================================================
   13.1 HOME PAGE COMPONENTS
   ========================================================================== */

.offers-section-v2 {
  position: relative;
  padding: 60px 0;
  background-color: #ffffff;
}

.fox-festive-sidebar {
  padding-right: 15px;
}

.flight-badge-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.orange-travel-pill {
  background: linear-gradient(135deg, #ff6b00 0%, #ff5200 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.25);
  border: 1px dashed rgba(255, 255, 255, 0.6);
}

.title-highlight-circle {
  position: absolute;
  top: -13px;
  left: -13px;
  width: 68%;
  pointer-events: none;
  opacity: 0.7;
}

.title-highlight-circle svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.title-highlight-circle svg path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawCirclePath 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.title-highlight-circle svg path:nth-child(2) {
  animation-delay: 0.50s;
}

.fox-deals-headline .title-dark {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.7rem;
  text-transform: capitalize;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.8px;
  position: relative;
}

.fox-deals-headline .title-dark span {
  position: sticky;
  z-index: 1;
}

.fox-deals-headline .title-orange {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 2.3rem;
  font-weight: 900;
  color: #ff5722;
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.fox-deals-desc {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.6;
  font-weight: 500;
  max-width: 320px;
  margin-bottom: 0px;
}

.offers-nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.offers-prev-btn,
.offers-next-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #1e293b;
  font-size: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.offers-prev-btn:hover,
.offers-next-btn:hover {
  background: linear-gradient(135deg, #ff6b00 0%, #ff5200 100%);
  border-color: transparent;
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(255, 82, 0, 0.35);
}

.offers-slide-counter {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  user-select: none;
}

.offers-slide-counter .current-slide-num {
  color: #ff5722;
  font-weight: 800;
}

.offers-slide-counter .total-slide-num {
  color: #64748b;
  font-weight: 600;
}

.offer-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  height: 100%;
  border: 1.5px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.offer-card-user-bar {
  background: #18181b;
  color: #ffffff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.offer-card-user-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #f3f4f6;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.offer-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.offer-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-card-img-wrap img {
  transform: scale(1.05);
}

.offer-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.offer-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-card-location {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.offer-card-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
}

.offer-card-price-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.5px;
}

.offer-card-price-sub {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 4px;
}

.offer-card-btn {
  background: linear-gradient(135deg, #ff6b00 0%, #ff5200 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.most-popular-tours-section {
  background-color: #f5faff;
}

.dest-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 380px;
  cursor: pointer;
}

.dest-card:hover {
  box-shadow: 0 20px 40px -15px rgba(var(--primary-rgb), 0.25);
}

.dest-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-card:hover .dest-card-img {
  transform: scale(1.1);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 30%, rgba(15, 23, 42, 0.95) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.dest-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.dest-card-whatsapp {
  width: 32px;
  height: 32px;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 5;
}

.dest-card-whatsapp:hover {
  transform: scale(1.15);
  background: #20ba5a;
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.dest-marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  position: relative;
}

.dest-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: destContinuousMarquee 50s linear infinite;
  will-change: transform;
}

.dest-marquee-container:hover .dest-marquee-track {
  animation-play-state: paused !important;
}

.dest-marquee-item {
  width: 290px;
  flex-shrink: 0;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.awards-trust-section {
  padding: 30px 0 100px 0px;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, #fff0e3 0%, #fff7f2 35%, rgba(255, 255, 255, 0) 70%);
  position: relative;
}

.awards-grid {
  background: radial-gradient(ellipse 65% 65% at 50% 50%, #fff0e3 0%, #fff7f2 35%, rgba(255, 255, 255, 0) 70%);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 5px;
  max-width: 1300px;
  margin: auto;
}

.awards-col-left {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.awards-col-right {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: end;
}

.trust-award-card {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.trust-award-card.v22 {
  margin: auto;
}

.trust-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFF0E7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-card-body {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin-bottom: 2px;
}

.trust-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px 0;
}

.awards-col-center {
  text-align: center;
}

.award-laurel-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.choose-fox-traveller-title {
  align-items: center;
  display: flex;
  font-size: 30px;
  font-weight: bold;
  justify-content: center;
  line-height: 2.25rem;
  margin-bottom: 60px;
}

.choose-fox-traveller-title span {
  color: var(--primary-hover);
  margin-left: 5px;
}

.laurel-branch-img {
  height: 160px;
}

.award-text-wrapper {
  padding: 0 12px;
  text-align: center;
}

.award-label-badge {
  color: #ff5722;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.award-star-line {
  color: #ff5722;
  font-size: 0.75rem;
  margin-top: -2px;
}

.award-main-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f172a !important;
  line-height: 1.3;
  margin: 0;
}

.monsoon-offer-section {
  position: relative;
  background: url('../images/Home/monsoon.png') no-repeat center center / cover;
  padding: 55px 0 180px 0;
  overflow: hidden;
  text-align: center;
}

.rain-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.monsoon-masked-title {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: url('https://images.unsplash.com/photo-1534447677768-be436bb09401?auto=format&fit=crop&w=1600&q=80') center center / cover no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-text-stroke: 0.1px rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
  line-height: 1;
  margin: 0 0 10px 0;
  display: inline-block;
}

.monsoon-subtitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.badge-airfare {
  background: #ffffff;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.monsoon-slider-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto 20px auto;
  padding: 0 25px;
}

.monsoon-prev-btn,
.monsoon-next-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 1.1rem;
}

.monsoon-prev-btn {
  left: 4px;
}

.monsoon-next-btn {
  right: 4px;
}

.monsoon-prev-btn:hover,
.monsoon-next-btn:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.monsoon-card {
  width: 100%;
  height: 330px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  background: #0f172a;
}

.monsoon-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.monsoon-card:hover .monsoon-card-img {
  transform: scale(1.06);
}

.monsoon-card-rating {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.monsoon-card-rating i {
  color: #ffc107;
  font-size: 0.75rem;
}

.monsoon-card-whatsapp {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}

.monsoon-card-whatsapp:hover {
  transform: scale(1.15);
  background: #20ba5a;
  color: #ffffff;
}

.monsoon-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.65) 50%, rgba(0, 0, 0, 0.15) 85%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  text-align: left;
  color: #ffffff;
}

.monsoon-card-location {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.monsoon-card-title {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 4px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.monsoon-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 2px;
}

.monsoon-card-price-box {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.monsoon-old-price {
  font-size: 10px;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.monsoon-new-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ff6b35;
}

.monsoon-dept-badge {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  width: fit-content;
  white-space: nowrap;
}

.btn-monsoon-view-all {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #0f172a;
  font-weight: 700;
  padding: 8px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 10px auto 0 auto;
  display: inline-block;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 3;
}

.btn-monsoon-view-all:hover {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
  color: #0f172a;
}

.monsoon-bottom-illustration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}

.monsoon-bottom-man-img {
  width: 100%;
  height: auto;
  display: block;
}

.deal-day-section {
  font-family: 'Manrope', 'Poppins', sans-serif;
  background: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.deal-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 18px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.deal-featured-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 12px 32px rgba(40, 30, 10, 0.12);
  cursor: pointer;
}

.deal-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.deal-featured-card:hover .deal-card-bg,
.deal-side-card:hover .deal-card-bg {
  transform: scale(1.06);
}

.deal-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.deal-discount-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f2691e;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: 10px;
  z-index: 2;
}

.deal-whatsapp-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #25d366;
  font-size: 1.3rem;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.deal-whatsapp-btn:hover {
  transform: scale(1.12);
  background: #25d366;
  color: #ffffff;
}

.deal-featured-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 24px 20px 20px;
  box-sizing: border-box;
  z-index: 2;
}

.deal-location {
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 6px;
  opacity: 0.95;
}

.deal-featured-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
  margin: 0;
}

.deal-perks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ffffff;
}

.deal-price-bar {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deal-price-sub {
  font-size: 0.75rem;
  color: #9a9488;
}

.deal-price-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 2px;
}

.deal-old-price {
  text-decoration: line-through;
  color: #b4ae9f;
  font-size: 1rem;
}

.deal-new-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: #e85d2a;
}

.deal-per-person {
  font-size: 0.8rem;
  color: #8a8579;
}

.deal-book-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f2691e;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease;
}

.deal-book-btn:hover {
  background: #d9530f;
  transform: translateY(-2px);
}

.deal-side-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.deal-side-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 238px;
  box-shadow: 0 12px 32px rgba(40, 30, 10, 0.12);
  cursor: pointer;
}

.deal-side-body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  box-sizing: border-box;
  z-index: 2;
}

.deal-side-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0;
}

.deal-duration {
  font-size: 0.85rem;
  color: #ffffff;
  margin-top: 4px;
  white-space: nowrap;
}

.deal-side-price-box {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.deal-side-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
}

.deal-arrow-circle {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f3b2e;
  font-size: 1rem;
}

.deal-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 20px;
}

.deal-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 220px;
  padding: 0 20px;
  border-right: 1px dashed #ddd5c4;
}

.deal-trust-item:last-child {
  border-right: none;
}

.deal-trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.35rem;
}

.deal-trust-icon.bg-green {
  background: #e5eedf;
  color: #5c7a52;
}

.deal-trust-icon.bg-orange {
  background: #fbe9cf;
  color: #c08a3e;
}

.deal-trust-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1f3b2e;
  margin: 0;
}

.deal-trust-desc {
  font-size: 0.8rem;
  color: #9a9488;
  margin: 2px 0 0 0;
}

.stories-slider-wrapper {
  position: relative;
  padding: 0;
}

.stories-nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stories-prev-btn,
.stories-next-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #1e293b;
  font-size: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stories-prev-btn:hover,
.stories-next-btn:hover {
  background: linear-gradient(135deg, #ff6b00 0%, #ff5200 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(255, 82, 0, 0.35);
}

.stories-slide-counter {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  user-select: none;
}

.stories-slide-counter .stories-current-num {
  color: #ff5722;
  font-weight: 800;
}

.stories-slide-counter .stories-total-num {
  color: #64748b;
  font-weight: 600;
}

.story-reel-card {
  position: relative;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.story-reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story-reel-card:hover img {
  transform: scale(1.05);
}

.play-pulse-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.story-reel-card:hover .play-pulse-btn {
  background: var(--primary);
  color: #FFFFFF;
  transform: translate(-50%, -50%) scale(1.1);
}

.story-reel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  color: #FFFFFF;
  z-index: 3;
}

.reel-modal-content {
  border-radius: 24px !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  background: #0f172a !important;
}

.reel-modal-header {
  background: #0f172a;
}

.reel-video-col {
  background: #000;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-video-wrapper video {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.reel-content-col {
  background: #0f172a;
  padding: 28px 24px !important;
}

.reel-quote-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  border-radius: 16px;
}

.reel-user-quote-text {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #e2e8f0;
  font-style: italic;
  font-weight: 500;
}

.reel-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
}

.reel-badge-rating {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.reel-badge-verified {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.reel-whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #059669 100%);
  border: none;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 11px;
  /* box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.7px;
}

.reel-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, #20ba5a 0%, #047857 100%);
  color: #ffffff !important;
}

.trips-editorial-blog-section {
  padding-bottom: 60px;
  position: relative;
}

.blog-nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-prev-btn,
.blog-next-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #1e293b;
  font-size: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-prev-btn:hover,
.blog-next-btn:hover {
  background: linear-gradient(135deg, #ff6b00 0%, #ff5200 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(255, 82, 0, 0.35);
}

.blog-slide-counter {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  user-select: none;
}

.blog-slide-counter .blog-current-num {
  color: #ff5722;
  font-weight: 800;
}

.blog-slide-counter .blog-total-num {
  color: #64748b;
  font-weight: 600;
}

.trips-blog-card {
  background: #FFFFFF;
  border-radius: 15px;
  border: 1px solid rgba(16, 36, 62, 0.07);
  box-shadow: 0px 0px 15px rgba(50, 36, 29, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  height: 100%;
  padding: 20px;
}

.trips-blog-img-wrapper {
  position: relative;
  height: 210px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.trips-blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trips-blog-card:hover .trips-blog-img {
  transform: scale(1.05);
}

.trips-blog-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.trips-blog-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 12px;
}

.trips-blog-title a {
  color: #10243E;
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trips-blog-card:hover .trips-blog-title a,
.trips-blog-title a:hover {
  color: var(--primary);
}

.trips-blog-desc {
  color: #718096;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trips-blog-footer {
  border-top: 1px solid rgba(255, 85, 0, 0.25);
  padding-top: 16px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trips-blog-date {
  color: #718096;
  font-size: 0.88rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

/* ==========================================================================
   13.2 DOMESTIC TOUR LISTING (MARKETPLACE)
   ========================================================================== */

.ftx-hp {
  /* Design tokens */
  --ftx-primary: #ff5a1f;
  --ftx-primary-dark: #e64a12;
  --ftx-primary-soft: #fff2ec;
  --ftx-ink: #102a43;
  --ftx-ink-soft: #23405c;
  --ftx-muted: #667085;
  --ftx-bg: #f8fafc;
  --ftx-card: #ffffff;
  --ftx-line: #e6eaf0;
  --ftx-line-strong: #d5dce6;
  --ftx-success: #16a34a;
  --ftx-success-soft: #eafaf0;
  --ftx-r-sm: 10px;
  --ftx-r-md: 14px;
  --ftx-r-lg: 20px;
  --ftx-r-xl: 26px;
  --ftx-sh-xs: 0 1px 2px rgba(16, 42, 67, 0.05);
  --ftx-sh-sm: 0 2px 8px rgba(16, 42, 67, 0.06);
  --ftx-sh-md: 0 10px 28px rgba(16, 42, 67, 0.09);
  --ftx-sh-lg: 0 22px 60px rgba(16, 42, 67, 0.14);
  --ftx-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  display: block;
  background: var(--ftx-bg);
  color: var(--ftx-ink);
  font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  padding-top: 26px;
  overflow-x: clip;
}

.ftx-shell {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 24px;
}

.ftx-h2 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ftx-ink);
  margin: 0 0 4px;
}

.ftx-sec-sub {
  font-size: 14px;
  color: var(--ftx-muted);
  margin: 0;
}

.ftx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ftx-ease), background 0.2s ease, box-shadow 0.25s ease, color 0.2s ease, border-color 0.2s ease;
}

.ftx-btn:active {
  transform: scale(0.98);
}

.ftx-btn-primary {
  background: var(--ftx-primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 90, 31, 0.22);
}

.ftx-btn-primary:hover {
  background: var(--ftx-primary-dark);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 90, 31, 0.3);
}

.ftx-btn-quiet {
  background: #fff;
  color: var(--ftx-ink);
  border-color: var(--ftx-line);
  box-shadow: var(--ftx-sh-xs);
}

.ftx-btn-quiet:hover {
  border-color: var(--ftx-ink);
  color: var(--ftx-ink);
}

.ftx-btn-outline {
  background: transparent;
  color: var(--ftx-ink);
  border-color: var(--ftx-line-strong);
}

.ftx-btn-outline:hover {
  background: #fff;
  border-color: var(--ftx-ink);
  box-shadow: var(--ftx-sh-sm);
}

.ftx-search {
  position: relative;
  z-index: 30;
  background: var(--ftx-card);
  border: 1px solid var(--ftx-line);
  border-radius: 999px;
  padding: 8px 8px 8px 10px;
  box-shadow: var(--ftx-sh-md);
  margin-top: 26px;
}

.ftx-field {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}

.ftx-field[data-field="dest"] {
  flex-grow: 1.25;
}

.ftx-quick {
  background: #fff;
  border: 1px solid var(--ftx-line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ftx-ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}

.ftx-quick:hover {
  border-color: var(--ftx-primary);
  color: var(--ftx-primary);
  background: var(--ftx-primary-soft);
}

.ftx-pop {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 60;
  width: 340px;
  max-width: min(92vw, 420px);
  background: #fff;
  border: 1px solid var(--ftx-line);
  border-radius: 22px;
  box-shadow: 0 26px 64px rgba(16, 42, 67, 0.16), 0 3px 8px rgba(16, 42, 67, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.985);
  transform-origin: top left;
  transition: opacity 0.18s ease, transform 0.22s var(--ftx-ease), visibility 0.18s;
  overflow: hidden;
}

.ftx-pop.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ftx-pop.ftx-pop-right {
  left: auto;
  right: 0;
  transform-origin: top right;
}

.ftx-pop-close,
.ftx-sheet-close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--ftx-line);
  border-radius: 50%;
  background: #fff;
  color: var(--ftx-ink);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ftx-pop-close:hover,
.ftx-sheet-close:hover {
  background: var(--ftx-ink);
  border-color: var(--ftx-ink);
  color: #fff;
}

.ftx-pop-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 18px 4px;
  padding: 11px 14px;
  background: #f4f7fb;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--ftx-muted);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ftx-pop-search:focus-within {
  background: #fff;
  border-color: var(--ftx-ink);
}

.ftx-pop-search input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ftx-ink);
}

.ftx-pop-body {
  padding: 14px 16px;
  max-height: 340px;
  overflow-y: auto;
}

.ftx-pop-body::-webkit-scrollbar {
  width: 6px;
}

.ftx-pop-body::-webkit-scrollbar-thumb {
  background: #dde4ec;
  border-radius: 999px;
}

.ftx-pop-body::-webkit-scrollbar-thumb:hover {
  background: #c8d3df;
}

.ftx-pop-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ftx-pop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease;
}

.ftx-pop-item:hover {
  background: #f4f7fb;
}

.ftx-pop-item>i {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  height: 34px;
  border-radius: 10px;
  background: #f1f5f9;
  color: var(--ftx-ink-soft);
  font-size: 15px;
}

.ftx-pop-item span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ftx-pop-item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ftx-ink);
}

.ftx-pop-item small {
  font-size: 12px;
  color: var(--ftx-muted);
}

.ftx-pop-item.is-active {
  background: var(--ftx-primary-soft);
}

.ftx-pop-item.is-active>i {
  background: var(--ftx-primary);
  color: #fff;
}

.ftx-pop-empty {
  padding: 18px 4px;
  text-align: center;
  font-size: 13px;
  color: var(--ftx-muted);
}

.ftx-check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ftx-check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  /* padding: 12px 14px;
  border: 1.5px solid var(--ftx-line);
  */
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--ftx-ease);
  margin: 0;
}

.ftx-check:hover {
  border-color: var(--ftx-line-strong);
  background: #fbfcfe;
  box-shadow: var(--ftx-sh-xs);
  transform: translateY(-1px);
}

.ftx-check:has(.ftx-check-input:checked) {
  border-color: var(--ftx-primary);
  background: var(--ftx-primary-soft);
  box-shadow: 0 3px 10px rgba(255, 90, 31, 0.13);
}

.ftx-check:has(.ftx-check-input:focus-visible) {
  border-color: var(--ftx-primary);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.18);
}

.ftx-check-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ftx-check-box {
  display: grid;
  place-items: center;
  flex: 0 0 21px;
  height: 21px;
  border: 1.5px solid var(--ftx-line-strong);
  border-radius: 7px;
  background: #fff;
  color: #fff;
  font-size: 12px;
  transition: all 0.18s ease;
}

.ftx-check:hover .ftx-check-box {
  border-color: #b9c4d1;
}

.ftx-check-box i {
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.18s var(--ftx-ease);
}

.ftx-check-input:checked+.ftx-check-box {
  background: var(--ftx-primary);
  border-color: var(--ftx-primary);
}

.ftx-check-input:checked+.ftx-check-box i {
  opacity: 1;
  transform: scale(1);
}

.ftx-check-input:focus-visible+.ftx-check-box {
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.25);
}

.ftx-check-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ftx-ink-soft);
}

.ftx-check-input:checked~.ftx-check-label {
  color: var(--ftx-ink);
  font-weight: 600;
}

.ftx-cal-leg {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border: 1.5px solid var(--ftx-line);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ftx-cal-leg small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ftx-muted);
}

.ftx-cal-leg strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ftx-ink);
}

.ftx-cal-leg.is-active {
  border-color: var(--ftx-ink);
  background: #f7f9fc;
}

.ftx-cal {
  padding: 14px 18px 4px;
}

.ftx-cal-dow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ftx-muted);
  padding: 6px 0;
}

.ftx-cal-day {
  position: relative;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--ftx-ink-soft);
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}

.ftx-cal-day:hover:not(:disabled) {
  background: #f1f5f9;
}

.ftx-cal-day:disabled {
  color: #c6cfda;
  cursor: not-allowed;
}

.ftx-cal-day.is-empty {
  pointer-events: none;
}

.ftx-cal-day.in-range {
  background: var(--ftx-primary-soft);
  border-radius: 0;
  color: var(--ftx-primary-dark);
}

.ftx-cal-day.is-start,
.ftx-cal-day.is-end {
  background: var(--ftx-primary);
  color: #fff;
}

.ftx-cal-day.is-start {
  border-radius: 10px 0 0 10px;
}

.ftx-cal-day.is-end {
  border-radius: 0 10px 10px 0;
}

.ftx-cal-day.is-start.is-end {
  border-radius: 10px;
}

.ftx-cal-day.is-today::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  transform: translateX(-50%);
}

.ftx-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--ftx-line);
}

.ftx-stepper:last-child {
  border-bottom: 0;
}

.ftx-step-btn {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--ftx-line-strong);
  border-radius: 50%;
  background: #fff;
  color: var(--ftx-ink);
  cursor: pointer;
  transition: all 0.18s ease;
}

.ftx-step-btn:hover:not(:disabled) {
  border-color: var(--ftx-primary);
  color: var(--ftx-primary);
}

.ftx-step-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.ftx-step-val {
  min-width: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ftx-ink);
}

.ftx-dest-tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #dfe6ee;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(16, 42, 67, 0.12);
  transition: transform 0.34s var(--ftx-ease), box-shadow 0.34s ease;
}

.ftx-dest-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16, 42, 67, 0.22);
}

.ftx-dest-tile.is-active {
  box-shadow: 0 0 0 3px var(--ftx-primary), 0 14px 30px rgba(255, 90, 31, 0.26);
}

.ftx-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--ftx-line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ftx-ink-soft);
  white-space: nowrap;
  cursor: pointer;
  box-shadow: var(--ftx-sh-xs);
  transition: all 0.2s var(--ftx-ease);
}

.ftx-chip:hover {
  border-color: var(--ftx-ink);
  color: var(--ftx-ink);
  transform: translateY(-1px);
  box-shadow: var(--ftx-sh-sm);
}

.ftx-chip[aria-expanded="true"] {
  border-color: var(--ftx-ink);
  color: var(--ftx-ink);
}

.ftx-chip.is-active {
  border-color: var(--ftx-primary);
  background: var(--ftx-primary-soft);
  color: var(--ftx-primary-dark);
}

.ftx-chip-count {
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--ftx-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.ftx-pop-sort {
  width: 260px;
  left: auto;
  right: 0;
  transform-origin: top right;
}

.ftx-sort-list .ftx-pop-item>i {
  flex-basis: 30px;
  height: 30px;
  font-size: 13px;
}

.ftx-range-vals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.ftx-range-pill {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid var(--ftx-line);
  border-radius: 10px;
  background: #f8fafc;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ftx-ink);
  text-align: center;
}

.ftx-range-dash {
  font-size: 12px;
  color: var(--ftx-muted);
}

.ftx-range-slider {
  position: relative;
  height: 34px;
  margin: 0 6px 4px;
}

.ftx-range-track,
.ftx-range-fill {
  position: absolute;
  top: 50%;
  height: 5px;
  border-radius: 999px;
  transform: translateY(-50%);
  pointer-events: none;
}

.ftx-range-track {
  left: 0;
  right: 0;
  background: #e6eaf0;
}

.ftx-range-fill {
  background: var(--ftx-primary);
}

.ftx-range-input {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 34px;
  margin: 0;
  transform: translateY(-50%);
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.ftx-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ftx-primary);
  box-shadow: 0 3px 8px rgba(16, 42, 67, 0.18);
  cursor: grab;
  transition: transform 0.15s ease;
}

.ftx-range-input::-webkit-slider-thumb:active {
  transform: scale(1.12);
  cursor: grabbing;
}

.ftx-range-input::-moz-range-thumb {
  pointer-events: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ftx-primary);
  box-shadow: 0 3px 8px rgba(16, 42, 67, 0.18);
  cursor: grab;
}

.ftx-range-input::-moz-range-track {
  background: none;
}

.ftx-results {
  padding: 26px 0 70px;
}

.ftx-active-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 22px;
}

.ftx-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px 7px 14px;
  background: #fff;
  border: 1px solid var(--ftx-line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ftx-ink-soft);
  animation: ftxTagIn 0.25s var(--ftx-ease) both;
}

.ftx-tag button {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--ftx-muted);
  font-size: 10px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.ftx-tag button:hover {
  background: var(--ftx-primary);
  color: #fff;
}

.ftx-feature {
  display: grid;
  grid-template-columns: 45% minmax(0, 1fr);
  background: #fff;
  border: 1px solid var(--ftx-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(16, 42, 67, 0.04), 0 12px 30px rgba(16, 42, 67, 0.06);
  margin-bottom: 34px;
  transition: box-shadow 0.3s ease;
}

.ftx-feature:hover {
  box-shadow: 0 2px 4px rgba(16, 42, 67, 0.05), 0 20px 44px rgba(16, 42, 67, 0.1);
}

.ftx-feature-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eef2f7;
}

.ftx-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ftx-ease);
}

.ftx-feature:hover .ftx-feature-media img {
  transform: scale(1.04);
}

.ftx-feature-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--ftx-ink);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(16, 42, 67, 0.16);
}

.ftx-feature-wish {
  top: 16px;
  right: 16px;
}

.ftx-feature-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  padding: 34px 40px;
  min-width: 0;
}

.ftx-feature-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ftx-primary);
}

.ftx-feature-title {
  font-size: clamp(24px, 2.3vw, 33px);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.12;
  margin: -2px 0 0;
}

.ftx-feature-title a {
  color: var(--ftx-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ftx-feature-title a:hover {
  color: var(--ftx-primary);
}

.ftx-feature-title em {
  font-style: normal;
  color: var(--ftx-primary);
}

.ftx-feature-route {
  margin: 0;
  font-size: 14px;
  color: var(--ftx-muted);
}

.ftx-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.ftx-feature-meta li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--ftx-blue-soft);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ftx-ink);
}

.ftx-feature-meta i {
  font-size: 12.5px;
  color: var(--ftx-muted);
}

.ftx-feature-meta .bi-star-fill {
  color: #f5a524;
}

.ftx-feature-meta span {
  font-weight: 500;
  color: var(--ftx-muted);
}

.ftx-feature-inc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 6px;
  padding: 15px 0;
  border-top: 1px solid var(--ftx-line);
  border-bottom: 1px solid var(--ftx-line);
}

.ftx-feature-inc span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ftx-ink-soft);
}

.ftx-feature-inc i {
  font-size: 14px;
  color: var(--ftx-primary);
}

.ftx-feature-buy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.ftx-feature-cap {
  display: block;
  margin-bottom: 3px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ftx-muted);
}

.ftx-feature-amt {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.ftx-feature-amt strong {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ftx-ink);
}

.ftx-feature-amt del {
  font-size: 14px;
  font-weight: 500;
  color: #9aa7b7;
}

.ftx-save {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: var(--ftx-success);
  background: var(--ftx-success-soft);
  border-radius: 999px;
  padding: 4px 10px;
}

.ftx-feature-cta {
  padding: 14px 26px;
  font-size: 14.5px;
}

.ftx-feature-cta i {
  font-size: 14px;
  transition: transform 0.25s var(--ftx-ease);
}

.ftx-feature-cta:hover i {
  transform: translateX(3px);
}

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

.ftx-card {
  display: flex;
  flex-direction: column;
  background: var(--ftx-card);
  border: 1px solid var(--ftx-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--ftx-sh-xs);
  transition: transform 0.32s var(--ftx-ease), box-shadow 0.32s ease, border-color 0.32s ease;
  animation: ftxCardIn 0.5s var(--ftx-ease) both;
  animation-delay: calc(var(--ftx-i, 0) * 45ms);
  position: relative;
}

.ftx-card:hover {
  transform: translateY(-4px);
  border-color: var(--ftx-line-strong);
  box-shadow: var(--ftx-sh-lg);
}

.ftx-card.is-hidden {
  display: none;
}

.ftx-card-media {
  position: relative;
  aspect-ratio: auto;
  overflow: hidden;
  background: #eef2f7;
  height: 232px;
}

.ftx-card-imglink {
  display: block;
  width: 100%;
  height: 100%;
}

.ftx-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ftx-ease);
}

.ftx-card:hover .ftx-card-media img {
  transform: scale(1.04);
}

.ftx-card-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(to top, rgba(8, 25, 42, 0.62), transparent);
  pointer-events: none;
}

.ftx-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ftx-ink);
  box-shadow: 0 3px 10px rgba(16, 42, 67, 0.14);
}

.ftx-badge-rating {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  font-size: 12.5px;
  font-weight: 800;
  color: var(--ftx-ink);
  box-shadow: 0 3px 10px rgba(16, 42, 67, 0.16);
}

.ftx-badge-rating i {
  color: #f5a524;
  font-size: 11px;
}

.ftx-badge-rating small {
  font-weight: 500;
  color: var(--ftx-muted);
  font-size: 11px;
}

.ftx-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: var(--ftx-ink);
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(16, 42, 67, 0.16);
  transition: transform 0.22s var(--ftx-ease), background 0.22s ease, color 0.22s ease;
}

.ftx-wish:hover {
  transform: scale(1.1);
  background: #fff;
  color: var(--ftx-primary);
}

.ftx-wish.is-saved {
  background: #fff;
  color: #e5484d;
}

.ftx-wish.is-pop {
  animation: ftxPop 0.42s var(--ftx-ease);
}

.ftx-card-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 20px 16px;
  flex: 1 1 auto;
}

.ftx-card-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ftx-primary);
  text-transform: uppercase;
}

.ftx-card-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: -2px 0 0;
}

.ftx-card-title a {
  color: var(--ftx-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ftx-card-title a:hover {
  color: var(--ftx-primary);
}

.ftx-card-route {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ftx-muted);
  margin: 0;
}

.ftx-card-route i {
  color: #9aa7b7;
  margin-right: 2px;
}

.ftx-card-route span {
  color: #c3cdd9;
  padding: 0 2px;
}

.ftx-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
}

.ftx-card-meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ftx-ink-soft);
}

.ftx-card-meta i {
  color: #9aa7b7;
  font-size: 13px;
}

.ftx-card-inc {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--ftx-line);
}

.ftx-inc-cap {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ftx-muted);
  flex: 0 0 auto;
}

.ftx-inc-icons {
  display: flex;
  gap: 6px;
}

.ftx-inc-ico {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--ftx-primary-soft);
  color: var(--ftx-primary);
  font-size: 13px;
  transition: transform 0.2s var(--ftx-ease);
  cursor: default;
}

.ftx-inc-ico:hover {
  transform: translateY(-2px);
}

.ftx-inc-ico.is-off {
  background: #f4f6f9;
  color: #c3cdd9;
  position: relative;
}

.ftx-inc-ico.is-off::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 1.5px;
  background: #c3cdd9;
  transform: rotate(-45deg);
}

.ftx-card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 20px 18px;
  border-top: 1px solid var(--ftx-line);
  background: #fcfdfe;
}

.ftx-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ftx-price-cap {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ftx-muted);
}

.ftx-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.ftx-price-row strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ftx-ink);
}

.ftx-price-row del {
  font-size: 13px;
  font-weight: 500;
  color: #a3b0be;
}

.ftx-off {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--ftx-success);
  background: var(--ftx-success-soft);
  padding: 3px 8px;
  border-radius: 999px;
}

.ftx-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ftx-icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ftx-line-strong);
  border-radius: 50%;
  background: #fff;
  color: var(--ftx-ink);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.22s var(--ftx-ease);
}

.ftx-icon-btn:hover {
  background: var(--ftx-ink);
  border-color: var(--ftx-ink);
  color: #fff;
  transform: translateY(-2px);
}

.ftx-icon-btn::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%, 4px);
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--ftx-ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}

.ftx-icon-btn:hover::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.ftx-btn-view {
  padding: 13px 22px;
  box-shadow: none;
  background: #fff;
  color: var(--ftx-ink);
  border-color: var(--ftx-line-strong);
}

.ftx-card:hover .ftx-btn-view {
  background: var(--ftx-primary);
  border-color: var(--ftx-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 90, 31, 0.26);
}

.ftx-btn-view:hover {
  background: var(--ftx-primary-dark) !important;
  border-color: var(--ftx-primary-dark) !important;
  color: #fff !important;
}

.ftx-sk-card {
  background: #fff;
  border: 1px solid var(--ftx-line);
  border-radius: var(--ftx-r-xl);
  overflow: hidden;
}

.ftx-sk {
  background: linear-gradient(90deg, #eef2f7 25%, #f7fafc 37%, #eef2f7 63%);
  background-size: 400% 100%;
  animation: ftxShimmer 1.4s ease infinite;
  border-radius: 8px;
}

.ftx-sk-media {
  aspect-ratio: 16 / 11;
  border-radius: 0;
}

.ftx-sk-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ftx-sk-line {
  height: 12px;
}

.ftx-sk-line.w30 {
  width: 30%;
}

.ftx-sk-line.w40 {
  width: 40%;
  height: 22px;
}

.ftx-sk-line.w60 {
  width: 60%;
}

.ftx-sk-line.w85 {
  width: 85%;
  height: 18px;
}

.ftx-sk-chips {
  height: 30px;
  width: 70%;
}

.ftx-sk-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--ftx-line);
}

.ftx-sk-btn {
  width: 120px;
  height: 42px;
  border-radius: 999px;
}

.ftx-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 70px 24px;
  background: #fff;
  border: 1px dashed var(--ftx-line-strong);
  border-radius: var(--ftx-r-xl);
  text-align: center;
}

.ftx-empty-ico {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ftx-primary-soft);
  color: var(--ftx-primary);
  font-size: 30px;
  margin-bottom: 6px;
}

.ftx-empty h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ftx-ink);
  margin: 0;
}

.ftx-empty p {
  font-size: 14px;
  color: var(--ftx-muted);
  margin: 0 0 10px;
}

.ftx-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}

.ftx-more-note {
  font-size: 13px;
  color: var(--ftx-muted);
  margin: 0;
}

.ftx-more-bar {
  width: 190px;
  height: 4px;
  border-radius: 999px;
  background: #e6eaf0;
  overflow: hidden;
}

.ftx-more-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--ftx-primary);
  transition: width 0.5s var(--ftx-ease);
}

.ftx-help {
  padding: 0 0 76px;
}

.ftx-help-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  padding: 34px 40px;
  border-radius: var(--ftx-r-xl);
  background-color: #0d2438;
  background-image:
    radial-gradient(600px 220px at 88% 15%, rgba(255, 90, 31, 0.2), transparent 70%),
    linear-gradient(120deg, #0d2438 0%, #143a55 100%);
}

.ftx-help-copy .ftx-h2 {
  color: #fff;
}

.ftx-help-copy .ftx-sec-sub {
  color: rgba(255, 255, 255, 0.68);
  max-width: 56ch;
}

.ftx-help-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

body.ftx-noscroll {
  overflow: hidden;
}

.ftx-map-modal {
  border: 0;
  border-radius: 22px;
  overflow: hidden;
}

.ftx-map-modal .modal-header {
  border: 0;
  padding: 18px 24px;
  background: #102a43;
}

.ftx-map-modal .modal-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.ftx-map-modal .modal-title i {
  color: #ff5a1f;
  margin-right: 6px;
}

.ftx-map-modal .btn-close {
  filter: invert(1) grayscale(1) brightness(2);
}

.ftx-hp [hidden],
.ftx-drawer[hidden],
.ftx-drawer-backdrop[hidden] {
  display: none !important;
}

.ftx-hp,
.ftx-drawer {
  --ftx-bg: #f7f9fc;
  --ftx-line: #e4e9ef;
  --ftx-line-strong: #d3dae3;
  --ftx-primary-soft: #fff3ed;
  --ftx-blue-soft: #eef6fa;
  --ftx-success: #16a34a;
  --ftx-success-soft: #e9faf0;
}

.ftx-hp .ftx-h1,
.ftx-hp .ftx-h2,
.ftx-hp .ftx-card-title,
.ftx-hp .ftx-feature-title,
.ftx-drawer-head h2 {
  font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, sans-serif;
}

.ftx-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.ftx-toolbar-count {
  margin: 0 0 3px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ftx-ink);
}

.ftx-toolbar-sub {
  margin: 0;
  font-size: 13.5px;
  color: var(--ftx-muted);
}

.ftx-toolbar-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ftx-sortbox {
  position: relative;
}

.ftx-tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 42px;
  padding: 0 16px;
  border: 1px solid var(--ftx-line);
  border-radius: 12px;
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ftx-ink);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ftx-tool-btn:hover,
.ftx-tool-btn[aria-expanded="true"] {
  border-color: var(--ftx-line-strong);
  box-shadow: 0 2px 8px rgba(16, 42, 67, 0.06);
}

.ftx-tool-btn>.bi-arrow-down-up {
  font-size: 13px;
  color: var(--ftx-muted);
}

.ftx-tool-caret {
  font-size: 11px;
  color: #9aa7b7;
  transition: transform 0.22s var(--ftx-ease);
}

.ftx-tool-btn[aria-expanded="true"] .ftx-tool-caret {
  transform: rotate(180deg);
}

.ftx-viewswitch {
  position: relative;
  display: flex;
  height: 42px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--ftx-line);
  border-radius: 12px;
}

.ftx-view-pill {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 9px;
  background: var(--ftx-primary-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 90, 31, 0.24);
  transition: transform 0.3s var(--ftx-ease);
}

.ftx-viewswitch.is-list .ftx-view-pill {
  transform: translateX(100%);
}

.ftx-view-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 92px;
  padding: 0 14px;
  border: 0;
  background: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--ftx-muted);
  cursor: pointer;
  transition: color 0.22s ease;
}

.ftx-view-btn i {
  font-size: 14px;
}

.ftx-view-btn:hover {
  color: var(--ftx-ink);
}

.ftx-view-btn.is-active {
  color: var(--ftx-primary);
}

.ftx-card>.ftx-wish {
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 34px;
  height: 34px;
  font-size: 14px;
}

.ftx-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ftx-card-dur {
  flex: 0 0 auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ftx-blue-soft);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ftx-ink-soft);
}

.ftx-inc-ico b {
  display: none;
}

.ftx-itin-link,
.ftx-price-pp,
.ftx-off-list {
  display: none;
}

.ftx-btn-view i {
  font-size: 13px;
  transition: transform 0.25s var(--ftx-ease);
}

.ftx-card:hover .ftx-btn-view i {
  transform: translateX(3px);
}

.ftx-grid.is-list {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.ftx-grid.is-list .ftx-card {
  position: relative;
  display: grid;
  grid-template-columns: 274px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "media body"
    "media foot";
  gap: 0 24px;
  padding: 16px;
  border-radius: 22px;
  border-color: #e8ecf1;
  overflow: visible;
}

.ftx-grid.is-list .ftx-card:hover {
  transform: none;
  border-color: #f2d6c6;
  box-shadow: 0 16px 38px rgba(16, 42, 67, 0.11);
}

.ftx-grid.is-list .ftx-card:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.ftx-grid.is-list .ftx-card-media {
  grid-area: media;
  position: relative;
  height: auto;
  min-height: 246px;
  border-radius: 16px;
  overflow: hidden;
}

.ftx-grid.is-list .ftx-card-imglink {
  position: absolute;
  inset: 0;
}

.ftx-grid.is-list .ftx-card-media::after {
  height: 45%;
}

.ftx-grid.is-list .ftx-badge-rating {
  left: 12px;
  bottom: 12px;
  padding: 6px 11px;
  font-size: 12px;
}

.ftx-grid.is-list .ftx-badge-tag {
  top: 12px;
  left: 12px;
}

.ftx-grid.is-list .ftx-card-body {
  grid-area: body;
  padding: 8px 6px 0 0;
  gap: 8px;
  justify-content: flex-start;
}

.ftx-grid.is-list .ftx-card-head {
  justify-content: flex-start;
  gap: 8px;
}

.ftx-grid.is-list .ftx-card-cat {
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--ftx-primary-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ftx-grid.is-list .ftx-card-dur {
  padding: 5px 10px;
  border-radius: 8px;
  background: #eff3f8;
  font-size: 11px;
  font-weight: 700;
}

.ftx-grid.is-list .ftx-card-title {
  font-size: 21px;
  margin: 2px 0 0;
}

.ftx-grid.is-list .ftx-card-route {
  font-size: 13.5px;
  -webkit-line-clamp: 1;
}

.ftx-grid.is-list .ftx-card-meta {
  gap: 6px 8px;
  margin-top: 2px;
}

.ftx-grid.is-list .ftx-card-meta li {
  padding: 5px 10px;
  border-radius: 8px;
  background: #f6f8fb;
  font-size: 12px;
}

.ftx-grid.is-list .ftx-card-meta i {
  font-size: 12.5px;
  color: var(--ftx-primary);
}

.ftx-grid.is-list .ftx-card-inc {
  margin-top: 8px;
  padding-top: 0;
  border-top: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.ftx-grid.is-list .ftx-inc-cap {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.ftx-grid.is-list .ftx-inc-icons {
  flex-wrap: wrap;
  gap: 7px;
}

.ftx-grid.is-list .ftx-inc-ico {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 29px;
  padding: 0 11px;
  gap: 7px;
  border: 1px solid var(--ftx-line);
  border-radius: 9px;
  background: #fff;
  color: var(--ftx-ink-soft);
  font-size: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ftx-grid.is-list .ftx-inc-ico:hover {
  transform: none;
  background: var(--ftx-primary-soft);
  border-color: rgba(255, 90, 31, 0.3);
}

.ftx-grid.is-list .ftx-inc-ico i {
  font-size: 12.5px;
  color: var(--ftx-primary);
}

.ftx-grid.is-list .ftx-inc-ico b {
  display: inline;
  font-size: 11.5px;
  font-weight: 600;
}

.ftx-grid.is-list .ftx-inc-ico.is-off {
  display: none;
}

.ftx-grid.is-list .ftx-card-foot {
  grid-area: foot;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 14px 6px 0 0;
  border-top: 1px dashed var(--ftx-line);
  background: transparent;
}

.ftx-grid.is-list .ftx-price {
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  text-align: left;
}

.ftx-grid.is-list .ftx-price-cap {
  gap: 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ftx-muted);
}

.ftx-grid.is-list .ftx-price-cap .ftx-off {
  display: none;
}

.ftx-grid.is-list .ftx-price-cap .ftx-off-list {
  display: inline-flex;
  align-items: center;
}

.ftx-grid.is-list .ftx-price-row {
  flex-wrap: wrap;
  gap: 8px 9px;
}

.ftx-grid.is-list .ftx-price-row strong {
  font-size: 25px;
}

.ftx-grid.is-list .ftx-price-pp {
  display: inline-block;
  font-size: 11.5px;
  color: var(--ftx-muted);
}

.ftx-grid.is-list .ftx-card-actions {
  flex: 0 0 auto;
  gap: 10px;
  justify-content: flex-end;
}

.ftx-grid.is-list .ftx-btn-view {
  flex: 0 0 auto;
  padding: 12px 22px;
  background: var(--ftx-primary);
  border-color: var(--ftx-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 90, 31, 0.22);
}

.ftx-grid.is-list .ftx-card>.ftx-wish {
  position: relative;
  top: auto;
  right: auto;
  grid-area: media;
  justify-self: end;
  align-self: start;
  margin: 10px;
  z-index: 3;
  width: 32px;
  height: 32px;
  font-size: 14px;
}

.ftx-grid.is-list .ftx-card>.ftx-wish:hover {
  color: var(--ftx-primary);
}

.ftx-skeleton.is-list {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.ftx-skeleton.is-list .ftx-sk-card {
  display: grid;
  grid-template-columns: 274px minmax(0, 1fr);
  gap: 24px;
  padding: 16px;
  border-radius: 22px;
}

.ftx-skeleton.is-list .ftx-sk-media {
  aspect-ratio: auto;
  height: 246px;
  border-radius: 16px;
}

.ftx-skeleton.is-list .ftx-sk-body {
  padding: 6px 0;
}

.ftx-layout {
  display: grid;
  grid-template-columns: 304px minmax(0, 1fr);
  align-items: start;
  gap: 26px;
}

.ftx-layout-main {
  min-width: 0;
}

.ftx-side {
  position: sticky;
  top: 78px;
}

.ftx-fcard {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 100px);
  border: 1px solid var(--ftx-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(16, 42, 67, 0.05);
  overflow: hidden;
}

.ftx-fcard-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 16px 15px;
  border-bottom: 1px solid var(--ftx-line);
  /* A whisper of brand warmth so the card reads as the page's control panel */
  background: linear-gradient(180deg, var(--ftx-primary-soft), #fff 82%);
  ;
}

.ftx-fcard-ico {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--ftx-primary);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 5px 13px rgba(255, 90, 31, 0.28);
}

.ftx-fcard-lead {
  flex: 1 1 auto;
  min-width: 0;
}

.ftx-fcard-title {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ftx-ink);
}

.ftx-fcard-sub {
  margin: 1px 0 0;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ftx-muted);
}

.ftx-fcard-sub span {
  color: var(--ftx-primary);
  font-weight: 800;
}

.ftx-fcard-clear {
  flex: 0 0 auto;
  align-self: flex-start;
  padding: 5px 9px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ftx-muted);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.ftx-fcard-clear:hover {
  background: #fff;
  color: var(--ftx-primary);
}

.ftx-fcard-body {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #d7dee7 transparent;
}

.ftx-fcard-body::-webkit-scrollbar {
  width: 6px;
}

.ftx-fcard-body::-webkit-scrollbar-thumb {
  background: #d7dee7;
  border-radius: 999px;
}

.ftx-fsec {
  border-bottom: 1px solid var(--ftx-line);
}

.ftx-fsec:last-child {
  border-bottom: 0;
}

.ftx-fsec-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  list-style: none;
  cursor: pointer;
  user-select: none;
  transition: background 0.18s ease;
}

.ftx-fsec-head::-webkit-details-marker {
  display: none;
}

.ftx-fsec-head:hover {
  background: #fafbfd;
}

.ftx-fsec-ico {
  flex: 0 0 auto;
  font-size: 14px;
  color: #9aa7b7;
  transition: color 0.2s ease;
}

.ftx-fsec[open] .ftx-fsec-ico,
.ftx-fsec.is-active .ftx-fsec-ico {
  color: var(--ftx-primary);
}

.ftx-fsec-title {
  flex: 1 1 auto;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ftx-ink);
}

.ftx-fsec-count {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--ftx-primary);
  font-size: 10.5px;
  font-weight: 800;
  color: #fff;
}

.ftx-fsec-caret {
  flex: 0 0 auto;
  font-size: 11px;
  color: #aab5c2;
  transition: transform 0.25s var(--ftx-ease);
}

.ftx-fsec[open] .ftx-fsec-caret {
  transform: rotate(180deg);
}

.ftx-fsec-body {
  padding: 2px 16px 16px;
  animation: ftxSecIn 0.22s var(--ftx-ease) both;
}

.ftx-fsec-note {
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--ftx-muted);
}

.ftx-fcard .ftx-check {
  padding: 7px 9px;
  border-radius: 10px;
}

.ftx-fcard .ftx-check:hover {
  transform: none;
  box-shadow: none;
}

.ftx-fcard .ftx-check-label {
  font-size: 13px;
}

.ftx-fcard .ftx-check-list {
  gap: 3px;
}

.ftx-check-scroll {
  max-height: 232px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #d7dee7 transparent;
}

.ftx-check-scroll::-webkit-scrollbar {
  width: 5px;
}

.ftx-check-scroll::-webkit-scrollbar-thumb {
  background: #d7dee7;
  border-radius: 999px;
}

.ftx-fcard .ftx-range-vals {
  margin-bottom: 10px;
  gap: 7px;
}

.ftx-fcard .ftx-range-pill {
  padding: 7px 8px;
  font-size: 12.5px;
}

.ftx-fcard-foot {
  flex: 0 0 auto;
  padding: 12px;
  border-top: 1px solid var(--ftx-line);
  background: #fbfcfe;
}

.ftx-fcard-help {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border: 1px dashed var(--ftx-line-strong);
  border-radius: 13px;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.ftx-fcard-help:hover {
  border-color: var(--ftx-primary);
  border-style: solid;
  box-shadow: 0 5px 14px rgba(255, 90, 31, 0.12);
}

.ftx-fcard-help-ico {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--ftx-primary-soft);
  color: var(--ftx-primary);
  font-size: 15px;
}

.ftx-fcard-help-txt {
  flex: 1 1 auto;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ftx-muted);
}

.ftx-fcard-help-txt strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ftx-ink);
}

.ftx-fcard-help-go {
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--ftx-primary);
  transition: transform 0.22s var(--ftx-ease);
}

.ftx-fcard-help:hover .ftx-fcard-help-go {
  transform: translateX(3px);
}

.ftx-filter-btn {
  display: none;
}

.ftx-filter-btn-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--ftx-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.ftx-side-backdrop {
  display: none;
}

.ftx-side-close {
  display: none;
}

.ftx-fcard-head-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ftx-mobile-filter-actions {
  display: none;
}

/* ==========================================================================
   13.3 DOMESTIC TOUR DETAIL
   ========================================================================== */

.tour-quick-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.quick-action-btn:hover {
  background: #fff7ed;
  border-color: #fdba74;
  color: var(--primary);
  transform: translateY(-1px);
}

.tour-hero-header-section {
  background: #ffffff;
  padding: 24px 0 20px 0;
  border-bottom: 1px solid #edf2f7;
}

.tour-badge-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.badge-signature {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid #fcd34d;
}

.badge-bestseller {
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
  color: #c2410c;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid #fdba74;
}

.badge-customizable {
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid #cbd5e1;
}

.tour-main-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.tour-sub-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: #64748b;
}

.tour-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8fafc;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.rating-stars {
  color: #f59e0b;
  font-size: 13px;
}

.rating-number {
  font-weight: 700;
  color: #0f172a;
}

.rating-count {
  color: #64748b;
  font-size: 12px;
}

.meta-dot {
  color: #cbd5e1;
}

.tour-location-pill,
.tour-code-pill {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

.tour-bento-gallery-wrapper {
  position: relative;
  margin-top: 20px;
  margin-bottom: 24px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 215px 215px;
  gap: 12px;
  border-radius: 16px;
  overflow: hidden;
}

.bento-item {
  position: relative;
  overflow: hidden;
  background: #1e293b;
  cursor: pointer;
}

.bento-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-item:hover .bento-img {
  transform: scale(1.06);
}

.bento-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.75) 100%);
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}

.bento-tag {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.bento-last {
  position: relative;
}

.btn-view-all-photos {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  z-index: 5;
}

.btn-view-all-photos:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.tour-quick-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.05);
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-box:not(:last-child) {
  border-right: 1px solid #f1f5f9;
  padding-right: 8px;
}

.stat-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.duration-icon {
  background: #fff7ed;
  color: #ea580c;
}

.route-icon {
  background: #eff6ff;
  color: #2563eb;
}

.type-icon {
  background: #fdf2f8;
  color: #db2777;
}

.meal-icon {
  background: #faf5ff;
  color: #9333ea;
}

.stat-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.3px;
}

.stat-value {
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tour-detail-page-wrapper {
  background: #f8fafc;
  padding: 24px 0 60px 0;
}

.tour-detail-grid-layout {
  display: grid;
  grid-template-columns: calc(70% - 14px) calc(30% - 14px);
  gap: 28px;
  align-items: start;
}

.tour-main-content-col {
  min-width: 0;
}

.sticky-pill-nav-container {
  position: sticky;
  top: 72px;
  z-index: 900;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.07);
}

.pill-tab-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.pill-tab-nav::-webkit-scrollbar {
  display: none;
}

.pill-tab-btn {
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.pill-tab-btn:hover {
  color: var(--primary);
  background: #fff7ed;
}

.pill-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(255, 91, 0, 0.35);
}

.luxury-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
  scroll-margin-top: 135px;
}

.luxury-card-header {
  padding: 18px 24px;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
}

.luxury-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
}

.luxury-card-body {
  padding: 24px;
}

.tour-route-ribbon-strip {
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  padding: 10px 14px;
  background: rgb(255 234 223 / 30%);
  border-radius: var(--border-radius-sm);
  border-left: 4px solid #ff5500;
}

.route-ribbon-text {
  font-size: 12px;
  font-weight: 800;
  color: #0b2035;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.luxury-overview-paragraph {
  margin-bottom: 20px;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.overview-key-perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.perk-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #9a3412;
}

.perk-icon {
  font-size: 16px;
  color: var(--primary);
}

.highlights-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.highlight-feature-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.25s ease;
}

.highlight-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.hl-img-wrap {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.hl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.highlight-feature-card:hover .hl-img-wrap img {
  transform: scale(1.05);
}

.hl-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}

.hl-content {
  padding: 14px 16px;
}

.hl-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.35;
}

.hl-desc {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.itinerary-timeline-wrapper {
  position: relative;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px;
}

.itinerary-timeline-wrapper.is-collapsed {
  max-height: 480px;
}

.itinerary-timeline-wrapper.is-expanded {
  max-height: 5000px;
}

.itinerary-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0.98) 85%, #ffffff 100%);
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 2;
}

.itinerary-timeline-wrapper.is-expanded .itinerary-fade-overlay {
  opacity: 0;
  visibility: hidden;
}

.luxury-itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 20px;
}

.luxury-itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, #cbd5e1 100%);
}

.itinerary-milestone-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0px;
  align-items: start;
}

.milestone-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 2;
  top: 23px;
  left: -19px;
}

.milestone-badge {
  background: #0f172a;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.milestone-glow-node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px var(--primary);
}

.milestone-content-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.milestone-header {
  margin-bottom: 14px;
}

.milestone-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.m-loc-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  background: #fff7ed;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #fed7aa;
}

.m-type-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 4px;
}

.milestone-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}

.milestone-body-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 14px;
}

.milestone-img-box {
  position: relative;
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.milestone-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.milestone-img-box:hover img {
  transform: scale(1.06);
}

.img-caption-pill {
  position: absolute;
  bottom: 6px;
  left: 6px;
  right: 6px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.milestone-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.schedule-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.schedule-time {
  font-size: 11.5px;
  font-weight: 700;
  color: #0f172a;
}

.schedule-text {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.milestone-inclusions-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: #f8fafc;
  border-top: 1px dashed #e2e8f0;
  padding: 10px 12px;
  border-radius: 8px;
  margin-top: 6px;
  font-size: 12px;
  color: #334155;
}

.m-inc-item strong {
  color: #0f172a;
}

.itinerary-toggle-container {
  padding: 0 24px 24px 24px;
  text-align: center;
}

.btn-toggle-itinerary {
  background: #ff5b00;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 11px 32px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 91, 0, 0.3);
  transition: all 0.2s ease;
}

.btn-toggle-itinerary:hover {
  background: #e04f00;
}

.luxury-hotel-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.luxury-hotel-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.2s ease;
}

.luxury-hotel-card:hover {
  box-shadow: 0 6px 20px -4px rgba(15, 23, 42, 0.07);
}

.l-hotel-img-wrapper {
  position: relative;
  height: 100%;
  min-height: 150px;
}

.l-hotel-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-hotel-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.l-hotel-info {
  padding: 16px 18px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.l-hotel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}

.l-hotel-name {
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 3px 0;
}

.l-hotel-stars {
  color: #f59e0b;
  font-size: 12px;
}

.star-label {
  color: #64748b;
  font-size: 12px;
  margin-left: 4px;
}

.l-hotel-verified {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  background: #fff7ed;
  padding: 3px 8px;
  border-radius: 50px;
  border: 1px solid #fed7aa;
}

.l-hotel-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 10px;
}

.l-hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.amenity-chip {
  background: #f1f5f9;
  color: #334155;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.inc-exc-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.modern-inc-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 20px;
}

.modern-exc-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 20px;
}

.inc-box-header,
.exc-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.inc-header-icon {
  font-size: 24px;
  color: #16a34a;
}

.exc-header-icon {
  font-size: 24px;
  color: #dc2626;
}

.inc-box-title {
  font-size: 16px;
  font-weight: 800;
  color: #166534;
  margin: 0;
}

.exc-box-title {
  font-size: 16px;
  font-weight: 800;
  color: #991b1b;
  margin: 0;
}

.inc-box-sub,
.exc-box-sub {
  font-size: 12px;
  color: #64748b;
}

.modern-checklist,
.modern-crosslist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modern-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #1f2937;
  line-height: 1.5;
}

.modern-checklist li i {
  color: #16a34a;
  margin-top: 3px;
  flex-shrink: 0;
}

.modern-crosslist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}

.modern-crosslist li i {
  color: #dc2626;
  margin-top: 3px;
  flex-shrink: 0;
}

.title-orange-bar {
  color: var(--primary);
  font-weight: 900;
  margin-right: 4px;
}

.info-inclusion-block {
  margin-bottom: 10px;
}

.info-block-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.info-inclusion-icons-row {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.info-inc-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 60px;
}

.info-inc-icon-svg {
  font-size: 26px;
  color: #ff5500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  transition: transform 0.2s ease;
}

.info-inc-icon-item:hover .info-inc-icon-svg {
  transform: translateY(-3px) scale(1.1);
}

.info-inc-icon-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #1e293b;
}

.info-guidelines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  border-top: 1px solid #f1f5f9;
  padding-top: 10px;
}

.info-guideline-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  transition: all 0.2s ease;
}

.info-guideline-card:hover {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 91, 0, 0.08);
}

.guideline-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff7ed;
  color: var(--primary);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guideline-text-box h6 {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 3px 0;
}

.guideline-text-box p {
  font-size: 11.5px;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.policies-tabs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.policy-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px;
  background: #f8fafc;
}

.policy-card-heading {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.policy-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-timeline-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.p-time-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  width: max-content;
}

.p-time-badge.safe {
  background: #dcfce7;
  color: #166534;
}

.p-time-badge.moderate {
  background: #fef9c3;
  color: #854d0e;
}

.p-time-badge.strict {
  background: #fee2e2;
  color: #991b1b;
}

.p-time-desc {
  font-size: 12.5px;
  color: #475569;
  margin: 0;
}

.policy-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #475569;
}

.luxury-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: #fed7aa;
  box-shadow: 0 4px 12px rgba(255, 91, 0, 0.05);
}

.faq-question-btn {
  width: 100%;
  padding: 14px 18px;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
}

.faq-question-btn:hover,
.faq-item.active .faq-question-btn {
  color: var(--primary);
  background: #fffaf8;
}

.faq-icon {
  font-size: 13px;
  color: #94a3b8;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 18px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 10px 18px 16px 18px;
}

.faq-answer p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.reviews-summary-scorecard {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.scorecard-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #e2e8f0;
  padding-right: 20px;
}

.score-circle {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.score-big {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.score-out {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 600;
}

.score-stars {
  color: #f59e0b;
  font-size: 18px;
  margin: 4px 0;
}

.score-total-text {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 8px;
}

.score-badge {
  background: #dcfce7;
  color: #166534;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.scorecard-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.score-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  width: 150px;
}

.bar-progress {
  flex: 1;
  height: 8px;
  background: #e2e8f0;
  border-radius: 50px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b 0%, var(--primary) 100%);
  border-radius: 50px;
}

.bar-val {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  width: 26px;
  text-align: right;
}

.customer-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.user-review-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 18px;
  background: #ffffff;
}

.user-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.user-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-meta {
  flex: 1;
}

.user-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.verified-badge {
  font-size: 11px;
  font-weight: 600;
  color: #16a34a;
}

.user-travel-date {
  font-size: 11.5px;
  color: #64748b;
}

.user-rating-stars {
  color: #f59e0b;
  font-size: 13px;
}

.user-review-comment {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.tour-sidebar-col {
  position: relative;
}

.sticky-booking-widget {
  position: sticky;
  top: 76px;
}

.booking-price-header {
  background: #0f172a;
  color: #ffffff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 20px;
}

.price-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.deal-pill {
  font-size: 11.5px;
  font-weight: 700;
  color: #fdba74;
}

.discount-pill {
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
}

.price-figure-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.currency-symbol {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.current-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.original-price {
  font-size: 1.1rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.per-person-unit {
  font-size: 13px;
  color: #cbd5e1;
}

.price-note-tax {
  display: block;
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 6px;
}

.urgency-counter-bar {
  background: #fff7ed;
  color: #9a3412;
  font-size: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid #fed7aa;
  display: flex;
  align-items: center;
}

.booking-engine-form {
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  padding: 18px;
}

.form-field-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  background: #f8fafc;
}

.field-card-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.luxury-date-input,
.luxury-select-input {
  width: 100%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  outline: none;
}

.luxury-date-input:focus,
.luxury-select-input:focus {
  border-color: var(--primary);
}

.traveler-selector-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.selector-info {
  display: flex;
  flex-direction: column;
}

.t-type {
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
}

.t-rate {
  font-size: 11px;
  color: #64748b;
}

.luxury-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stepper-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1.5px solid var(--primary);
  background: #ffffff;
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.stepper-btn:hover {
  background: var(--primary);
  color: #ffffff;
}

.stepper-count {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  min-width: 18px;
  text-align: center;
}

.estimated-total-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.total-left {
  display: flex;
  flex-direction: column;
}

.total-label-text {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.total-sub-note {
  font-size: 11px;
  color: #64748b;
}

.final-total-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.booking-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-luxury-book {
  background: linear-gradient(135deg, #ff5b00 0%, #e04f00 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 91, 0, 0.35);
  transition: all 0.2s ease;
}

.btn-luxury-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 91, 0, 0.45);
}

.btn-luxury-whatsapp {
  background: #25d366;
  color: #ffffff !important;
  border-radius: 10px;
  padding: 12px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-luxury-whatsapp:hover {
  background: #1eb857;
  transform: translateY(-1px);
}

.booking-guarantees-list {
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 0px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11.5px;
  color: #475569;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.travel-specialist-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  margin-top: 16px;
}

.specialist-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.specialist-avatar {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.specialist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #ffffff;
}

.specialist-details {
  display: flex;
  flex-direction: column;
}

.specialist-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.specialist-role {
  font-size: 11.5px;
  color: #64748b;
}

.specialist-quote {
  font-size: 12px;
  color: #475569;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 12px;
}

.specialist-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-spec-call,
.btn-spec-custom {
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-spec-call {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.btn-spec-custom {
  background: #fff7ed;
  color: var(--primary);
  border: 1px solid #fed7aa;
}

.suggested-luxury-tours {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
}

.sidebar-block-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.suggested-tours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.suggested-tour-card {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.suggested-tour-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.s-thumb {
  width: 65px;
  height: 65px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.s-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.s-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px 0;
  line-height: 1.3;
}

.s-dur {
  font-size: 11px;
  color: #64748b;
}

.s-price {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--primary);
}

.s-price span {
  font-size: 10px;
  font-weight: 500;
  color: #94a3b8;
}

.custom-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.custom-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.custom-modal-dialog {
  background: #ffffff;
  border-radius: 18px;
  width: 92%;
  max-width: 620px;
  padding: 30px;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.custom-modal-backdrop.active .custom-modal-dialog {
  transform: translateY(0) scale(1);
}

.custom-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f1f5f9;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  line-height: 1;
  transition: all 0.2s ease;
}

.custom-modal-close:hover {
  background: #ef4444;
  color: #ffffff;
}

.custom-modal-header {
  margin-bottom: 20px;
  padding-right: 30px;
}

.custom-modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 4px 0 6px 0;
}

.custom-modal-subtitle {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.custom-form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.custom-form-input,
.custom-form-select,
.custom-form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13.5px;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-form-input:focus,
.custom-form-select:focus,
.custom-form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 91, 0, 0.15);
}

.modal-badge {
  display: inline-block;
  background: #fff7ed;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.luxury-submit-btn {
  background: linear-gradient(135deg, #ff5b00 0%, #e04f00 100%);
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(255, 91, 0, 0.35);
  transition: all 0.2s ease;
}

.luxury-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 91, 0, 0.45);
}

.gallery-lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 73%);
  backdrop-filter: blur(10px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gallery-lightbox-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-container {
  width: 90%;
  max-width: 960px;
  position: relative;
}

.lightbox-close {
  position: absolute;
  top: -20px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
}

.lightbox-header h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.lightbox-main-view {
  position: relative;
  width: 100%;
  height: 520px;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.lightbox-main-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  transition: opacity 0.2s ease;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #0f172a;
  transition: all 0.2s ease;
  z-index: 10;
}

.lightbox-nav-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn.prev {
  left: 16px;
}

.lightbox-nav-btn.next {
  right: 16px;
}

.lightbox-thumbnails-rail {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.lightbox-thumb {
  width: 70px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.lightbox-thumb.active,
.lightbox-thumb:hover {
  opacity: 1;
  border-color: var(--primary);
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   13.4 ABOUT US
   ========================================================================== */

.fox-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--primary-subtle);
  border: 1px solid rgba(255, 85, 0, 0.18);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.fox-gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8a00 50%, #d94400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fox-h2 {
  font-family: var(--fox-font-heading);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fox-h3 {
  font-family: var(--fox-font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.25;
}

.fox-about-stats-section {
  position: relative;
  margin-top: -20px;
  z-index: 5;
}

.fox-stats-matrix-container {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px -15px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.fox-stats-matrix-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.fox-stats-matrix-container::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 71, 153, 0.25) 0%, transparent 65%);
  pointer-events: none;
}

.fox-stats-matrix-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 12px;
}

.fox-stats-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fox-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: foxPulse 2s infinite;
}

.fox-stats-matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.fox-stat-matrix-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--fox-ease);
}

.fox-stat-matrix-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 85, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.fox-stat-matrix-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.2) 0%, rgba(255, 85, 0, 0.05) 100%);
  border: 1px solid rgba(255, 85, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 85, 0, 0.2);
}

.fox-stat-matrix-card:nth-child(2) .fox-stat-matrix-icon {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(14, 165, 233, 0.05) 100%);
  border-color: rgba(14, 165, 233, 0.3);
  color: #38bdf8;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.2);
}

.fox-stat-matrix-card:nth-child(3) .fox-stat-matrix-icon {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, rgba(234, 179, 8, 0.05) 100%);
  border-color: rgba(234, 179, 8, 0.3);
  color: #facc15;
  box-shadow: 0 4px 16px rgba(234, 179, 8, 0.2);
}

.fox-stat-matrix-card:nth-child(4) .fox-stat-matrix-icon {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.05) 100%);
  border-color: rgba(168, 85, 247, 0.3);
  color: #c084fc;
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.2);
}

.fox-stat-matrix-num {
  font-family: var(--fox-font-heading);
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.fox-stat-matrix-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 2px;
}

.fox-stat-matrix-sub {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 500;
}

.fox-about-story-section {
  padding: 90px 0 70px;
  position: relative;
}

.fox-story-collage {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
}

.fox-collage-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25);
  border: 4px solid #ffffff;
}

.fox-collage-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.6s var(--fox-ease);
}

.fox-collage-main:hover img {
  transform: scale(1.04);
}

.fox-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.9);
  z-index: 3;
}

.fox-floating-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.fox-floating-badge span {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.fox-collage-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
  z-index: 2;
}

.fox-collage-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fox-story-lead {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: #0f172a;
}

.fox-quote-card {
  position: relative;
  padding: 24px 28px 24px 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 20px 20px 0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.fox-quote-icon {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 30px;
  color: var(--primary);
  opacity: 0.7;
}

.fox-quote-text {
  font-style: italic;
  font-size: 15px;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 12px;
  font-weight: 500;
}

.fox-quote-author strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.fox-quote-author span {
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
}

.fox-about-pillars-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.fox-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fox-pillar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px 26px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
  transition: all 0.3s var(--fox-ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.fox-pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
  border-color: rgba(255, 85, 0, 0.35);
}

.fox-pillar-icon-box {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-size: 24px;
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}

.fox-pillar-card:hover .fox-pillar-icon-box {
  transform: scale(1.1);
}

.bg-orange-soft {
  background: rgba(255, 85, 0, 0.1);
  color: var(--primary);
}

.bg-blue-soft {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}

.bg-green-soft {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.bg-purple-soft {
  background: rgba(168, 85, 247, 0.1);
  color: #9333ea;
}

.fox-pillar-title {
  font-family: var(--fox-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.25;
}

.fox-pillar-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #64748b;
  margin-bottom: 20px;
  flex-grow: 1;
}

.fox-pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.fox-about-mv-section {
  padding: 80px 0;
}

.fox-mv-card {
  padding: 42px 36px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--fox-ease);
}

.fox-mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.fox-mission-card {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}

.fox-mission-card .fox-mv-title {
  color: #ffffff;
}

.fox-mission-card .fox-mv-desc {
  color: #cbd5e1;
}

.fox-mission-card .fox-mv-tag {
  color: #ff8a00;
}

.fox-mission-card .fox-mv-footer-metric {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.fox-vision-card {
  border-top: 4px solid #0284c7;
}

.fox-mv-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 20px;
}

.fox-mission-card .fox-mv-icon {
  background: rgba(255, 85, 0, 0.2);
  color: #ff8a00;
  border: 1px solid rgba(255, 85, 0, 0.3);
}

.fox-vision-card .fox-mv-icon {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}

.fox-mv-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 6px;
}

.fox-mv-title {
  font-family: var(--fox-font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 14px;
}

.fox-mv-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  flex: 1 1 auto;
}

.fox-mv-footer-metric {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
}

.fox-about-team-section {
  padding: 80px 0;
  background: #fafbfd;
}

.fox-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fox-team-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
  transition: all 0.3s var(--fox-ease);
}

.fox-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  border-color: rgba(255, 85, 0, 0.3);
}

.fox-team-media {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.fox-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fox-team-card:hover .fox-team-img {
  transform: scale(1.08);
}

.fox-team-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 5px 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.fox-team-info {
  padding: 22px 20px 22px;
}

.fox-team-name {
  font-family: var(--fox-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
}

.fox-team-role {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.fox-team-desc {
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
  margin-bottom: 16px;
}

.fox-team-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
}

.fox-about-awards-section {
  padding: 0 0 80px;
}

.fox-awards-box {
  padding: 44px 48px;
  background: #0f172a;
  border-radius: 28px;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
  position: relative;
  overflow: hidden;
}

.fox-awards-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.fox-awards-box .fox-section-tag {
  background: rgba(255, 85, 0, 0.2);
  color: #ff8a00;
  border-color: rgba(255, 85, 0, 0.3);
}

.fox-awards-box .fox-h3 {
  color: #ffffff;
}

.fox-awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fox-award-item {
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  text-align: center;
  transition: all 0.3s ease;
}

.fox-award-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 85, 0, 0.4);
  transform: translateY(-4px);
}

.fox-award-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 10px;
}

.fox-award-item h6 {
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.fox-award-item span {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

.fox-about-luxury-cta {
  padding: 0 0 90px;
}

.fox-luxury-cta-card {
  position: relative;
  background: linear-gradient(135deg, #0b1324 0%, #152238 60%, #1a2d4b 100%);
  border-radius: 32px;
  padding: 60px 50px;
  color: #ffffff;
  box-shadow: 0 25px 70px -15px rgba(8, 14, 26, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.fox-luxury-cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.fox-luxury-cta-card::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 71, 153, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.fox-cta-perks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.fox-cta-perk-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #f1f5f9;
  backdrop-filter: blur(8px);
}

.fox-cta-perk-pill i {
  color: #4ade80;
  font-size: 14px;
}

.fox-cta-action-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  z-index: 3;
}

.btn-whatsapp-luxury {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 14px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  border: none;
  transition: all 0.25s var(--fox-ease);
}

.btn-whatsapp-luxury:hover {
  background: #1ebc59;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-itinerary-luxury {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, #e64a00 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 85, 0, 0.35);
  border: none;
  transition: all 0.25s var(--fox-ease);
  margin-top: 12px;
}

.btn-itinerary-luxury:hover {
  background: linear-gradient(135deg, #ff661a 0%, #ff5500 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 85, 0, 0.55);
}

.fox-cta-trust-note {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   13.5 CONTACT US
   ========================================================================== */

.fox-contact-main-section {
  padding: 60px 0;
}

.fox-contact-left-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fox-branch-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fox-branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.fox-branch-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.fox-branch-ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 20px;
  flex: 0 0 auto;
}

.fox-branch-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.badge-blue {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}

.fox-branch-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.fox-branch-address {
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 12px;
}

.fox-branch-timings {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 16px;
}

.fox-branch-foot {
  display: flex;
  gap: 10px;
}

.fox-helpline-card {
  padding: 24px;
  background: #0f172a;
  border-radius: 20px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.fox-pulse-ico {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-size: 20px;
}

.fox-pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: ftxPulse 1.8s infinite;
}

.fox-helpline-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
}

.fox-helpline-sub {
  font-size: 12px;
  color: #94a3b8;
}

.fox-consultation-card {
  padding: 36px 32px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 6px 30px rgba(15, 23, 42, 0.05);
}

.fox-form-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 4px;
}

.fox-input-shell {
  position: relative;
  display: flex;
  align-items: center;
}

.fox-input-ico {
  position: absolute;
  left: 14px;
  font-size: 16px;
  color: #94a3b8;
  pointer-events: none;
}

.fox-field {
  padding: 11px 14px 11px 40px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 13.5px;
  color: #0f172a;
  background: #ffffff;
  transition: all 0.2s ease;
}

select.fox-field {
  padding-left: 14px;
}

textarea.fox-field {
  padding-left: 14px;
}

.fox-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.15);
}

.fox-style-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.fox-style-chip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  background: #f8fafc;
  transition: all 0.2s ease;
  user-select: none;
}

.fox-style-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fox-style-chip:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-subtle);
  color: var(--primary);
}

.fox-contact-map-section {
  padding: 0px 0 80px;
}

.fox-map-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.fox-map-iframe-wrap iframe {
  width: 100%;
  height: 100%;
}

.fox-contact-faq-section {
  padding: 0 0 80px;
}

.fox-contact-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fox-faq-item {
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  overflow: hidden;
  background: #ffffff;
}

.fox-faq-item .accordion-button {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  padding: 18px 22px;
  background: #ffffff;
  box-shadow: none;
}

.fox-faq-item .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: #fafbfd;
}

.fox-faq-item .accordion-button::after {
  background-size: 14px;
}

.fox-faq-item .accordion-body {
  padding: 0 22px 18px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
  background: #fafbfd;
}

/* ==========================================================================
   13.6 VOYAGER AUTH HUB (LOGIN / SIGNUP)
   ========================================================================== */

.fox-voyager-bg-scene {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.fox-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(0.68) saturate(1.15);
  transform: scale(1);
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

/* ==========================================================================
   06. THE TRAVEL PASSPORT: LUXURY DIGITAL AUTHENTICATION HUB
   ========================================================================== */

/* Page Viewport & Base Body */
body.fox-passport-body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #0f223c;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #172033;
  overflow-x: hidden;
  position: relative;
}

/* Atmospheric Background Canvas */
.fox-passport-bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 18% 22%, rgba(241, 90, 36, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 82% 78%, rgba(226, 160, 63, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(15, 34, 60, 0.95) 0%, #081424 100%);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Latitude/Longitude Contour Grid */
.fox-geo-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* Animated SVG Flight Routes */
.fox-flight-routes-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.flight-path-glow {
  stroke: rgba(241, 90, 36, 0.25);
  stroke-width: 3px;
  filter: blur(2px);
}

.flight-path-dashed {
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 1.5px;
  stroke-dasharray: 6 8;
  animation: flightRouteFlow 25s linear infinite;
}

@keyframes flightRouteFlow {
  to {
    stroke-dashoffset: -200;
  }
}

.waypoint-node {
  fill: #e2a03f;
  filter: drop-shadow(0 0 6px rgba(241, 90, 36, 0.8));
  animation: pulseWaypoint 3s infinite ease-in-out;
}

.waypoint-node.node-active {
  fill: #f15a24;
  r: 5px;
}

@keyframes pulseWaypoint {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* Floating Geographic Coordinates */
.fox-coord-stamp {
  position: absolute;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1.2px;
  user-select: none;
}

.fox-coord-stamp.top-left {
  top: 24px;
  left: 32px;
}

.fox-coord-stamp.top-right {
  top: 24px;
  right: 32px;
}

.fox-coord-stamp.bottom-left {
  bottom: 24px;
  left: 32px;
}

.fox-coord-stamp.bottom-right {
  bottom: 24px;
  right: 32px;
}

/* Main Centered Passport Viewport */
.fox-passport-viewport {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  box-sizing: border-box;
}

/* The Passport Open Booklet */
.fox-passport-book {
  position: relative;
  width: 100%;
  max-width: 1080px;
  min-height: 640px;
  background: #ffffff;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  box-shadow:
    0 35px 80px -15px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(241, 90, 36, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  overflow: visible;
  transition: all 0.3s ease;
}

/* ==========================================================================
   LEFT PAGE: CURATED LUXURY EXPEDITIONS & MEMBER CLUB
   ========================================================================== */
.fox-passport-left {
  background: 
    radial-gradient(circle at 10% 15%, rgba(241, 90, 36, 0.14) 0%, transparent 40%),
    linear-gradient(160deg, #0f223c 0%, #091729 100%);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  padding: 38px 34px;
  color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px dashed rgba(241, 90, 36, 0.3);
  overflow: hidden;
}

/* Guilloche Pattern Watermark */
.fox-passport-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(226, 160, 63, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.fox-passport-cover-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

/* Showcase Top Header */
.fox-showcase-top {
  margin-bottom: 24px;
}

.fox-exclusive-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: #e2a03f;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fox-exclusive-tag i {
  color: #f15a24;
  font-size: 13px;
}

.fox-showcase-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: -0.3px;
}

.fox-showcase-title .text-orange {
  color: #f15a24;
}

.fox-showcase-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Member Perks Highlights */
.fox-passport-perks-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.fox-passport-perk-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  transition: all 0.2s ease;
}

.fox-passport-perk-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(241, 90, 36, 0.3);
  transform: translateX(4px);
}

.fox-pperk-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f15a24 0%, #ff7a45 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(241, 90, 36, 0.35);
}

.fox-pperk-body {
  display: flex;
  flex-direction: column;
}

.fox-pperk-body h6 {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 2px 0;
  letter-spacing: 0.1px;
}

.fox-pperk-body p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

/* Showcase Bottom Trust & Rating Bar */
.fox-showcase-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: auto;
  flex-wrap: wrap;
  gap: 12px;
}

.fox-avatar-cluster {
  display: flex;
  align-items: center;
}

.fox-avatar-cluster img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #0f223c;
  margin-left: -8px;
  object-fit: cover;
}

.fox-avatar-cluster img:first-child {
  margin-left: 0;
}

.fox-rating-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: #ffffff;
}

.fox-rating-text i {
  color: #fbbf24;
  font-size: 14px;
}

.fox-rating-text strong {
  font-weight: 800;
  color: #ffffff;
}

.fox-rating-text span {
  color: #94a3b8;
  font-size: 12px;
}

/* Center Perforated Spine Divider */
.fox-passport-spine-divider {
  display: none;
}

/* ==========================================================================
   RIGHT PAGE: PASSPORT VERIFICATION & AUTHENTICATION ENGINE
   ========================================================================== */
.fox-passport-right {
  background: #ffffff;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  padding: 34px 38px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.fox-passport-auth-wrapper {
  width: 100%;
}

/* Top Nav & Security */
.fox-auth-top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.fox-auth-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.fox-brand-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.fox-doc-security-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #059669;
  background: #ecfdf5;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #a7f3d0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Passport Switcher Track */
.fox-passport-switch-track {
  display: flex;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 22px;
  border: 1px solid #e2e8f0;
}

.fox-passport-switch-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.2px;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.fox-passport-switch-btn.active {
  background: #f15a24;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(241, 90, 36, 0.35);
}

.fox-passport-switch-btn:hover:not(.active) {
  color: #f15a24;
}

/* Editorial Heading Block */
.fox-auth-editorial-header {
  margin-bottom: 20px;
}

.fox-editorial-kicker {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #f15a24;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.fox-editorial-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0f223c;
  line-height: 1.2;
  margin: 0 0 6px 0;
  letter-spacing: -0.5px;
}

.fox-editorial-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Tab Content */
.fox-tab-content {
  display: none !important;
}

.fox-tab-content.active {
  display: block !important;
  animation: fadeInPassport 0.35s ease;
}

@keyframes fadeInPassport {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Passport Form Controls */
.fox-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fox-field-group {
  margin-bottom: 12px;
  position: relative;
}

.fox-field-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #475569;
  margin-bottom: 6px;
}

.fox-input-shell {
  position: relative;
  display: flex;
  align-items: center;
}

.fox-field-icon {
  position: absolute;
  left: 12px;
  font-size: 14px;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.2s ease;
}

.fox-text-input {
  width: 100%;
  height: 40px;
  padding: 6px 12px 6px 36px;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  background: #f8fafc;
  font-size: 13px;
  color: #0f223c;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  transition: all 0.2s ease;
  outline: none;
}

.fox-text-input:focus {
  background: #ffffff;
  border-color: #f15a24;
  box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.15);
}

.fox-input-shell:focus-within .fox-field-icon {
  color: #f15a24;
}

.fox-eye-btn {
  position: absolute;
  right: 10px;
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.fox-eye-btn:hover {
  color: #f15a24;
}

/* Password Strength Meter */
.fox-meter-box {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fox-meter-track {
  flex: 1;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
}

.fox-meter-fill {
  height: 100%;
  width: 0%;
  transition: width 0.3s ease, background 0.3s ease;
}

.fox-meter-caption {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  min-width: 46px;
  text-align: right;
}

/* Action Row (Remember / Forgot) */
.fox-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 16px;
  font-size: 12.5px;
}

.fox-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  color: #475569;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
}

.fox-check-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  border: 1.5px solid #94a3b8;
  border-radius: 5px;
  background: #ffffff;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  transition: all 0.2s ease;
  margin: 0;
  flex-shrink: 0;
}

.fox-check-label input[type="checkbox"]:checked {
  background: #f15a24;
  border-color: #f15a24;
}

.fox-check-label input[type="checkbox"]:checked::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
}

.fox-forgot-link {
  color: #475569;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s ease;
}

.fox-forgot-link:hover,
.fox-inline-link {
  color: #f15a24;
  text-decoration: underline;
}

/* Primary Passport Submit Button */
.fox-passport-submit-btn {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f15a24 0%, #ff7a45 100%);
  color: #ffffff;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px -4px rgba(241, 90, 36, 0.45);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.fox-passport-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(241, 90, 36, 0.6);
  background: linear-gradient(135deg, #e04b17 0%, #f15a24 100%);
}

.fox-passport-submit-btn i {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.fox-passport-submit-btn:hover i {
  transform: translateX(3px);
}

.fox-legal-note {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  color: #94a3b8;
  text-align: center;
  margin-top: 16px;
  line-height: 1.45;
}

.fox-legal-note a {
  color: #64748b;
  font-weight: 700;
  text-decoration: underline;
}

.fox-legal-note a:hover {
  color: #f15a24;
}

/* Toast Pop */
.fox-toast-popup {
  position: fixed;
  top: 24px;
  right: 24px;
  bottom: auto;
  left: auto;
  max-width: min(380px, calc(100vw - 32px));
  transform: translateX(calc(100% + 32px));
  background: #ffffff;
  border-left: 4px solid #f15a24;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
  color: #0f223c;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
}

.fox-toast-popup.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE ADAPTATIONS: TABLET & MOBILE
   ========================================================================== */

@media (max-width: 1024px) {
  .fox-passport-book {
    display: flex;
    flex-direction: column;
    max-width: 580px;
    border-radius: 20px;
  }

  /* Form on TOP */
  .fox-passport-right {
    order: 1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 28px 24px;
  }

  /* Showcase / Perks at BOTTOM */
  .fox-passport-left {
    order: 2;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-right: none;
    border-top: 1px dashed rgba(241, 90, 36, 0.35);
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .fox-passport-viewport {
    padding: 16px 12px;
  }

  .fox-passport-book {
    border-radius: 16px;
  }

  .fox-passport-right {
    padding: 22px 18px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .fox-passport-left {
    padding: 24px 18px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }

  .fox-showcase-title {
    font-size: 24px;
  }

  .fox-form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fox-coord-stamp {
    display: none;
  }
}

.fox-bg-slide.active {
  opacity: 1;
  animation: foxKenBurnsZoomIn 6s ease-in-out infinite alternate;
}

.fox-bg-slide:nth-child(2).active {
  animation: foxKenBurnsZoomOut 6s ease-in-out infinite alternate;
}

.fox-bg-slide:nth-child(3).active {
  animation: foxKenBurnsZoomIn 6s ease-in-out infinite alternate;
}

@keyframes foxKenBurnsZoomIn {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.12);
  }
}

@keyframes foxKenBurnsZoomOut {
  0% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

.fox-voyager-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 85, 0, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(0, 71, 153, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, rgba(8, 14, 26, 0.5) 0%, rgba(8, 14, 26, 0.85) 100%);
  z-index: 1;
}

body.fox-voyager-body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.fox-voyager-container {
  position: relative;
  z-index: 10;
  height: 100vh;
  max-height: 100vh;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.fox-voyager-portal {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  width: 100%;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  background: rgba(14, 23, 42, 0.65);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--fox-radius-lg);
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  box-sizing: border-box;
}

.fox-portal-showcase {
  position: relative;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(8, 14, 26, 0.2) 0%, rgba(8, 14, 26, 0.7) 100%);
  box-sizing: border-box;
}

.fox-dest-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  flex-wrap: wrap;
}

.fox-dest-chip {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s var(--fox-ease);
  user-select: none;
}

.fox-dest-chip.active,
.fox-dest-chip:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 14px var(--primary-glow);
  transform: translateY(-2px);
}

.fox-showcase-top {
  z-index: 5;
  display: flex;
  flex-direction: column;
}

.fox-exclusive-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fox-gold);
  margin-bottom: 12px;
}

.fox-exclusive-tag i {
  font-size: 14px;
  animation: pulseGold 2s infinite;
}

.fox-showcase-title {
  font-family: var(--fox-font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.fox-showcase-title span {
  background: linear-gradient(135deg, #ff8c42 0%, #ff5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fox-showcase-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 460px;
}

.fox-showcase-bottom-wrap {
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fox-perk-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.fox-perk-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: var(--fox-radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s var(--fox-ease), background 0.25s var(--fox-ease);
}

.fox-perk-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}

.fox-perk-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff5500, #ff7728);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.fox-perk-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.fox-perk-meta span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
}

.fox-showcase-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 5;
}

.fox-avatar-cluster {
  display: flex;
  align-items: center;
}

.fox-avatar-cluster img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
}

.fox-avatar-cluster img:first-child {
  margin-left: 0;
}

.fox-rating-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.fox-rating-text i {
  color: var(--fox-gold);
}

.fox-portal-auth-card {
  background: #ffffff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow-y: auto;
  max-height: 100%;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  box-sizing: border-box;
}

.fox-nav-switcher {
  display: flex;
  background: #f1f5f9;
  padding: 6px;
  border-radius: 14px;
  margin-bottom: 28px;
  position: relative;
  border: 1px solid #e2e8f0;
}

.fox-switch-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fox-text-secondary);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s var(--fox-ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fox-switch-btn.active {
  background: #ffffff;
  color: var(--fox-text-primary);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.fox-switch-btn:hover:not(.active) {
  color: var(--primary);
}

.fox-auth-heading-block {
  margin-bottom: 24px;
}

.fox-auth-title {
  font-family: var(--fox-font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--fox-text-primary);
  line-height: 1.2;
  margin-bottom: 6px;
}

.fox-auth-subtitle {
  font-size: 14.5px;
  color: var(--fox-text-secondary);
  font-weight: 500;
}

.fox-inline-switch-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.fox-inline-switch-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.fox-tab-content {
  display: none;
  animation: fadeInSlide 0.35s var(--fox-ease);
}

.fox-tab-content.active {
  display: block;
}

.fox-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fox-field-group {
  margin-bottom: 12px;
  position: relative;
}

.fox-field-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 13px;
  letter-spacing: 0.1px;
}

.fox-input-shell {
  position: relative;
  display: flex;
  align-items: center;
}

.fox-field-icon {
  position: absolute;
  left: 12px;
  font-size: 13px;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.2s ease;
}

.fox-text-input {
  width: 100%;
  height: 38px;
  padding: 6px 12px 6px 34px;
  border-radius: 13px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-size: 13px;
  color: var(--fox-text-primary);
  font-family: inherit;
  font-weight: 500;
  transition: all 0.2s var(--fox-ease);
  outline: none;
}

.fox-text-input:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.15);
}

.fox-input-shell:focus-within .fox-field-icon {
  color: var(--primary);
}

.fox-eye-btn {
  position: absolute;
  right: 10px;
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 14px;
  padding: 2px 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.fox-eye-btn:hover {
  color: var(--primary);
}

.fox-meter-box {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fox-meter-track {
  flex: 1;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.fox-meter-fill {
  height: 100%;
  width: 0%;
  transition: width 0.3s ease, background 0.3s ease;
}

.fox-meter-caption {
  font-size: 11.5px;
  font-weight: 700;
  min-width: 50px;
  text-align: right;
}

.fox-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0 14px;
  font-size: 12px;
}

.fox-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  color: #475569;
  font-weight: 500;
}

.fox-check-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 19px;
  height: 19px;
  border: 1.5px solid #94a3b8;
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  transition: all 0.2s ease;
  margin: 0;
  flex-shrink: 0;
}

.fox-check-label input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.fox-check-label input[type="checkbox"]:checked::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
}

.fox-forgot-link {
  color: #334155;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fox-forgot-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.fox-main-submit-btn {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff5500 0%, #ff6f1f 100%);
  color: #ffffff;
  border: none;
  font-size: 13.5px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 16px -3px var(--primary-glow);
  transition: all 0.25s var(--fox-ease);
  position: relative;
  overflow: hidden;
}

.fox-main-submit-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.fox-main-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(255, 85, 0, 0.55);
  background: linear-gradient(135deg, #e64a00 0%, #ff5500 100%);
}

.fox-main-submit-btn:hover::after {
  left: 100%;
}

.fox-main-submit-btn i {
  font-size: 17px;
  transition: transform 0.2s ease;
}

.fox-main-submit-btn:hover i {
  transform: translate(3px, -3px);
}

.fox-divider-line {
  display: flex;
  align-items: center;
  margin: 22px 0 18px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.fox-divider-line::before,
.fox-divider-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.fox-divider-line span {
  padding: 0 14px;
}

.fox-social-cluster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fox-social-action-btn {
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s var(--fox-ease);
}

.fox-social-action-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fox-social-action-btn.google i {
  color: #ea4335;
}

.fox-social-action-btn.apple i {
  color: #000000;
}

.fox-legal-note {
  font-size: 12.5px;
  color: #64748b;
  text-align: center;
  margin-top: 22px;
  line-height: 1.5;
}

.fox-legal-note a {
  color: #334155;
  font-weight: 700;
  text-decoration: underline;
}

.fox-legal-note a:hover {
  color: var(--primary);
}

.fox-toast-popup {
  position: fixed;
  top: 24px;
  right: 24px;
  bottom: auto;
  left: auto;
  max-width: min(380px, calc(100vw - 32px));
  transform: translateX(calc(100% + 32px));
  background: #ffffff;
  border-left: 4px solid var(--primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s var(--fox-ease);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;
}

.fox-toast-popup.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

/* Toast icon should never shrink when the message wraps */
.fox-toast-popup i {
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .fox-toast-popup {
    top: 14px;
    right: 12px;
    left: 12px;
    max-width: none;
    transform: translateY(-140%);
    padding: 12px 16px;
    font-size: 13px;
  }

  .fox-toast-popup.visible {
    transform: translateY(0);
  }
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */

footer {
  background: #090d16;
  color: var(--text-light);
  padding-top: 80px;
  font-size: 0.9rem;
}

footer h5 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 12px;
}

footer ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

footer ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 60px;
}

.fox-luxury-footer {
  background-color: #0F1216;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 85, 0, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(255, 136, 0, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(15, 23, 42, 0.5) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
  color: #cbd5e1;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 85, 0, 0.2);
}

.fox-luxury-footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ff5500' fill-opacity='0.015' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,250.7C960,235,1056,181,1152,165.3C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

.fox-main-footer-body {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}

.fox-footer-brand-col {
  padding-right: 20px;
}

.fox-footer-desc {
  font-size: 0.93rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 24px;
}

.fox-footer-phones {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--primary);
  padding: 16px;
  border-radius: 12px;
}

.fox-phone-heading {
  font-size: 0.95rem;
  font-weight: 700;
}

.fox-phone-item {
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fox-phone-label {
  color: #94a3b8;
}

.fox-phone-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fox-phone-link:hover {
  color: var(--primary);
}

.fox-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.fox-social-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 85, 0, 0.4);
}

.fox-footer-heading {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.fox-footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.fox-footer-links li {
  margin-bottom: 12px;
}

.fox-footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.93rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.fox-footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.fox-footer-links a i {
  color: var(--primary);
  transition: transform 0.25s ease;
}

.fox-footer-links a:hover i {
  transform: translateX(3px);
}

.fox-office-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 20px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.fox-office-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 85, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.fox-office-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 85, 0, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.fox-office-title {
  font-size: 0.98rem;
  font-weight: 700;
}

.fox-office-address {
  font-size: 0.86rem;
  line-height: 1.5;
}

.fox-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  position: relative;
  z-index: 2;
  background: rgba(13, 15, 17, 0.7);
}

.fox-copyright-text {
  color: #94a3b8;
  font-size: 0.88rem;
}

.fox-copyright-text a {
  color: white;
  text-decoration: none;
  font-size: 0.88rem;
}

.fox-footer-bottom-links a {
  color: #94a3b8;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fox-footer-bottom-links a:hover {
  color: var(--primary);
}

/* ==========================================================================
   15. FLOATING COMPONENTS
   ========================================================================== */

.floating-enquire-btn {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  color: #181818;
  font-weight: 700;
  font-size: 14px;
  height: 57px;
  padding: 0 22px;
  text-decoration: none;
  position: fixed;
  right: 20px;
  cursor: pointer;
  bottom: 20px;
  z-index: 996;
  background: transparent;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-enquire-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: conic-gradient(from 0deg,
      rgba(236, 130, 28, 0.2) 0deg,
      rgba(236, 130, 28, 0.2) 200deg,
      rgba(236, 130, 28, 0.5) 260deg,
      #EC821C 320deg,
      #ff9e3b 360deg);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: rotateBorder 3s linear infinite;
  z-index: 1;
}

.floating-enquire-btn::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #ffffff;
  border-radius: 100px;
  z-index: 2;
  transition: background 0.3s ease;
}

.floating-enquire-btn img {
  width: 34px;
  position: relative;
  z-index: 3;
}

.floating-enquire-btn span {
  line-height: 17px;
  margin-left: 10px;
  font-weight: bold;
  position: relative;
  z-index: 3;
}

.floating-enquire-btn:hover {
  box-shadow: 0 6px 20px rgba(236, 130, 28, 0.35);
}

.floating-enquire-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(242, 101, 34, 0.15);
}

.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  color: var(--dark) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.1rem !important;
  font-weight: 800;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
  color: #fff !important;
}

/* ==========================================================================
   16. ANIMATIONS / KEYFRAMES
   ========================================================================== */

@keyframes drawCirclePath {
  0% {
    stroke-dashoffset: 600;
  }

  45% {
    stroke-dashoffset: 0;
  }

  80% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0.8;
  }
}

@keyframes destContinuousMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

@keyframes rotateBorder {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes foxFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ftxTagIn {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.96);
  }
}

@keyframes ftxCardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes ftxPop {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.28);
  }

  70% {
    transform: scale(0.92);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes ftxShimmer {
  from {
    background-position: 100% 0;
  }

  to {
    background-position: -100% 0;
  }
}

@keyframes ftxSecIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes pulseGold {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

@keyframes foxPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

@keyframes ftxPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ==========================================================================
   17. RESPONSIVE CSS
   ========================================================================== */

@media (min-width: 992px) {

  .nav-item.dropdown:hover .dropdown-menu,
  .dropdown:hover .user-account-dropdown {
    display: block;
    margin-top: 0;
    animation: fadeIn 0.2s ease-in-out;
  }

  .ftx-results {
    padding-top: 34px;
  }

}

@media (min-width: 768px) {
  #reelModal .modal-dialog {
    max-width: 767px;
  }

  .trips-section-header-row {
    flex-direction: row;
    align-items: flex-end;
  }

}

@media (max-width: 1300px) {
  .fox-header-inner-container {
    padding-left: 20px;
    padding-right: 20px;
  }

}

@media (max-width: 1200px) {
  img {
    max-width: 100%;
    height: auto;
  }

  .fox-header-inner-container {
    padding-left: 20px;
    padding-right: 20px;
    gap: 12px;
  }

  .fox-nav-link {
    font-size: 12.5px;
    padding: 6px 10px;
  }

  .fox-search-cards-grid {
    gap: 10px;
  }

  .monsoon-slider-wrap {
    max-width: 100%;
    padding: 0 45px;
  }

  .tour-quick-stats-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-box:nth-child(3) {
    border-right: none;
  }

}

@media (max-width: 1199.98px) {
  .ftx-shell {
    padding-inline: 20px;
  }

  .ftx-search {
    border-radius: 26px;
    padding: 10px;
  }

  .ftx-field {
    flex: 1 1 calc(50% - 3px);
    min-width: 210px;
  }

  .ftx-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .ftx-pop {
    max-width: min(94vw, 400px);
  }

  .ftx-feature {
    grid-template-columns: 46% minmax(0, 1fr);
  }

  .ftx-feature-panel {
    padding: 26px 28px;
    gap: 9px;
  }

  .ftx-feature-inc {
    gap: 8px 16px;
    padding: 12px 0;
  }

  .ftx-grid.is-list .ftx-card {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 0 20px;
  }

  .ftx-grid.is-list .ftx-card-media {
    min-height: 236px;
  }

  .ftx-grid.is-list .ftx-card-title {
    font-size: 19.5px;
  }

  .ftx-layout {
    grid-template-columns: 274px minmax(0, 1fr);
    gap: 20px;
  }

  .fox-about-stats-grid,
  .fox-pillars-grid,
  .fox-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 1024px) {
  body.fox-voyager-body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .fox-voyager-container {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: none;
    padding: 20px 16px;
    overflow: visible;
  }

  .fox-voyager-portal {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    max-height: none;
    overflow: visible;
  }

  .fox-portal-auth-card {
    order: 1;
    padding: 26px 20px;
    border-radius: 18px;
    max-height: none;
    overflow: visible;
  }

  .fox-portal-showcase {
    order: 2;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 24px;
    max-height: none;
    overflow: visible;
  }

}

@media (max-width: 992px) {
  .tour-detail-grid-layout {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .sticky-booking-widget {
    position: static;
    margin-top: 20px;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 160px 160px;
  }

  .bento-main {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .sticky-pill-nav-container {
    top: 70px;
  }

}

@media (max-width: 991.98px) {
  .fox-mobile-toggle-btn {
    display: inline-flex !important;
  }

  .fox-navbar-desktop {
    display: none !important;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .fox-hero-main-container {
    padding: 30px 0px 48px;
  }

  .fox-hero-iternary-container {
    padding: 0px 0px 10px;
  }

  .fox-header-inner-container {
    padding: 10px 16px;
  }

  .fox-header-logo-img {
    height: 48px;
  }

  .fox-sticky-header.is-scrolled .fox-header-logo-img {
    height: 42px;
  }

  .fox-hero-content-wrapper {
    padding-top: 85px;
  }

  .fox-hero-usps-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .awards-col-left,
  .awards-col-right {
    align-items: center;
    gap: 24px;
  }

  .awards-col-center {
    order: -1;
  }

  .choose-fox-traveller-title {
    font-size: 24px;
    margin-bottom: 35px;
  }

  .deal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .deal-featured-card {
    height: 460px;
  }

  .deal-side-card {
    height: 230px;
  }

  .deal-trust-bar {
    justify-content: center;
    gap: 16px;
  }

  .deal-trust-item {
    border-right: none;
    border-bottom: 1px dashed #ddd5c4;
    padding-bottom: 14px;
    width: 100%;
    min-width: 100%;
  }

  .deal-trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .monsoon-masked-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
  }

  .monsoon-slider-wrap {
    padding: 0 35px;
  }

  .fox-footer-brand-col {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .trips-editorial-blog-section {
    padding: 60px 0;
  }

  .trips-editorial-title {
    font-size: 2.1rem;
  }

  .trips-blog-content {
    /* padding: 22px; */
  }

  .ftx-help-inner {
    padding-inline: 26px;
  }

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

  .ftx-feature-media {
    aspect-ratio: auto;
    height: 280px;
  }

  .ftx-feature-panel {
    padding: 24px 24px 28px;
  }

  .ftx-grid.is-list .ftx-card {
    grid-template-columns: 210px minmax(0, 1fr);
    grid-template-areas:
      "media body"
      "foot foot";
    gap: 0 18px;
  }

  .ftx-grid.is-list .ftx-card-media {
    min-height: 208px;
  }

  .ftx-grid.is-list .ftx-card-foot {
    flex-wrap: wrap;
    margin-top: 16px;
    padding: 14px 2px 2px 0;
  }

  .ftx-grid.is-list .ftx-card-title {
    font-size: 19px;
  }

  .ftx-grid.is-list .ftx-price-row strong {
    font-size: 23px;
  }

  .ftx-layout {
    display: block;
  }

  .ftx-filter-btn {
    display: inline-flex !important;
  }

  .ftx-side-backdrop {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 1000 !important;
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease !important;
  }

  .ftx-side-backdrop.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .ftx-side {
    display: block;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 100%;
    max-width: 520px;
    height: 75vh;
    height: 75dvh;
    max-height: 75vh;
    max-height: 75dvh;
    z-index: 1002;
    transform: translate(-50%, 105%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease !important;
    opacity: 0 !important;
    pointer-events: none !important;
    padding: 0 10px 0px 10px;
    box-sizing: border-box !important;
  }

  .ftx-side.is-open {
    transform: translate(-50%, 0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .ftx-side .ftx-fcard {
    height: 100% !important;
    max-height: 100% !important;
    border-radius: 20px 20px 0px 0px !important;
    box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.35) !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    background: #fff !important;
    overflow: hidden !important;
  }

  .ftx-side .ftx-fcard-head {
    flex-shrink: 0 !important;
    padding: 14px 16px !important;
    border-bottom: 1px solid var(--ftx-line, #f1f5f9) !important;
  }

  .ftx-side .ftx-fcard-head .ftx-fcard-clear {
    display: none !important;
  }

  .ftx-side .ftx-fcard-body {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    padding: 12px 16px 16px !important;
  }

  .ftx-side .ftx-fcard-foot {
    flex-shrink: 0 !important;
    padding: 12px;
    background: #ffffff !important;
    border-top: 1px solid var(--ftx-line, #e2e8f0) !important;
    box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.05) !important;
  }

  .ftx-side .ftx-fcard-foot .ftx-fcard-help {
    display: none !important;
  }

  .ftx-mobile-filter-actions {
    display: grid !important;
    grid-template-columns: 100px 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .ftx-mbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-sizing: border-box;
    padding: 0 14px;
  }

  .ftx-mbtn-clear {
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    color: #475569 !important;
  }

  .ftx-mbtn-clear:active {
    background: #e2e8f0 !important;
    color: #0f172a !important;
  }

  .ftx-mbtn-apply {
    border: none !important;
    color: #ffffff !important;
    background-color: var(--primary);
  }

  .ftx-mbtn-apply:active {
    transform: scale(0.98) !important;
    box-shadow: 0 2px 8px rgba(244, 81, 30, 0.25) !important;
  }

  .ftx-side-close {
    display: grid !important;
    place-items: center !important;
    width: 32px !important;
    height: 32px !important;
    border: 1px solid var(--ftx-line) !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: var(--ftx-muted) !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }

  .ftx-side-close:hover {
    background: #f1f5f9 !important;
    color: var(--ftx-ink) !important;
  }

  .fox-story-collage {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 30px;
  }

  .fox-collage-sub {
    display: none;
  }

  .fox-awards-grid {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 991px) {
  .fox-stats-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

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

  .fox-awards-grid {
    grid-template-columns: 1fr;
  }

  .fox-story-collage {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 40px;
  }

  .fox-collage-sub {
    width: 140px;
    height: 170px;
  }

  .fox-luxury-cta-card {
    padding: 40px 24px;
  }

}

@media (max-width: 768px) {
  .info-inclusion-icons-row {
    gap: 12px 16px;
    justify-content: flex-start;
  }

  .info-guidelines-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 14px;
  }

  .fox-hero-iternary-container {
    padding: 100px 0 10px;
  }

  .fox-hero-description {
    font-size: 13px !important;
    line-height: 1.4;
  }

  .tour-hero-header-section {
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .tour-badge-strip {
    gap: 6px;
    margin-bottom: 6px;
  }

  .tour-badge-strip span {
    font-size: 10px;
    padding: 3px 8px;
  }

  .tour-quick-actions {
    gap: 6px;
  }

  .quick-action-btn {
    font-size: 11px;
    padding: 4px 9px;
  }

  .tour-main-heading {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .tour-sub-meta {
    font-size: 11.5px;
    gap: 6px;
    flex-wrap: wrap;
  }

  .rating-stars {
    font-size: 11px;
  }

  .rating-number {
    font-size: 12px;
  }

  .rating-count {
    font-size: 11px;
  }

  .tour-location-pill,
  .tour-code-pill {
    font-size: 11px;
  }

  .tour-bento-gallery-wrapper {
    margin-top: 12px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 220px;
    border-radius: 12px;
  }

  .bento-sub {
    display: none;
  }

  .bento-main {
    grid-column: 1;
    grid-row: 1;
  }

  .btn-view-all-photos {
    display: inline-flex;
    font-size: 11px;
    padding: 6px 12px;
    bottom: 10px;
    right: 10px;
  }

  .img-caption-pill {
    font-size: 10.5px;
    padding: 3px 8px;
    bottom: 10px;
    left: 10px;
    height: fit-content;
  }

  .tour-quick-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 10px 12px;
    margin-top: -12px;
    margin-bottom: 16px;
  }

  .stat-box {
    border-right: none !important;
    padding: 6px 8px;
    gap: 8px;
  }

  .stat-icon-wrapper {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .stat-label {
    font-size: 10px;
  }

  .stat-value {
    font-size: 12px;
  }

  .sticky-pill-nav-container {
    top: 60px;
    margin-bottom: 14px;
  }

  .pill-tab-nav {
    padding: 5px 8px;
    gap: 0px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .pill-tab-nav::-webkit-scrollbar {
    display: none;
  }

  .pill-tab-btn {
    padding: 6px 12px;
    font-size: 11.5px;
    white-space: nowrap;
    border-radius: 20px;
  }

  .luxury-card {
    margin-bottom: 14px;
    border-radius: 12px;
  }

  .luxury-card-header {
    padding: 12px 14px;
  }

  .luxury-card-title {
    font-size: 13.5px;
  }

  .luxury-card-body {
    padding: 14px;
  }

  .tour-route-ribbon-strip {
    font-size: 11px;
    padding: 8px 12px;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .route-ribbon-text {
    font-size: 11.5px;
  }

  .luxury-overview-paragraph {
    font-size: 13px !important;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .overview-key-perks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .perk-pill {
    /* padding: 8px 12px;
    font-size: 12px;
    gap: 8px;
    */
    padding: 6px 6px;
    font-size: 10px;
    gap: 8px;
  }

  .perk-icon {
    font-size: 14px;
  }

  .luxury-itinerary-timeline {
    padding-left: 10px;
    gap: 16px;
  }

  .luxury-itinerary-timeline::before {
    left: 16px;
  }

  .itinerary-milestone-card {
    grid-template-columns: 34px 1fr;
    gap: 0;
  }

  .milestone-indicator {
    top: 14px;
    left: -8px;
    gap: 4px;
  }

  .milestone-badge {
    font-size: 9.5px;
    padding: 2px 6px;
    border-radius: 4px;
  }

  .milestone-glow-node {
    width: 8px;
    height: 8px;
  }

  .milestone-content-card {
    border-radius: 10px;
  }

  .milestone-tags {
    gap: 4px;
    margin-bottom: 4px;
  }

  .m-loc-tag,
  .m-type-tag {
    font-size: 10px;
    padding: 2px 6px;
  }

  .milestone-title {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .milestone-body-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .milestone-img-box {
    height: 150px;
  }

  .schedule-item {
    gap: 6px;
    margin-bottom: 8px;
  }

  .schedule-time {
    font-size: 10.5px;
    padding: 2px 6px;
    min-width: 65px;
  }

  .schedule-text {
    font-size: 11.5px;
    line-height: 1.45;
  }

  .milestone-inclusions-strip {
    padding: 8px 12px;
    font-size: 10.5px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .btn-toggle-itinerary {
    font-size: 12px;
    padding: 8px 16px;
  }

  .inc-exc-modern-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .modern-inc-box,
  .modern-exc-box {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .inc-box-header,
  .exc-box-header {
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }

  .inc-header-icon,
  .exc-header-icon {
    font-size: 18px;
  }

  .inc-box-title,
  .exc-box-title {
    font-size: 13.5px;
  }

  .inc-box-sub,
  .exc-box-sub {
    font-size: 10.5px;
  }

  .modern-checklist li,
  .modern-crosslist li {
    font-size: 11.5px;
    gap: 8px;
    line-height: 1.45;
  }

  .modern-checklist li i,
  .modern-crosslist li i {
    font-size: 11px;
    margin-top: 3px;
  }

  .info-block-subtitle {
    font-size: 12.5px;
    margin-bottom: 10px;
  }

  .info-inc-icon-item {
    min-width: 48px;
    gap: 4px;
  }

  .info-inc-icon-svg {
    font-size: 20px;
    height: 28px;
  }

  .info-inc-icon-label {
    font-size: 11px;
  }

  .info-guideline-card {
    padding: 10px 12px;
    gap: 10px;
  }

  .guideline-icon-box {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .guideline-text-box h6 {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .guideline-text-box p {
    font-size: 11px;
    line-height: 1.45;
  }

  .policies-tabs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .policy-card {
    padding: 12px 14px;
  }

  .policy-card-heading {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .p-time-badge {
    font-size: 10px;
    padding: 2px 6px;
  }

  .p-time-desc {
    font-size: 11.5px;
    line-height: 1.4;
  }

  .policy-bullet-list {
    gap: 8px;
  }

  .policy-bullet-list li {
    font-size: 11.5px;
    line-height: 1.45;
  }

  .faq-question-btn {
    padding: 11px 12px;
    font-size: 12.5px;
  }

  .faq-icon {
    font-size: 11px;
  }

  .faq-answer {
    padding: 0 12px;
    font-size: 11.5px;
    line-height: 1.5;
  }

  .faq-item.active .faq-answer {
    padding: 6px 12px 12px 12px;
  }

  .reviews-summary-scorecard {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 14px;
  }

  .scorecard-left {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding-right: 0;
    padding-bottom: 12px;
  }

  .score-big {
    font-size: 1.8rem;
  }

  .score-out {
    font-size: 12px;
  }

  .score-total-text {
    font-size: 11px;
  }

  .score-badge {
    font-size: 10.5px;
    padding: 3px 8px;
  }

  .bar-label,
  .bar-val {
    font-size: 11px;
  }

  .sticky-booking-widget {
    border-radius: 12px;
    margin-top: 0px;
  }

  .original-price {
    font-size: 12px;
  }

  .discount-pill {
    font-size: 10px;
    padding: 2px 6px;
  }

  .total-label-text {
    font-size: 11.5px;
  }

  .total-sub-note {
    font-size: 10px;
  }

  .final-total-price {
    font-size: 1.3rem;
  }

  .btn-luxury-book {
    padding: 11px;
    font-size: 13px;
  }

  .btn-luxury-whatsapp {
    padding: 10px;
    font-size: 12.5px;
  }

  .booking-guarantees-list {
    padding: 0 14px 12px 14px;
    font-size: 11px;
    gap: 6px;
  }

  .travel-specialist-card {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .specialist-avatar {
    width: 40px;
    height: 40px;
  }

  .specialist-name {
    font-size: 13px;
  }

  .specialist-role {
    font-size: 11px;
  }

  .specialist-quote {
    font-size: 11px;
    line-height: 1.4;
  }

  .btn-spec-call,
  .btn-spec-custom {
    font-size: 11.5px;
    padding: 7px 10px;
  }

  .lightbox-main-view {
    height: 300px;
    border-radius: 10px;
  }

  .lightbox-main-view img {
    border-radius: 10px;
  }

}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-padding {
    padding: 40px 0;
  }

  .floating-enquire-btn {
    bottom: 20px;
    right: 20px;
    padding: 0 18px;
    height: 48px;
    font-size: 13.5px;
  }

  .fox-notch-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .fox-input-card.notch-right,
  .fox-input-card.notch-left {
    -webkit-mask-image: none !important;
    mask-image: none !important;
    padding-right: 18px;
    padding-left: 18px;
    width: 100%;
    border-radius: 14px !important;
  }

  .fox-swap-btn {
    display: none !important;
  }

  .fox-input-card {
    width: 100%;
  }

  .fox-search-btn {
    width: 100%;
    margin-top: 8px;
    padding: 14px 20px;
  }

  .fox-tour-card-wrap,
  .fox-date-card-wrap {
    width: 100%;
    position: relative;
  }

  .fox-tour-dropdown-menu {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .fox-calendar-popover {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    padding: 12px !important;
    box-sizing: border-box !important;
    z-index: 1100 !important;
  }

  .fox-cal-header-tabs {
    display: flex !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
    width: 100% !important;
  }

  .fox-cal-tab-box {
    flex: 1 !important;
    min-width: 0 !important;
    padding: 6px 10px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .fox-cal-tab-label {
    font-size: 10.5px !important;
    font-weight: 700 !important;
    color: var(--text-muted);
    margin-bottom: 2px !important;
    display: block !important;
  }

  .fox-cal-tab-val {
    font-size: 12.5px !important;
    font-weight: 800 !important;
    color: var(--dark);
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
  }

  .fox-cal-months-row {
    display: block !important;
    width: 100% !important;
  }

  .fox-cal-month:nth-child(2) {
    display: none !important;
  }

  .fox-cal-weekdays span,
  .fox-cal-days-grid span {
    font-size: 12px !important;
    height: 32px !important;
  }

  .choose-fox-traveller-title {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 25px;
    flex-wrap: wrap;
  }

  .deal-featured-card {
    height: auto;
    min-height: 420px;
  }

  .deal-featured-title {
    font-size: 1.45rem;
  }

  .deal-price-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  .deal-book-btn {
    width: 100%;
    justify-content: center;
  }

  .deal-side-body {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 8px;
    padding: 14px 16px;
  }

  .deal-side-price-box {
    width: 100%;
    justify-content: space-between;
  }

  .deal-side-title {
    font-size: 1.25rem;
  }

  .monsoon-offer-section {
    padding: 40px 0 100px 0;
  }

  .monsoon-slider-wrap {
    padding: 0 35px;
  }

  .monsoon-prev-btn {
    left: -6px;
    width: 38px;
    height: 38px;
  }

  .monsoon-next-btn {
    right: -6px;
    width: 38px;
    height: 38px;
  }

  .monsoon-card {
    height: 310px;
  }

  .btn-monsoon-view-all {
    width: 80%;
    max-width: 280px;
    text-align: center;
  }

  .stories-swiper {
    padding-bottom: 10px;
  }

  footer {
    padding-top: 40px;
  }

  footer .row>div {
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center !important;
  }

  .fox-footer-phones {
    padding: 14px;
  }

  .fox-phone-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .fox-footer-heading {
    margin-top: 10px;
    margin-bottom: 16px;
  }

  .trips-editorial-blog-section {
    padding: 45px 0;
  }

  .trips-editorial-title {
    font-size: 1.75rem;
  }

  .trips-editorial-subtitle {
    font-size: 0.95rem;
  }

  .trips-blog-title {
    font-size: 1.15rem;
  }

  .itinerary-timeline-wrapper {
    padding: 14px;
  }

  .ftx-hp {
    padding-top: 16px;
  }

  .ftx-shell {
    padding-inline: 16px;
  }

  .ftx-search {
    position: fixed;
    inset: 0;
    z-index: 1100;
    margin: 0;
    border: 0;
    border-radius: 0;
    padding: 0 16px 24px;
    box-shadow: none;
    overflow-y: auto;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.36s var(--ftx-ease), opacity 0.25s ease, visibility 0.36s;
  }

  body.ftx-search-open .ftx-search {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .ftx-field {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
  }

  .ftx-pop {
    position: fixed;
    top: auto;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1200;
    width: auto;
    max-width: none;
    max-height: 76vh;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    transform: translateY(16px) scale(1);
    transform-origin: bottom center;
  }

  .ftx-pop.is-open {
    transform: translateY(0);
  }

  .ftx-pop-body {
    max-height: none;
    flex: 1;
  }

  .ftx-pop-cal,
  .ftx-pop-wide,
  .ftx-pop-chip,
  .ftx-pop-chip.ftx-pop-grid2,
  .ftx-pop-budget,
  .ftx-pop-sort {
    width: auto;
  }

  .ftx-pop::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 40px;
    height: 4px;
    border-radius: 999px;
    background: #e6eaf0;
    transform: translateX(-50%);
  }

  .ftx-pop-chip .ftx-pop-body,
  .ftx-pop-sort .ftx-pop-body {
    padding-top: 26px;
  }

  .ftx-dest-tile {
    border-radius: 16px;
  }

  .ftx-chip {
    padding: 9px 14px;
    font-size: 13px;
  }

  .ftx-results {
    padding: 18px 0 56px;
  }

  .ftx-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .ftx-card-media {
    aspect-ratio: 16 / 10;
    height: 210px;
  }

  .ftx-card-title {
    font-size: 17.5px;
  }

  .ftx-card-foot {
    padding: 15px 18px 18px;
  }

  .ftx-price-cap {
    gap: 6px;
    font-size: 10.5px;
    white-space: nowrap;
  }

  .ftx-off {
    font-size: 10px;
    letter-spacing: 0.03em;
    padding: 3px 7px;
  }

  .ftx-btn-view {
    padding: 13px 20px;
  }

  .ftx-help {
    padding-bottom: 56px;
  }

  .ftx-help-inner {
    padding: 28px 22px;
    text-align: left;
  }

  .ftx-help-actions {
    width: 100%;
  }

  .ftx-help-actions .ftx-btn {
    flex: 1;
    justify-content: center;
  }

  .ftx-toolbar {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
  }

  .ftx-toolbar-tools {
    width: 100%;
    justify-content: space-between;
    gap: 2px;
  }

  .ftx-toolbar-count {
    font-size: 18px;
  }

  .ftx-tool-btn {
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
    gap: 7px;
  }

  .ftx-viewswitch {
    height: 40px;
    flex: 0 0 auto;
  }

  .ftx-view-btn {
    min-width: 62px;
    padding: 0 10px;
    gap: 6px;
    font-size: 12.5px;
  }

  .ftx-feature-meta li {
    padding: 6px 11px;
    font-size: 12px;
  }

  .ftx-feature-inc {
    padding: 12px 0;
    gap: 8px 14px;
  }

  .ftx-feature-inc span {
    font-size: 12px;
  }

  .ftx-feature-amt strong {
    font-size: 26px;
  }

  .ftx-feature {
    border-radius: 18px;
    margin-bottom: 26px;
  }

  .ftx-feature-media {
    aspect-ratio: auto;
    height: 210px;
  }

  .ftx-feature-panel {
    padding: 20px 18px 24px;
  }

  .ftx-feature-title {
    font-size: 22px;
  }

  .ftx-feature-route {
    font-size: 13px;
  }

  .ftx-feature-buy {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .ftx-feature-cta {
    justify-content: center;
  }

  .ftx-grid.is-list .ftx-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "media"
      "body"
      "foot";
    gap: 14px 0;
    padding: 14px;
    border-radius: 20px;
  }

  .ftx-grid.is-list .ftx-card-media {
    height: 196px;
    min-height: 0;
  }

  .ftx-grid.is-list .ftx-card-body {
    padding: 0;
  }

  .ftx-grid.is-list .ftx-card-title {
    font-size: 18px;
  }

  .ftx-grid.is-list .ftx-card-foot {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 0;
    padding: 14px 0 2px;
  }

  .ftx-grid.is-list .ftx-price-row strong {
    font-size: 22px;
  }

  .ftx-grid.is-list .ftx-card-actions {
    width: 100%;
  }

  .ftx-grid.is-list .ftx-btn-view {
    flex: 1;
    justify-content: center;
  }

  .ftx-grid.is-list .ftx-card>.ftx-wish {
    margin: 9px;
  }

  .ftx-skeleton.is-list .ftx-sk-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .ftx-skeleton.is-list .ftx-sk-media {
    height: 196px;
  }

  .fox-pillars-grid,
  .fox-team-grid {
    grid-template-columns: 1fr;
  }

  .fox-consultation-card {
    padding: 24px 18px;
  }

}

@media (max-width: 640px) {
  .fox-voyager-container {
    padding: 20px 12px;
  }

  .fox-portal-auth-card {
    order: 1;
    padding: 26px 18px;
  }

  .fox-portal-showcase {
    order: 2;
    padding: 28px 18px;
  }

  .fox-form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fox-social-cluster {
    grid-template-columns: 1fr;
  }

  .fox-auth-title {
    font-size: 26px;
  }

  .fox-showcase-title {
    font-size: 24px;
  }

}

@media (max-width: 600px) {
  .fox-stats-matrix-grid {
    grid-template-columns: 1fr;
  }

  .fox-pillars-grid {
    grid-template-columns: 1fr;
  }

  .fox-team-grid {
    grid-template-columns: 1fr;
  }

  .fox-stats-matrix-container {
    padding: 24px 18px;
  }

  .fox-awards-box {
    padding: 28px 20px;
  }

}

@media (max-width: 576px) {
  .tour-main-heading {
    font-size: 1.18rem;
    line-height: 1.3;
  }

  .tour-quick-stats-strip {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 8px 10px;
  }

  .stat-box {
    padding: 4px 6px;
    gap: 6px;
  }

  .stat-icon-wrapper {
    width: 28px;
    height: 28px;
    font-size: 11.5px;
  }

  .stat-label {
    font-size: 9.5px;
  }

  .stat-value {
    font-size: 11px;
  }

}

@media (max-width: 575.98px) {
  .fox-hero-main-container {
    padding: 0px 0px 48px;
  }

  .fox-hero-title {
    font-size: 21px;
  }

  .fox-hero-description {
    margin-bottom: 17px;
  }

  .fox-header-inner-container {
    padding: 8px 12px;
  }

  .fox-header-logo-img {
    height: 40px;
  }

  .fox-btn-login {
    padding: 7px 14px;
    font-size: 12px;
  }

  .fox-mobile-toggle-btn {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .fox-mobile-drawer {
    width: 88vw;
    max-width: 340px;
  }

  .fox-trending-searches {
    margin-top: 16px;
    margin-bottom: 24px;
    gap: 8px;
  }

  .fox-trending-label {
    width: 100%;
  }

  .fox-pill-item {
    font-size: 12px;
    padding: 4px 12px;
  }

  .monsoon-slider-wrap {
    padding: 0 15px;
  }

  .monsoon-masked-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
    letter-spacing: 1px;
  }

  .monsoon-subtitle {
    font-size: 0.88rem;
    flex-direction: column;
    gap: 6px;
  }

  .badge-airfare {
    font-size: 0.75rem;
    padding: 3px 10px;
  }

  .floating-enquire-btn {
    padding: 0 14px;
    height: 42px;
    font-size: 12px;
    bottom: 16px;
    right: 16px;
    border-radius: 25px;
  }

  .floating-enquire-btn img {
    width: 18px;
    height: 18px;
  }

  .modal-body {
    padding: 16px !important;
  }

  .fox-luxury-footer {
    padding-top: 40px;
  }

  .fox-office-card {
    padding: 14px;
  }

  .fox-footer-bottom-links {
    flex-direction: row;
    justify-content: center;
  }

}

@media (max-width: 480px) {
  .monsoon-slider-wrap {
    padding: 0 15px;
  }

  .monsoon-masked-title {
    font-size: 2.3rem;
  }

  .monsoon-card {
    height: 290px;
  }

  .monsoon-card-title {
    font-size: 0.85rem;
  }

  .monsoon-new-price {
    font-size: 0.88rem;
  }

  footer .col-6 {
    width: 100%;
  }

}

@media (max-width: 400px) {
  .ftx-card-actions {
    gap: 6px;
  }

  .ftx-btn-view {
    padding: 12px 16px;
    font-size: 13px;
  }

  .ftx-price-row strong {
    font-size: 20px;
  }

  .ftx-badge-tag {
    display: none;
  }

}

@media (max-width: 375px) {
  .fox-header-logo-img {
    height: 36px;
  }

  .fox-btn-login {
    padding: 6px 10px;
    font-size: 11px;
  }

  .monsoon-masked-title {
    font-size: 1.65rem;
  }

  .fox-cal-tab-box {
    padding: 5px 6px !important;
  }

  .fox-cal-tab-label {
    font-size: 9.5px !important;
  }

  .fox-cal-tab-val {
    font-size: 11px !important;
  }

}

/* ==========================================================================
   PAST TRAVEL REVIEWS PAGE STYLES (Luxury & Interactive)
   ========================================================================== */

.fox-reviews-page {
  background-color: #f8fafc;
  color: var(--text-main);
  padding-bottom: 80px;
  padding-top: 50px;
}

/* Floating Trust Ribbon under Hero */
.fox-reviews-trust-ribbon {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  border: 1px solid #edf2f7;
  padding: 22px 30px;
  position: relative;
  z-index: 10;
}

.fox-trust-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fox-trust-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.fox-trust-stat-icon.gold {
  background: #fff9e6;
  color: #d97706;
}

.fox-trust-stat-icon.green {
  background: #ecfdf5;
  color: #059669;
}

.fox-trust-stat-icon.purple {
  background: #f5f3ff;
  color: #7c3aed;
}

.fox-trust-stat-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.fox-trust-stat-lbl {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 2px;
  font-weight: 500;
}

/* Reviews Scorecard Luxury Light Section */
.fox-reviews-scorecard-compact {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  padding: 20px 24px 22px 24px;
  margin-top: 24px;
  margin-bottom: 28px;
}

.fox-scorecard-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.fox-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.fox-scorecard-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.2px;
}

.fox-scorecard-sub {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
}

/* Score Emblem Card (Light Luxury Warm Aesthetic) */
.fox-score-emblem-card {
  background: linear-gradient(145deg, #fff7ed 0%, #ffffff 100%);
  border: 1px solid #fed7aa;
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.06);
}

.fox-emblem-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #c2410c;
  display: block;
  margin-bottom: 2px;
}

.fox-emblem-score-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}

.fox-emblem-score-val {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: #0f172a;
  letter-spacing: -1px;
}

.fox-emblem-score-max {
  font-size: 1rem;
  font-weight: 700;
  color: #94a3b8;
}

.fox-emblem-stars {
  color: #fbbf24;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  gap: 3px;
  margin: 5px 0 6px 0;
}

.fox-emblem-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid #a7f3d0;
}

/* Distribution Column */
.fox-dist-heading {
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fox-compact-dist-wrap {
  padding: 2px 0;
}

.fox-compact-dist-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 0.8rem;
}

.fox-dist-star-label {
  width: 32px;
  font-weight: 700;
  color: #334155;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 3px;
}

.fox-dist-progress {
  flex-grow: 1;
  height: 6px;
  background: #f1f5f9;
  border-radius: 8px;
  overflow: hidden;
}

.fox-dist-fill {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff5500, #ff8c00);
}

.fox-dist-pct-label {
  width: 34px;
  text-align: right;
  font-weight: 600;
  color: #64748b;
  font-size: 0.76rem;
}

/* 2x2 Metric Cards */
.fox-compact-metrics-wrap {
  padding: 2px 0;
}

.fox-metric-mini-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.fox-metric-mini-card:hover {
  background: #ffffff;
  border-color: #fed7aa;
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.08);
  transform: translateY(-1px);
}

.fox-metric-mini-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.fox-metric-mini-icon.amber {
  background: #fff7ed;
  color: #ea580c;
  border: 1px solid #ffedd5;
}

.fox-metric-mini-icon.emerald {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #d1fae5;
}

.fox-metric-mini-icon.sky {
  background: #f0f9ff;
  color: #0284c7;
  border: 1px solid #e0f2fe;
}

.fox-metric-mini-icon.violet {
  background: #f5f3ff;
  color: #7c3aed;
  border: 1px solid #ede9fe;
}

.fox-metric-mini-info {
  display: flex;
  flex-direction: column;
}

.fox-metric-mini-name {
  font-size: 0.74rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.2;
}

.fox-metric-mini-score {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1.2;
}

@media (min-width: 992px) {
  .border-start-lg {
    border-left: 1px solid #edf2f7 !important;
  }

  .border-end-lg {
    border-right: 1px solid #edf2f7 !important;
  }
}

@media (max-width: 991px) {
  .fox-reviews-scorecard-compact {
    padding: 16px 14px;
  }
}

/* Interactive Filter & Search Toolbar */
.fox-reviews-filter-bar {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 20px 24px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.fox-review-search-input {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 11px 16px 11px 42px;
  font-size: 0.92rem;
  transition: all 0.2s ease;
  background-color: #f8fafc;
}

.fox-review-search-input:focus {
  background-color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.15);
  outline: none;
}

.fox-search-icon-wrapper {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  font-size: 1.05rem;
}

.fox-dest-filter-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  padding-top: 4px;
  -ms-overflow-style: none !important;
  /* IE and Edge */
  scrollbar-width: none !important;
  /* Firefox */
}

.fox-dest-filter-scroll::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.fox-dest-filter-scroll::-webkit-scrollbar-track,
.fox-dest-filter-scroll::-webkit-scrollbar-thumb,
.fox-dest-filter-scroll::-webkit-scrollbar-button,
.fox-dest-filter-scroll::-webkit-scrollbar-corner {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.fox-dest-filter-pill {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fox-dest-filter-pill:hover {
  background: #f8fafc;
  color: var(--primary);
  border-color: #cbd5e1;
}

.fox-dest-filter-pill.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.25);
}

.fox-dest-filter-pill .pill-badge {
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: 12px;
}

.fox-dest-filter-pill.active .pill-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Review Cards Stream */
.fox-review-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 3px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  padding: 14px;
}

.fox-review-card:hover {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

/* Left Pane: Media & Tour Snapshot */
.fox-review-media-pane {
  position: relative;
  height: 100%;
  min-height: 220px;
  max-height: 290px;
  overflow: hidden;
  border-radius: 12px;
  background: #0f172a;
}

.fox-review-media-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}



/* Modern Photo Frame Accents (Refined Orange Corner Brackets) */
.fox-frame-bracket-top,
.fox-frame-bracket.bracket-tl {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 26px;
  height: 26px;
  border-top: 3px solid #ff5500;
  border-left: 3px solid #ff5500;
  border-top-left-radius: 6px;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

.fox-frame-bracket-bottom,
.fox-frame-bracket.bracket-br {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-bottom: 3px solid #ff5500;
  border-right: 3px solid #ff5500;
  border-bottom-right-radius: 6px;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

/* Right Pane: Review Narrative & Profile */
.fox-review-content-pane {
  padding: 4px 8px 4px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.fox-reviewer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.fox-reviewer-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fox-reviewer-avatar-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.fox-reviewer-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.fox-reviewer-avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #ff5500);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(124, 58, 237, 0.25);
  border: 2px solid #ffffff;
}

.fox-rating-badge-pill {
  position: absolute;
  bottom: -3px;
  right: -5px;
  background: linear-gradient(135deg, #6d28d9, #4f46e5);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 10px;
  border: 1.5px solid #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fox-rating-badge-pill.stars-5 {
  background: linear-gradient(135deg, #ff5500, #d94400);
}

.fox-reviewer-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fox-verified-guest-tag {
  color: #059669;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #ecfdf5;
  padding: 2px 7px;
  border-radius: 6px;
}

.fox-review-meta-line {
  font-size: 0.78rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.fox-review-stars-large {
  color: #fbbf24;
  font-size: 0.95rem;
  display: inline-flex;
  gap: 2px;
}

.fox-review-headline {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.4;
}

.fox-review-body {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.58;
  margin-bottom: 10px;
}

/* Official Response Box */
.fox-official-response {
  background: #f8fafc;
  border-left: 3px solid #ff5500;
  border-radius: 0 10px 10px 0;
  padding: 8px 14px;
  margin-bottom: 8px;
  font-size: 0.82rem;
}

.fox-official-response-header {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
}

.fox-official-response-text {
  color: #475569;
  margin: 0;
  line-height: 1.45;
}

/* Card Action Footer */
.fox-review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 10px;
  margin-top: auto;
  font-size: 0.8rem;
}

.fox-helpful-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.78rem;
  color: #475569;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

e;
display: inline-flex;
align-items: center;
gap: 6px;
}

.fox-helpful-btn:hover {
  background: #f8fafc;
  color: var(--primary);
  border-color: var(--primary);
}

.fox-helpful-btn.voted {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

/* Video Stories Strip */
.fox-video-reviews-section {
  background: #0f172a;
  padding: 60px 0;
  margin: 40px 0;
  color: #ffffff;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.fox-video-reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff5500, #ff8c00, #7c3aed);
}

.fox-video-reel-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9 / 14;
  background: #1e293b;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.fox-video-reel-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fox-video-reel-item:hover .fox-video-reel-poster {
  transform: scale(1.08);
}

.fox-video-play-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 85, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: 0 0 0 6px rgba(255, 85, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
  z-index: 2;
}

.fox-video-reel-item:hover .fox-video-play-pulse {
  transform: translate(-50%, -50%) scale(1.15);
  background: #ff5500;
}

.fox-video-reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
  z-index: 1;
}

.fox-video-reel-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  color: #ffffff;
}

.fox-video-reel-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.fox-video-reel-author {
  font-size: 0.74rem;
  color: #94a3b8;
}

/* Modal Styling */
.fox-modal-review .modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.fox-star-rating-selector {
  display: flex;
  gap: 8px;
  font-size: 1.8rem;
  color: #cbd5e1;
  cursor: pointer;
}

.fox-star-rating-selector i:hover,
.fox-star-rating-selector i.active {
  color: #fbbf24;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .fox-reviews-trust-ribbon {
    margin-top: 20px;
    padding: 18px;
  }

  .fox-reviews-scorecard-bento {
    padding: 24px 18px;
  }

  .fox-review-media-pane {
    min-height: 220px;
  }
}

@media (max-width: 767px) {
  .fox-review-card {
    border-radius: 16px;
  }

  .fox-review-content-pane {
    padding: 20px 16px;
  }

  .fox-score-main-box {
    margin-bottom: 24px;
  }
}

/* ==========================================================================
   AUTH FORM VALIDATION UI (login.php)
   ========================================================================== */

/* Red asterisk on required field labels */
.fox-required {
  color: #ef4444;
  font-weight: 800;
  margin-left: 2px;
}

/* Inline field error message */
.fox-field-error {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: #ef4444;
  transition: max-height 0.2s ease, opacity 0.2s ease, margin 0.2s ease;
}

.fox-field-error.visible {
  max-height: 60px;
  opacity: 1;
  margin-top: 5px;
}

.fox-field-error.visible::before {
  content: '\F33A';
  font-family: 'bootstrap-icons';
  margin-right: 4px;
}

/* Helper hint under a field */
.fox-field-hint {
  display: block;
  margin-top: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  color: #94a3b8;
}

/* Invalid input state */
.fox-text-input.is-invalid-fox {
  border-color: #ef4444;
  background: #fef2f2;
}

.fox-text-input.is-invalid-fox:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.fox-input-shell.has-error .fox-field-icon,
.fox-input-shell.has-error .fox-phone-prefix {
  color: #ef4444;
}

/* Valid state — confirms in real time that a completed field passes */
.fox-text-input.is-valid-fox {
  border-color: #10b981;
  background: #f0fdf4;
}

.fox-text-input.is-valid-fox:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.fox-input-shell.is-valid .fox-field-icon,
.fox-input-shell.is-valid .fox-phone-prefix {
  color: #10b981;
}

/* Green tick at the right edge of a valid field */
.fox-input-shell.is-valid::after {
  content: '\F26E';
  font-family: 'bootstrap-icons';
  position: absolute;
  right: 12px;
  font-size: 14px;
  color: #10b981;
  pointer-events: none;
}

/* Keep the tick clear of the show/hide-password eye button */
.fox-input-shell.is-valid:has(.fox-eye-btn)::after {
  right: 34px;
}

/* +91 prefix inside the phone field */
.fox-input-shell-phone .fox-phone-prefix {
  position: absolute;
  left: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  pointer-events: none;
  padding-right: 8px;
  border-right: 1px solid #cbd5e1;
  line-height: 1;
  transition: color 0.2s ease;
}

.fox-input-shell-phone .fox-text-input {
  padding-left: 56px;
  letter-spacing: 0.5px;
}

.fox-input-shell-phone:focus-within .fox-phone-prefix {
  color: #f15a24;
}

/* Live password policy checklist — floating popover shown only while the
   password field is focused, so it never pushes the form layout around. */
.fox-field-group-pass {
  position: relative;
}

.fox-pass-rules {
  list-style: none;
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  right: 0;
  margin: 6px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 34, 60, 0.14);
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

/* Little arrow pointing up at the password input */
.fox-pass-rules::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 18px;
  width: 9px;
  height: 9px;
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  transform: rotate(45deg);
}

/* Reveal while the password field (or the eye button) has focus */
.fox-field-group:focus-within .fox-pass-rules,
.fox-pass-rules.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Every rule met — hide the checklist even while the field still has focus,
   so it stops obscuring the fields below. Higher specificity than the reveal
   rule above, so it wins. */
.fox-field-group:focus-within .fox-pass-rules.all-ok,
.fox-pass-rules.show.all-ok {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
}

.fox-pass-rules li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.fox-pass-rules li i {
  font-size: 11px;
  flex-shrink: 0;
}

.fox-pass-rules li.ok {
  color: #059669;
}

/* ==========================================================================
   LEGAL PAGES (terms-of-service.php / privacy-policy.php)
   ========================================================================== */

.fox-legal-page {
  background: #f8fafc;
}

.fox-legal-hero {
  background: linear-gradient(135deg, #0b1b30 0%, #12294a 60%, #1a3a63 100%);
  padding: 110px 0 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.fox-legal-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 90, 36, 0.28), transparent 70%);
}

.fox-legal-kicker {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #f15a24;
  margin-bottom: 10px;
}

.fox-legal-title {
  font-family: 'Playfair Display', 'Outfit', serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 14px;
}

.fox-legal-intro {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}

.fox-legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 14px;
  margin: 0;
}

.fox-legal-body {
  padding: 48px 0 72px;
}

/* Sticky table of contents */
.fox-legal-toc {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 24px rgba(15, 34, 60, 0.06);
}

.fox-legal-toc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0f223c;
  margin-bottom: 12px;
}

.fox-legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fox-legal-toc li + li {
  margin-top: 2px;
}

.fox-legal-toc a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: all 0.18s ease;
}

.fox-legal-toc a:hover {
  background: #fff5f0;
  color: #f15a24;
}

.fox-legal-toc-num {
  font-size: 10px;
  font-weight: 800;
  color: #f15a24;
  padding-top: 2px;
}

.fox-legal-toc-help {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: #475569;
}

.fox-legal-toc-help a {
  color: #f15a24;
  text-decoration: none;
  padding: 2px 0;
}

/* Content sections */
.fox-legal-section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px 28px;
  margin-bottom: 18px;
  scroll-margin-top: 100px;
}

.fox-legal-h2 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f223c;
  margin-bottom: 14px;
}

.fox-legal-num {
  font-size: 12px;
  font-weight: 800;
  color: #f15a24;
  background: #fff2ec;
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
}

.fox-legal-section p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 12px;
}

.fox-legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.fox-legal-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #475569;
  padding: 6px 0;
}

.fox-legal-list li i {
  color: #f15a24;
  font-size: 15px;
  flex-shrink: 0;
}

.fox-legal-list strong {
  color: #0f223c;
}

.fox-legal-note-box {
  background: #fff8f4;
  border-left: 3px solid #f15a24;
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  font-size: 13.5px !important;
}

.fox-legal-note-box a,
.fox-legal-section a {
  color: #f15a24;
  font-weight: 600;
  text-decoration: none;
}

.fox-legal-note-box a:hover,
.fox-legal-section a:hover {
  text-decoration: underline;
}

.fox-legal-contact-card {
  display: grid;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  color: #475569;
}

.fox-legal-contact-card i {
  color: #f15a24;
  margin-right: 8px;
}

.fox-legal-footer-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #0f223c;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  padding: 16px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  line-height: 21px;
}

.fox-legal-footer-note i {
  color: #f15a24;
  font-size: 16px;
}

.fox-legal-footer-note a {
  color: #f8a97c;
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .fox-legal-toc {
    position: static;
  }

  .fox-legal-hero {
    padding: 90px 0 48px;
  }

  .fox-legal-section {
    padding: 20px 18px;
  }
}


/* ==========================================================================
   HEADER ACCOUNT MENU (signed-in traveller)
   ========================================================================== */

.fox-account-menu {
  position: relative;
}

.fox-account-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 5px 12px 5px 5px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.fox-account-trigger:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

.fox-account-trigger i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.fox-account-menu.open .fox-account-trigger i {
  transform: rotate(180deg);
}

.fox-account-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f15a24, #ff8a5c);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.fox-account-name {
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fox-account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 232px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(15, 34, 60, 0.2);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 1200;
}

.fox-account-menu.open .fox-account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fox-account-dropdown-head {
  padding: 9px 11px 11px;
  border-bottom: 1px dashed #e2e8f0;
  margin-bottom: 6px;
}

.fox-account-dropdown-head strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: #0f223c;
  line-height: 1.3;
}

.fox-account-dropdown-head small {
  font-size: 11.5px;
  color: #64748b;
  word-break: break-all;
}

.fox-account-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.16s ease;
}

.fox-account-dropdown a i {
  font-size: 15px;
  color: #94a3b8;
  width: 18px;
  flex-shrink: 0;
  transition: color 0.16s ease;
}

.fox-account-dropdown a:hover {
  background: #fff5f0;
  color: #f15a24;
}

.fox-account-dropdown a:hover i {
  color: #f15a24;
}

.fox-account-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 6px 0;
}

.fox-account-dropdown a.fox-account-logout {
  color: #dc2626;
}

.fox-account-dropdown a.fox-account-logout i {
  color: #dc2626;
}

.fox-account-dropdown a.fox-account-logout:hover {
  background: #fef2f2;
  color: #b91c1c;
}

@media (max-width: 991.98px) {
  .fox-account-name {
    display: none;
  }

  .fox-account-trigger {
    padding: 5px 9px 5px 5px;
  }

  .fox-account-dropdown {
    min-width: 210px;
  }
}


/* ==========================================================================
   MY ACCOUNT PAGE (my-account.php)
   ========================================================================== */

.fox-account-page {
  background: #f8fafc;
}

.fox-account-hero {
  background: linear-gradient(135deg, #0b1b30 0%, #12294a 60%, #1a3a63 100%);
  padding: 120px 0 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.fox-account-hero::after {
  content: '';
  position: absolute;
  right: -70px;
  top: -70px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 90, 36, 0.3), transparent 70%);
}

.fox-account-hero-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.fox-account-hero-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f15a24, #ff8a5c);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 27px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 26px rgba(241, 90, 36, 0.4);
}

.fox-account-kicker {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #f15a24;
  margin-bottom: 6px;
}

.fox-account-hero h1 {
  font-family: 'Playfair Display', 'Outfit', serif;
  font-size: clamp(25px, 4vw, 38px);
  font-weight: 700;
  margin: 0 0 6px;
}

.fox-account-hero p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
}

.fox-account-body {
  padding: 40px 0 72px;
}

.fox-account-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 34, 60, 0.05);
  scroll-margin-top: 100px;
}

.fox-account-card-head {
  padding: 15px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.fox-account-card-head h2 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0f223c;
}

.fox-account-card-head h2 i {
  color: #f15a24;
  margin-right: 7px;
}

.fox-account-card-body {
  padding: 18px 20px;
}

.fox-account-kv {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fox-account-kv li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed #e2e8f0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
}

.fox-account-kv li:last-child {
  border-bottom: none;
}

.fox-account-kv span {
  color: #64748b;
}

.fox-account-kv strong {
  color: #0f223c;
  text-align: right;
}

.fox-account-kv a {
  color: #f15a24;
  text-decoration: none;
}

.fox-account-note {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

.fox-account-mini-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #0f223c;
  margin: 16px 0 4px;
  padding-top: 13px;
  border-top: 1px dashed #e2e8f0;
}

/* Wallet panel */
.fox-account-wallet {
  background: linear-gradient(135deg, #f15a24, #ff8a5c);
  border-radius: 14px;
  padding: 22px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(241, 90, 36, 0.3);
  scroll-margin-top: 100px;
}

.fox-account-wallet-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 6px;
}

.fox-account-wallet strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
}

.fox-account-wallet p {
  margin: 8px 0 0;
  font-size: 12.5px;
  opacity: 0.92;
  line-height: 1.55;
}

/* Referral code box */
.fox-referral-code-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f8fafc;
  border: 1.5px dashed #f15a24;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 4px;
}

.fox-referral-code-box code {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0f223c;
}

.fox-referral-copy {
  background: #f15a24;
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s ease;
}

.fox-referral-copy:hover {
  background: #d94a18;
}

/* Empty state */
.fox-account-empty {
  text-align: center;
  padding: 34px 16px;
}

.fox-account-empty i {
  font-size: 38px;
  color: #cbd5e1;
  display: block;
  margin-bottom: 10px;
}

.fox-account-empty h6 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0f223c;
  margin-bottom: 6px;
}

.fox-account-empty p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: #64748b;
  max-width: 380px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.fox-account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #f15a24;
  color: #fff;
  border: 1.5px solid #f15a24;
  border-radius: 9px;
  padding: 10px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.18s ease;
}

.fox-account-btn:hover {
  background: #d94a18;
  border-color: #d94a18;
  color: #fff;
}

.fox-account-btn.outline {
  background: transparent;
  color: #dc2626;
  border-color: #fecaca;
}

.fox-account-btn.outline:hover {
  background: #fef2f2;
  border-color: #dc2626;
  color: #b91c1c;
}

@media (max-width: 767.98px) {
  .fox-account-hero {
    padding: 100px 0 40px;
  }

  .fox-account-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .fox-account-hero-avatar {
    width: 62px;
    height: 62px;
    font-size: 22px;
  }

  .fox-account-wallet strong {
    font-size: 30px;
  }
}


/* ==========================================================================
   FORM-LEVEL ALERT
   Used by the auth forms instead of a floating toast. Field-specific problems
   render inline on the field (.fox-field-error); anything form-wide — lockout,
   expired session, network failure, success confirmation — renders here.
   ========================================================================== */

.fox-form-alert {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  /* A LENGTH, not a unitless number: children inherit the same 19px line box,
     so the icon and the first line of text align exactly regardless of the
     icon's larger font-size. */
  line-height: 19px;
  transition: max-height 0.25s ease, opacity 0.25s ease, margin 0.25s ease, padding 0.25s ease;
}

.fox-form-alert.visible {
  max-height: 220px;
  opacity: 1;
  margin-bottom: 14px;
  padding: 12px 14px;
}

.fox-form-alert > i {
  font-size: 16px;
  flex-shrink: 0;
  /* No margin nudge — the inherited 19px line box does the alignment. */
}

/* Message and any action link stack in a single column beside the icon */
.fox-form-alert-body {
  flex: 1;
  min-width: 0;
}

.fox-form-alert-body span {
  display: block;
}

/* Action link (e.g. the development-only reset link) */
.fox-form-alert-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  padding: 7px 13px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  transition: background 0.16s ease;
}

.fox-form-alert-action::before {
  content: '\F470';
  font-family: 'bootstrap-icons';
  font-size: 12px;
}

.fox-form-alert-action:hover {
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.fox-form-alert.error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.fox-form-alert.success {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}


/* ==========================================================================
   MODAL (forgot-password dialog on login.php)
   ========================================================================== */

.fox-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 18, 33, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.fox-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.fox-modal {
  position: relative;
  width: 100%;
  max-width: 430px;
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 30px 28px 24px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.fox-modal-backdrop.open .fox-modal {
  transform: translateY(0) scale(1);
}

.fox-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.18s ease;
}

.fox-modal-close:hover {
  background: #fee2e2;
  color: #dc2626;
}

.fox-modal-head {
  text-align: center;
  margin-bottom: 20px;
}

.fox-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f15a24, #ff8a5c);
  color: #fff;
  font-size: 23px;
  margin-bottom: 13px;
  box-shadow: 0 8px 22px rgba(241, 90, 36, 0.35);
}

.fox-modal-head h2 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #0f223c;
  margin: 0 0 7px;
}

.fox-modal-head p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.fox-modal-back {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 8px;
  background: transparent;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: color 0.18s ease;
}

.fox-modal-back:hover {
  color: #f15a24;
}

/* ==========================================================================
   RESET PASSWORD PAGE (reset-password.php)
   ========================================================================== */

.fox-reset-viewport {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 18px;
}

.fox-reset-card {
  width: 100%;
  max-width: 452px;
  background: #fff;
  border-radius: 18px;
  padding: 32px 30px 26px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.fox-reset-head {
  text-align: center;
  margin-bottom: 20px;
}

.fox-reset-logo {
  width: 118px;
  height: auto;
}

.fox-reset-intro {
  text-align: center;
  margin-bottom: 20px;
}

.fox-reset-kicker {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #f15a24;
  margin-bottom: 7px;
}

.fox-reset-intro h1 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0f223c;
  margin: 0 0 8px;
}

.fox-reset-intro p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  word-break: break-word;
}

.fox-reset-intro strong {
  color: #0f223c;
}

/* Invalid / expired token state */
.fox-reset-state {
  text-align: center;
  padding: 10px 0 6px;
}

.fox-reset-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 16px;
}

.fox-reset-icon.error {
  background: #fef2f2;
  color: #dc2626;
}

.fox-reset-icon.success {
  background: #f0fdf4;
  color: #059669;
}

.fox-reset-state h1 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: #0f223c;
  margin: 0 0 10px;
}

.fox-reset-state p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  line-height: 1.65;
  color: #64748b;
  margin: 0 auto 20px;
  max-width: 340px;
}

.fox-reset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f15a24;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 26px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease;
}

.fox-reset-btn:hover {
  background: #d94a18;
  color: #fff;
}

.fox-reset-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #64748b;
  text-decoration: none;
}

.fox-reset-link:hover {
  color: #f15a24;
}

@media (max-width: 479.98px) {
  .fox-reset-card,
  .fox-modal {
    padding: 24px 20px 20px;
  }

  .fox-modal-head h2,
  .fox-reset-intro h1 {
    font-size: 18px;
  }
}


/* ==========================================================================
   SECURITY TIPS (change-password.php)
   ========================================================================== */

.fox-security-tips {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.fox-security-tips li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  line-height: 21px;
  color: #475569;
}

.fox-security-tips li i {
  color: #10b981;
  font-size: 15px;
  flex-shrink: 0;
}

.fox-security-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff8f4;
  border: 1px solid #ffd5c0;
  border-radius: 10px;
  padding: 13px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  line-height: 20px;
  color: #475569;
}

.fox-security-note i {
  color: #f15a24;
  font-size: 15px;
  flex-shrink: 0;
}

.fox-security-note strong {
  color: #0f223c;
  word-break: break-word;
}

/* Icon-only variant of the account hero avatar (used on the security page) */
.fox-account-hero-avatar i {
  font-size: 30px;
}

/* Cancel button sits beside the submit button without stretching */
.fox-passport-form .fox-account-btn.outline {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
}

/* A completed form is disabled after success — make that visually obvious */
.fox-text-input:disabled {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
}

/* Helper links inside a field hint */
.fox-field-hint a {
  color: #f15a24;
  font-weight: 700;
  text-decoration: none;
}

.fox-field-hint a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   ACCOUNT SECURITY CARD (my-account.php)
   ========================================================================== */

.fox-account-security-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.fox-account-security-row p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}

.fox-account-security-row p strong {
  display: block;
  font-size: 13.5px;
  color: #0f223c;
  margin-bottom: 2px;
}


/* ==========================================================================
   EDIT PROFILE (edit-profile.php)
   ========================================================================== */

/* ---------- Avatar picker ---------- */
.fox-avatar-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fox-avatar-preview {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f15a24, #ff8a5c);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  box-shadow: 0 8px 26px rgba(15, 34, 60, 0.18);
  overflow: hidden;
}

.fox-avatar-initials {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  user-select: none;
}

.fox-avatar-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f15a24;
  color: #fff;
  border-radius: 9px;
  padding: 9px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease;
  margin: 0;
}

.fox-avatar-btn:hover {
  background: #d94a18;
}

.fox-avatar-remove {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 2px 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #dc2626;
  cursor: pointer;
}

.fox-avatar-remove:hover {
  text-decoration: underline;
}

/* ---------- Gender radio chips ---------- */
.fox-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.fox-radio-chip {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.fox-radio-chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.fox-radio-chip span {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid #cbd5e1;
  background: #f8fafc;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
  transition: all 0.18s ease;
}

.fox-radio-chip input:checked + span {
  background: #fff5f0;
  border-color: #f15a24;
  color: #f15a24;
}

.fox-radio-chip input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.2);
}

/* ---------- Bio textarea ---------- */
.fox-textarea {
  width: 100%;
  min-height: 104px;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  background: #f8fafc;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #0f223c;
  resize: vertical;
  outline: none;
  transition: all 0.2s ease;
}

.fox-textarea:focus {
  background: #fff;
  border-color: #f15a24;
  box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.15);
}

.fox-textarea::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.fox-textarea-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.fox-char-count {
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  color: #94a3b8;
}

/* ---------- Read-only account facts strip ---------- */
.fox-readonly-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed #e2e8f0;
}

.fox-readonly-strip > div {
  flex: 1;
  min-width: 128px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
}

.fox-readonly-strip span {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 2px;
}

.fox-readonly-strip strong {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0f223c;
}

/* ---------- Header avatar showing an uploaded image ---------- */
.fox-account-avatar.has-image,
.fox-admin-avatar.has-image,
.fox-account-hero-avatar.has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: transparent;
  font-size: 0;
}

/* ---------- My Account: avatar on the profile card ---------- */
.fox-account-photo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .fox-avatar-preview {
    width: 108px;
    height: 108px;
  }

  .fox-avatar-initials {
    font-size: 34px;
  }

  .fox-readonly-strip > div {
    min-width: 100%;
  }
}


/* ---------- My Account: edit link + bio block ---------- */
.fox-account-card-edit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #f15a24;
  text-decoration: none;
  white-space: nowrap;
}

.fox-account-card-edit:hover {
  color: #d94a18;
  text-decoration: underline;
}

.fox-account-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fox-account-bio {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
}

.fox-account-bio h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 6px;
}

.fox-account-bio p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}


/* ==========================================================================
   TERMS CONSENT GROUP (signup)
   The checkbox and its error are one block, so the spacing above the submit
   button stays constant whether or not the error is showing.
   ========================================================================== */

.fox-terms-group {
  margin: 14px 0 16px;
}

.fox-terms-group .fox-check-label {
  align-items: flex-start;
  font-size: 12.5px;
  line-height: 18px;
}

/* Nudge the box onto the first line of a wrapping label */
.fox-terms-group .fox-check-label input[type="checkbox"] {
  margin-top: 1px;
  flex-shrink: 0;
}

/* Align the message with the label text, clear of the checkbox (19px box + 10px gap) */
.fox-terms-group .fox-field-error {
  padding-left: 29px;
}

.fox-terms-group .fox-field-error.visible {
  margin-top: 6px;
}

/* ==========================================================================
   FLATPICKR LUXURY THEME — THE FOX TRAVELLERS
   ========================================================================== */

.flatpickr-calendar {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18), 0 4px 15px rgba(255, 85, 0, 0.08);
  border: 1px solid #e2e8f0;
  font-family: "Plus Jakarta Sans", "Outfit", sans-serif;
  width: 320px;
  padding: 12px 14px;
  margin-top: 6px;
  transition: all 0.2s var(--fox-ease);
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #ffffff;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #ffffff;
}

.flatpickr-months {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}

.flatpickr-months .flatpickr-month {
  height: 40px;
  color: #0f172a;
}

.flatpickr-current-month {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  padding: 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-family: inherit;
  font-weight: 700;
  color: #0f172a;
  border-radius: 8px;
  padding: 4px 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: #fff3eb;
  border-color: var(--primary);
  color: var(--primary);
}

.flatpickr-current-month input.cur-year {
  font-family: inherit;
  font-weight: 700;
  color: #0f172a;
  padding: 4px 4px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  position: absolute;
  top: 6px;
  padding: 8px;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #64748b;
  fill: #64748b;
  transition: all 0.2s ease;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background: #fff3eb;
  color: var(--primary);
  fill: var(--primary);
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 13px;
  height: 13px;
}

span.flatpickr-weekday {
  color: #94a3b8;
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flatpickr-days {
  width: 100%;
}

.dayContainer {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  justify-content: space-around;
  padding: 4px 0 0;
}

.flatpickr-day {
  border-radius: 10px;
  height: 36px;
  line-height: 36px;
  max-width: 36px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin: 2px 0;
  border: 1px solid transparent;
  transition: all 0.18s ease;
}

.flatpickr-day:hover {
  background: #fff3eb;
  border-color: #ffd8bf;
  color: var(--primary);
}

.flatpickr-day.today {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 700;
}

.flatpickr-day.today:hover {
  background: var(--primary);
  color: #ffffff;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  background: linear-gradient(135deg, #ff5500 0%, #ff6b1a 100%) !important;
  color: #ffffff !important;
  font-weight: 700;
  border-color: transparent !important;
  box-shadow: 0 4px 14px rgba(255, 85, 0, 0.38) !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: #cbd5e1;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: #e2e8f0;
  cursor: not-allowed;
  background: transparent;
}

/* Cursor pointer on inputs using Flatpickr */
.fox-text-input.flatpickr-input {
  cursor: pointer;
  background-color: #f8fafc;
}

.fox-text-input.flatpickr-input:focus {
  background-color: #ffffff;
}

/* ==========================================================================
   FORM ACTION BUTTONS (Save Changes & Cancel)
   ========================================================================== */

.fox-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.fox-form-actions .fox-passport-submit-btn {
  flex: 1;
  width: auto;
  min-width: 0;
  height: 48px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff5500 0%, #ff7733 100%);
  box-shadow: 0 8px 20px -4px rgba(255, 85, 0, 0.4);
}

.fox-btn-cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 48px;
  padding: 0 28px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: #475569;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.fox-btn-cancel:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
  transform: translateY(-1px);
}

@media (max-width: 575.98px) {
  .fox-form-actions {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .fox-form-actions .fox-passport-submit-btn,
  .fox-btn-cancel {
    width: 100%;
  }
}

/* ==========================================================================
   WALLET HISTORY & INTERACTIVE CARD STYLES
   ========================================================================== */

.fox-readonly-wallet-btn {
  cursor: pointer;
  background: #ffffff !important;
  border: 1.5px solid #ffd8bf !important;
  box-shadow: 0 2px 8px rgba(255, 85, 0, 0.08);
  transition: all 0.2s ease;
}

.fox-readonly-wallet-btn:hover {
  background: #fff8f4 !important;
  border-color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 85, 0, 0.15);
}

.fox-wallet-pill-tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  background: #fff0e6;
  padding: 1px 7px;
  border-radius: 20px;
  border: 1px solid #ffd8bf;
  letter-spacing: 0;
  text-transform: none;
}

.fox-wallet-modal-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff5500, #ff7a45);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(255, 85, 0, 0.3);
}

.fox-wallet-hero-card {
  background: linear-gradient(135deg, #090d16 0%, #172338 100%);
  border-radius: 16px;
  padding: 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(9, 13, 22, 0.25);
}

.fox-wallet-hero-card::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.fox-wallet-hero-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #94a3b8;
  text-transform: uppercase;
}

.fox-wallet-status-pill {
  font-size: 11px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 8px;
  border-radius: 20px;
}

.fox-wallet-hero-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-top: 4px;
}

.fox-wallet-tx-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.fox-wallet-tx-item:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.fox-wallet-tx-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.fox-wallet-tx-icon.bonus {
  background: #fff7ed;
  color: #f97316;
}

.fox-wallet-tx-icon.referral {
  background: #eff6ff;
  color: #3b82f6;
}

.fox-wallet-tx-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
}

.fox-wallet-tx-amount.credit {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #10b981;
}

.fox-wallet-tip-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px;
  color: #92400e;
  line-height: 1.45;
}

.fox-wallet-full-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff5ee;
  border: 1.5px dashed #ffd8bf;
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.fox-wallet-full-link:hover {
  background: var(--primary);
  color: #ffffff;
  border-style: solid;
  border-color: var(--primary);
}

.fox-wallet-full-link i {
  font-size: 16px;
}

/* ---------- Dedicated Wallet Page Elements ---------- */

.fox-amount-chip {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 6px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.18s ease;
}

.fox-amount-chip:hover,
.fox-amount-chip.active {
  background: #fff5ee;
  border-color: var(--primary);
  color: var(--primary);
}

.fox-tab-pill {
  background: transparent;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.fox-tab-pill:hover {
  color: #0f172a;
}

.fox-tab-pill.active {
  background: #0f172a;
  color: #ffffff;
}

.fox-statement-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  transition: all 0.2s ease;
}

.fox-statement-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.fox-statement-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.fox-statement-icon.bonus {
  background: #fff7ed;
  color: #f97316;
}

.fox-statement-icon.referral {
  background: #eff6ff;
  color: #3b82f6;
}

.fox-statement-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
}

.fox-statement-amount.credit {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #10b981;
  display: block;
}

.fox-statement-badge.success {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #10b981;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 1px 6px;
  border-radius: 10px;
  text-transform: uppercase;
}

.fox-wallet-info-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
}





/* =====================================================================
   TASKS & REWARDS (traveller side)
   Mirrors the account-card language so it reads as part of the passport.
   ===================================================================== */

.fox-task-stat {
  background: #ffffff;
  border: 1px solid #e9edf3;
  border-radius: 16px;
  padding: 18px 20px;
  height: 100%;
}

.fox-task-stat i {
  font-size: 20px;
  color: #ff5500;
  display: block;
  margin-bottom: 8px;
}

.fox-task-stat span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #7a869a;
}

.fox-task-stat strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
}

.fox-task-card {
  background: #ffffff;
  border: 1px solid #e9edf3;
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 16px;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.fox-task-card:hover {
  border-color: #ffd9c2;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .07);
}

.fox-task-card.done { border-color: #bbf7d0; background: #f8fffb; }

.fox-task-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.fox-task-card-head h3 {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
}

.fox-task-card-head p {
  font-size: 13.5px;
  color: #6b7280;
  margin: 0;
}

.fox-task-points {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff7ed;
  color: #b64300;
  border: 1px solid #ffedd5;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 800;
}

.fox-task-progress { margin-top: 16px; }

.fox-task-bar {
  height: 7px;
  border-radius: 999px;
  background: #eef2f7;
  overflow: hidden;
}

.fox-task-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7a29, #ff5500);
  transition: width .4s ease;
}

.fox-task-progress small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #7a869a;
}

.fox-task-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.fox-task-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #7a869a;
}

.fox-task-state.ready,
.fox-task-state.approved { color: #16a34a; }
.fox-task-state.pending  { color: #d97706; }
.fox-task-state.rejected { color: #e11d48; }

/* Step list on the detail page. */
.fox-task-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fox-task-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}

.fox-task-steps li:last-child { border-bottom: 0; }

.fox-task-step-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.fox-task-steps li.done .fox-task-step-mark {
  border-color: #16a34a;
  background: #16a34a;
  color: #ffffff;
}

.fox-task-step-body {
  font-size: 14px;
  color: #334155;
}

.fox-task-step-body strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 2px;
}

.fox-task-steps li.done .fox-task-step-body { color: #64748b; }

.fox-task-how {
  margin: 0;
  padding-left: 18px;
  font-size: 13.5px;
  color: #475569;
}

.fox-task-how li { margin-bottom: 8px; }
.fox-task-how li:last-child { margin-bottom: 0; }

.fox-task-terms .accordion-button {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  padding: 12px 14px;
}

.fox-task-terms .accordion-button:not(.collapsed) {
  background: #fff7ed;
  color: #b64300;
  box-shadow: none;
}

.fox-task-terms .accordion-body {
  font-size: 13px;
  color: #475569;
}

@media (max-width: 575.98px) {
  .fox-task-card { padding: 18px; }
  .fox-task-card-foot .fox-account-btn { width: 100%; justify-content: center; }
}

.fox-task-expiry {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  border-radius: 999px;
  background: #fff7ed;
  color: #b64300;
  font-weight: 700;
  font-size: 11px;
}
