/* ==========================================================================
   FlyNest Tours - Ultra-Luxury Design System & Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #060b13;
  --bg-surface: #0b1526;
  --bg-card: rgba(15, 27, 48, 0.75);
  --bg-card-hover: rgba(22, 38, 66, 0.9);
  --bg-glass: rgba(11, 21, 38, 0.7);
  --bg-glass-heavy: rgba(6, 11, 19, 0.85);

  --gold-primary: #e5a93c;
  --gold-light: #f6d365;
  --gold-warm: #fda085;
  --gold-gradient: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  --gold-glow: rgba(229, 169, 60, 0.28);
  --gold-glow-strong: rgba(229, 169, 60, 0.45);

  --accent-cyan: #38bdf8;
  --accent-emerald: #10b981;
  --accent-rose: #f43f5e;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  --text-gold: #f6d365;

  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(229, 169, 60, 0.3);
  --border-hover: rgba(255, 255, 255, 0.18);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 30px rgba(229, 169, 60, 0.2);

  /* Typography */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
}

/* Base Resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(229, 169, 60, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(56, 189, 248, 0.03) 0%, transparent 45%);
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

.text-gold {
  color: var(--gold-primary) !important;
}

.text-gold-muted {
  color: rgba(229, 169, 60, 0.4) !important;
}

.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.font-serif {
  font-family: var(--font-serif);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--gold-primary);
  background: rgba(229, 169, 60, 0.1);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-tag i {
  font-size: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 40px;
}

.section-header-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  padding: 0 32px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0b1320;
  font-weight: 700;
  box-shadow: 0 6px 20px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--gold-glow-strong);
  filter: brightness(1.08);
}

.btn-outline-gold {
  border: 1px solid var(--border-gold);
  background: rgba(229, 169, 60, 0.05);
  color: var(--gold-light);
}

.btn-outline-gold:hover {
  background: rgba(229, 169, 60, 0.18);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-icon-only {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* Glassmorphic Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-normal);
  background: transparent;
}

.site-header.scrolled {
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon-wrap {
  width: 42px;
  height: 42px;
  background: var(--gold-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #09101b;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px var(--gold-glow);
  transition: transform var(--transition-normal);
}

.brand-logo:hover .logo-icon-wrap {
  transform: rotate(10deg) scale(1.05);
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.brand-name span {
  color: var(--gold-primary);
  font-weight: 400;
}

.brand-tag {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -3px;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

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

.nav-badge {
  font-size: 0.65rem;
  background: var(--gold-primary);
  color: #0b1320;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 700;
  margin-left: 4px;
}

/* Header Utilities */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.currency-dropdown {
  position: relative;
}

.currency-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.currency-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-hover);
}

.currency-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 180px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(20px);
  z-index: 100;
}

.currency-menu.show {
  display: flex;
  animation: fadeInDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.currency-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.currency-item:hover,
.currency-item.active {
  background: rgba(229, 169, 60, 0.15);
  color: var(--gold-light);
}

.wishlist-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.wishlist-icon-btn:hover {
  background: rgba(229, 169, 60, 0.15);
  color: var(--gold-light);
  border-color: var(--border-gold);
}

.wishlist-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-primary);
  color: #060b13;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.3rem;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
  transform: scale(1.04);
  animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  0% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(6, 11, 19, 0.6) 0%,
      rgba(6, 11, 19, 0.4) 40%,
      rgba(6, 11, 19, 0.95) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(15, 27, 48, 0.8);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-desc {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Hero Search Engine Card */
.hero-search-box {
  background: rgba(11, 21, 38, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 12px;
  align-items: center;
  text-align: left;
}

.search-field {
  padding: 10px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.search-field:last-of-type {
  border-right: none;
}

.search-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.search-field input,
.search-field select {
  width: 100%;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  background: transparent;
  cursor: pointer;
}

.search-field select option {
  background: var(--bg-surface);
  color: var(--text-main);
}

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

/* ==========================================================================
   Trust & Metrics Bar
   ========================================================================== */
.metrics-section {
  position: relative;
  z-index: 10;
  margin-top: -30px;
  padding-bottom: 60px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  box-shadow: var(--shadow-lg);
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.metric-icon {
  width: 52px;
  height: 52px;
  background: rgba(229, 169, 60, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.metric-num {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   Section Spacing & Utilities
   ========================================================================== */
.section {
  padding: 90px 0;
  position: relative;
}

.section-darker {
  background: #04080e;
}

/* ==========================================================================
   Tour Card Component
   ========================================================================== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.tour-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.tour-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(229, 169, 60, 0.15);
}

.tour-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.tour-card:hover .tour-thumb-img {
  transform: scale(1.08);
}

.tour-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 21, 38, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  z-index: 2;
}

.tour-wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(11, 21, 38, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  z-index: 2;
  transition: all var(--transition-fast);
}

.tour-wishlist-btn:hover {
  background: var(--gold-primary);
  color: #060b13;
  transform: scale(1.1);
}

.tour-wishlist-btn.active {
  color: var(--accent-rose);
}

.tour-style-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  color: #e2e8f0;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
}

.tour-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.tour-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #ffffff;
  transition: color var(--transition-fast);
}

.tour-card:hover .tour-title {
  color: var(--gold-light);
}

.tour-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

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

.price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-amount {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
}

.price-amount span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ==========================================================================
   Destination Cards
   ========================================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.destination-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-glass);
  transition: all var(--transition-normal);
}

.destination-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.dest-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  z-index: 1;
}

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

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 11, 19, 0.1) 0%, rgba(6, 11, 19, 0.85) 75%, rgba(6, 11, 19, 0.98) 100%);
  z-index: 2;
}

.dest-content {
  position: relative;
  z-index: 3;
}

.dest-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(229, 169, 60, 0.2);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.dest-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.dest-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 12px;
  line-height: 1.4;
}

.dest-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: gap var(--transition-fast);
}

.dest-footer-link:hover {
  gap: 10px;
}

/* ==========================================================================
   Why FlyNest / Features Section
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(229, 169, 60, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: all var(--transition-normal);
}

.feature-box:hover .feature-icon-wrap {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold-primary);
  color: #060b13;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Testimonial & Reviews
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 2.2rem;
  color: rgba(229, 169, 60, 0.2);
}

.testimonial-rating {
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.author-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.author-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Newsletter CTA Section
   ========================================================================== */
.cta-banner {
  background: radial-gradient(circle at 50% 50%, rgba(22, 42, 75, 0.9) 0%, rgba(11, 21, 38, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cta-form {
  max-width: 560px;
  margin: 30px auto 0;
  display: flex;
  gap: 10px;
  background: rgba(6, 11, 19, 0.8);
  border: 1px solid var(--border-glass);
  padding: 6px;
  border-radius: var(--radius-pill);
}

.cta-input {
  flex-grow: 1;
  padding: 12px 20px;
  color: #ffffff;
  font-size: 0.95rem;
}

.cta-input::placeholder {
  color: var(--text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #03060a;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 30px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 18px 0 24px;
  max-width: 360px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-icon-link:hover {
  background: var(--gold-primary);
  color: #060b13;
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--gold-primary);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-subtle);
}

/* ==========================================================================
   Page Headers (Subpages)
   ========================================================================== */
.page-hero {
  padding: 160px 0 70px;
  background: linear-gradient(180deg, rgba(6, 11, 19, 0.85) 0%, rgba(6, 11, 19, 0.98) 100%),
    url('https://images.unsplash.com/photo-1502784444187-359ac186c5bb?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border-glass);
}

.page-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   Tour Catalog & Filters (`tours.php`)
   ========================================================================== */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

.filter-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
}

.filter-group {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.filter-option:hover {
  color: #ffffff;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  accent-color: var(--gold-primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.range-slider {
  width: 100%;
  accent-color: var(--gold-primary);
  margin: 10px 0;
}

.range-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 24px;
}

.toolbar-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sort-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  cursor: pointer;
}

.sort-select option {
  background: var(--bg-surface);
}

.view-toggle-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.view-toggle-btn.active,
.view-toggle-btn:hover {
  background: var(--gold-primary);
  color: #060b13;
}

/* ==========================================================================
   Tour Details Experience (`tour-details.php`)
   ========================================================================== */
.tour-details-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* Hero Gallery Dynamic Layout */
.gallery-grid {
  display: grid;
  gap: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
}

/* 3 Images Layout */
.gallery-grid.has-3-images {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 220px);
}
.gallery-grid.has-3-images .gallery-item-main {
  grid-row: span 2;
}

/* 2 Images Layout */
.gallery-grid.has-2-images {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 400px;
}
.gallery-grid.has-2-images .gallery-item-main {
  grid-row: span 1;
}

/* 1 Image Layout */
.gallery-grid.has-1-images {
  grid-template-columns: 1fr;
  grid-template-rows: 400px;
}
.gallery-grid.has-1-images .gallery-item-main {
  grid-row: span 1;
}

.gallery-item-main {
  position: relative;
  cursor: pointer;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.view-all-photos-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(6, 11, 19, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Quick Facts Grid */
.quick-facts-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 36px;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fact-icon {
  font-size: 1.3rem;
  color: var(--gold-primary);
}

.fact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.fact-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

/* Itinerary Timeline */
.itinerary-section {
  margin-bottom: 48px;
}

.itinerary-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.itinerary-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.itinerary-item.active {
  border-color: var(--border-gold);
}

.itinerary-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.itinerary-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.day-badge {
  background: var(--gold-gradient);
  color: #060b13;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.itinerary-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.itinerary-body {
  padding: 0 24px 24px;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
}

.itinerary-item.active .itinerary-body {
  display: block;
  animation: fadeIn 0.3s ease;
}

.itinerary-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  color: #cbd5e1;
}

.meta-pill i {
  color: var(--gold-primary);
}

/* Inclusions & Exclusions */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.inc-box,
.exc-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
}

.inc-box h4,
.exc-box h4 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inc-list,
.exc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.inc-list li i {
  color: var(--accent-emerald);
  margin-top: 4px;
}

.exc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.exc-list li i {
  color: var(--accent-rose);
  margin-top: 4px;
}

/* Sticky Booking Widget */
.booking-widget-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: sticky;
  top: 100px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.widget-price-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
}

.widget-original-price {
  font-size: 0.95rem;
  color: var(--text-subtle);
  text-decoration: line-through;
}

.widget-form-group {
  margin-bottom: 18px;
}

.widget-form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.widget-input,
.widget-select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.95rem;
}

.widget-input:focus,
.widget-select:focus {
  border-color: var(--gold-primary);
}

.widget-guest-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.counter-btn:hover {
  background: var(--gold-primary);
  color: #060b13;
}

.addon-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.addon-item:hover,
.addon-item.selected {
  border-color: var(--border-gold);
  background: rgba(229, 169, 60, 0.08);
}

.addon-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.addon-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
}

.price-summary-breakdown {
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.summary-row {
  display: flex;
  justify-content: space-between;
}

.summary-row.total {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Bespoke Trip Builder (`custom-trip.php`)
   ========================================================================== */
.wizard-container {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.wizard-progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.wizard-progress-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  transform: translateY(-50%);
}

.wizard-step-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border-glass);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.wizard-step-node.active .step-num {
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  color: #060b13;
  box-shadow: 0 0 15px var(--gold-glow);
}

.wizard-step-node.completed .step-num {
  background: var(--accent-emerald);
  border-color: var(--accent-emerald);
  color: #ffffff;
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.wizard-step-node.active .step-label {
  color: var(--gold-light);
}

.wizard-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin: 24px 0 36px;
}

.choice-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.choice-tile:hover {
  border-color: var(--border-gold);
  background: rgba(229, 169, 60, 0.06);
  transform: translateY(-4px);
}

.choice-tile.selected {
  border-color: var(--gold-primary);
  background: rgba(229, 169, 60, 0.14);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.choice-icon {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.choice-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.choice-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.wizard-nav-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  margin-top: 24px;
}

/* ==========================================================================
   Modals & Drawers
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.show {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.modal-dialog {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
  position: relative;
}

.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--accent-rose);
  color: #ffffff;
}

.modal-body {
  padding: 28px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.3s ease;
  min-width: 280px;
}

.toast-icon {
  font-size: 1.2rem;
  color: var(--gold-primary);
}

.toast-msg {
  font-size: 0.9rem;
  color: #ffffff;
}

/* Floating WhatsApp / Concierge Trigger */
.floating-concierge {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all var(--transition-normal);
}

.floating-concierge:hover {
  transform: translateY(-4px);
  background: rgba(22, 42, 75, 0.95);
  box-shadow: 0 15px 40px var(--gold-glow);
}

.concierge-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

/* Keyframe Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-search-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-field:nth-child(2) {
    border-right: none;
  }

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

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

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

  .tour-details-layout {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

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

  .search-field {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

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

  .inc-exc-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item-main {
    height: 260px;
  }

  .gallery-item:not(.gallery-item-main) {
    display: none;
  }

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

  .floating-concierge span {
    display: none;
  }
}

.brand-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}