/* ==========================================================================
   Vozis Travel Agency — Modern Luxury Design System
   ========================================================================== */

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

:root, html[data-theme="light"] {
  color-scheme: light;
  /* Light Theme Tokens (Default) */
  --color-bg: #f8fafc;
  --color-bg-card: #ffffff;
  --color-bg-glass: rgba(255, 255, 255, 0.85);
  --color-border-glass: rgba(226, 232, 240, 0.8);
  --color-border-hover: rgba(238, 33, 36, 0.4);
  
  --color-primary: #ee2124;
  --color-primary-hover: #c81417;
  --color-red: #ee2124;
  --color-rose: #e11d48;
  --color-gold: #d97706;
  
  --gradient-primary: linear-gradient(135deg, #ee2124 0%, #e11d48 50%, #f59e0b 100%);
  --gradient-sunset: linear-gradient(135deg, #ee2124 0%, #e11d48 50%, #d97706 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
  --gradient-text: linear-gradient(135deg, #0f172a 0%, #e11d48 60%, #d97706 100%);
  --gradient-card-border: linear-gradient(135deg, rgba(226, 232, 240, 0.8) 0%, rgba(238, 33, 36, 0.2) 100%);
  
  --color-text-main: #0f172a;
  --color-text-muted: #475569;
  --color-text-dim: #94a3b8;
  
  --color-topbar-bg: rgba(11, 15, 25, 0.85);
  --color-topbar-border: rgba(255, 255, 255, 0.1);
  --color-navbar-bg: rgba(11, 15, 25, 0.8);
  --color-navbar-border: rgba(255, 255, 255, 0.08);
  --color-searchbox-bg: #ffffff;
  --color-footer-bg: #0f172a;
  
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.07);
  --shadow-glow: 0 0 25px rgba(238, 33, 36, 0.15);
  --shadow-red: 0 8px 24px rgba(238, 33, 36, 0.25);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  /* Dark Theme Tokens */
  --color-bg: #0b0f19;
  --color-bg-card: rgba(15, 23, 42, 0.75);
  --color-bg-glass: rgba(255, 255, 255, 0.04);
  --color-border-glass: rgba(255, 255, 255, 0.1);
  --color-border-hover: rgba(244, 63, 94, 0.35);
  
  --color-primary: #ee2124;
  --color-primary-hover: #c81417;
  --color-red: #ee2124;
  --color-rose: #f43f5e;
  --color-gold: #f59e0b;
  
  --gradient-primary: linear-gradient(135deg, #ee2124 0%, #e11d48 50%, #f59e0b 100%);
  --gradient-sunset: linear-gradient(135deg, #f43f5e 0%, #ee2124 50%, #d97706 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  --gradient-text: linear-gradient(135deg, #ffffff 0%, #ffe4e6 25%, #ff4d4f 65%, #f59e0b 100%);
  --gradient-card-border: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(238, 33, 36, 0.3) 50%, rgba(245, 158, 11, 0.2) 100%);
  
  --color-text-main: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-dim: #64748b;
  
  --color-topbar-bg: rgba(7, 10, 18, 0.85);
  --color-topbar-border: rgba(255, 255, 255, 0.08);
  --color-navbar-bg: rgba(11, 15, 25, 0.8);
  --color-navbar-border: rgba(255, 255, 255, 0.08);
  --color-searchbox-bg: rgba(15, 23, 42, 0.85);
  --color-footer-bg: #05080f;
}

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

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

body {
  background-color: var(--color-bg);
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(238, 33, 36, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--color-text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* Glassmorphism Containers with Gradient Borders */
.glass-panel {
  background: var(--color-bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-panel:hover {
  border-color: var(--color-border-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 0 20px rgba(238, 33, 36, 0.1);
}

/* Typography Helpers */
.title-serif {
  font-family: var(--font-serif);
}

.title-display {
  font-family: var(--font-display);
}

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

.text-azure, .text-red {
  color: var(--color-rose);
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

/* Utility Containers */
.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.d-flex { display: flex !important; }
.flex-wrap { flex-wrap: wrap !important; }
.items-center { align-items: center !important; }
.justify-between { justify-content: space-between !important; }
.gap-1 { gap: 0.5rem !important; }
.gap-2 { gap: 0.85rem !important; }
.gap-3 { gap: 1.25rem !important; }
.gap-4 { gap: 1.75rem !important; }
.gap-5 { gap: 2.5rem !important; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(238, 33, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  color: #c81417 !important;
  border: 1.5px solid rgba(200, 20, 23, 0.35);
  backdrop-filter: blur(8px);
}

html[data-theme="dark"] .badge {
  background: linear-gradient(135deg, rgba(238, 33, 36, 0.25) 0%, rgba(245, 158, 11, 0.25) 100%);
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.badge-azure {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, rgba(238, 33, 36, 0.1) 100%);
  color: #c81417 !important;
  border: 1.5px solid rgba(200, 20, 23, 0.35);
}

html[data-theme="dark"] .badge-azure {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.25) 0%, rgba(238, 33, 36, 0.25) 100%);
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

/* Logo Image Styling */
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-img-footer {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-glass);
  color: var(--color-text-main);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.theme-toggle-btn:hover {
  border-color: var(--color-red);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(238, 33, 36, 0.15);
}

/* Top Announcement Bar (Adaptive Light & Dark) */
.top-bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-glass);
  padding: 0.45rem 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  position: relative;
  z-index: 101;
  transition: all var(--transition-normal);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-pill {
  color: var(--color-gold);
  font-weight: 600;
}

.top-bar-divider {
  color: var(--color-border-glass);
}

.top-bar-subtitle {
  color: var(--color-text-dim);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-phone-link {
  color: var(--color-text-main);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.top-phone-link:hover {
  color: #ee2124 !important;
}

.currency-select {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-glass);
  color: var(--color-text-main);
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.currency-select option {
  background: var(--color-bg-card);
  color: var(--color-text-main);
}

.currency-select:hover {
  border-color: var(--color-red);
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-main);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-glass);
  text-decoration: none;
  line-height: 1;
  transition: all var(--transition-fast);
}

.lang-switch-btn:hover {
  border-color: var(--color-red);
  color: var(--color-red) !important;
  transform: translateY(-1px);
}

.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-main);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-glass);
  cursor: pointer;
  line-height: 1;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  transform: translateY(-1px);
}

/* Header Wrapper */
.header-wrapper {
  position: relative;
  width: 100%;
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border-glass);
  z-index: 1100;
  transition: all var(--transition-normal);
}

/* For pages with full hero photo background (e.g. index.html) */
.header-wrapper.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border-bottom: none;
}

.header-wrapper.header-transparent .top-bar {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
}

.header-wrapper.header-transparent .top-phone-link {
  color: #ffffff;
}

.header-wrapper.header-transparent .brand-logo {
  color: #ffffff;
}

.header-wrapper.header-transparent .nav-links a {
  color: #ffffff;
}

/* Light Theme Header (Solid White & High-Contrast Navigation) */
html[data-theme="light"] .header-wrapper:not(.header-transparent) {
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

html[data-theme="light"] .header-wrapper:not(.header-transparent) .top-bar {
  background: #f8fafc !important;
  border-bottom: 1px solid #e2e8f0 !important;
  color: #475569 !important;
}

html[data-theme="light"] .header-wrapper:not(.header-transparent) .top-phone-link {
  color: #0f172a !important;
  font-weight: 700;
}

html[data-theme="light"] .header-wrapper:not(.header-transparent) .top-phone-link:hover {
  color: #ee2124 !important;
}

html[data-theme="light"] .header-wrapper:not(.header-transparent) .top-bar-subtitle {
  color: #64748b !important;
}

html[data-theme="light"] .header-wrapper:not(.header-transparent) .currency-select,
html[data-theme="light"] .header-wrapper:not(.header-transparent) .lang-switch-btn,
html[data-theme="light"] .header-wrapper:not(.header-transparent) .theme-toggle-btn {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0f172a !important;
  font-weight: 600;
  padding: 0.28rem 0.85rem !important;
  border-radius: var(--radius-full) !important;
}

html[data-theme="light"] .header-wrapper:not(.header-transparent) .navbar {
  background: #ffffff !important;
}

html[data-theme="light"] .header-wrapper:not(.header-transparent) .nav-links a {
  color: #0f172a !important;
  font-weight: 600;
}

html[data-theme="light"] .header-wrapper:not(.header-transparent) .nav-links a:hover,
html[data-theme="light"] .header-wrapper:not(.header-transparent) .nav-links a.active {
  color: #ee2124 !important;
}

/* Navbar */
.navbar {
  position: relative;
  width: 100%;
  background: transparent;
  z-index: 1100;
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), box-shadow var(--transition-normal);
}

.navbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid var(--color-border-glass) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-theme="dark"] .navbar.scrolled {
  background: rgba(11, 15, 25, 0.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text-main);
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

/* Hide mobile drawer items on desktop */
.mobile-drawer-header,
.mobile-nav-cta-item {
  display: none !important;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-main);
  transition: color var(--transition-fast);
}

.navbar.scrolled .nav-links a {
  color: var(--color-text-main) !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ee2124 !important;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  vertical-align: middle;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn svg {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.btn-block {
  width: 100%;
  display: flex;
}

.btn-gold, .btn-red {
  background: var(--gradient-sunset);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(238, 33, 36, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-gold:hover, .btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(238, 33, 36, 0.45);
}

.btn-outline {
  border: 1.5px solid var(--color-red);
  color: var(--color-red);
  background: rgba(238, 33, 36, 0.05);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-outline:hover {
  background: var(--gradient-sunset);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(238, 33, 36, 0.35);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10.5rem 0 6rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.1);
  transform: scale(1.05);
  animation: heroPulse 20s infinite alternate linear;
}

@keyframes heroPulse {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

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

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.25;
  margin: 1.25rem 0;
  color: #ffffff !important;
}

.hero-title .text-gradient {
  display: block;
  margin-top: 0.15rem;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
  line-height: 1.25;
  background: linear-gradient(135deg, #ffffff 0%, #ff6b6b 40%, #ee2124 75%, #f59e0b 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1 !important;
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  font-weight: 300;
}

.hero .badge {
  color: #ffe4e6 !important;
  background: linear-gradient(135deg, rgba(238, 33, 36, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

/* Interactive Search / Trip Configurator Bar */
.search-box {
  background: var(--color-searchbox-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  margin-top: 2rem;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.search-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  border-bottom: 1px solid var(--color-border-glass);
  padding-bottom: 1.15rem;
  margin-bottom: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 860px) {
  .search-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .search-tabs {
    grid-template-columns: 1fr;
  }
}

.tab-btn {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

html[data-theme="dark"] .tab-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

.tab-btn:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  transform: translateY(-1px);
}

.tab-btn.active {
  background: var(--gradient-sunset) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 15px rgba(238, 33, 36, 0.35);
}

@media (max-width: 768px) {
  .search-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .tab-btn {
    white-space: normal;
    font-size: 0.8rem;
    padding: 0.55rem 0.5rem;
  }
}

.search-fields {
  display: grid;
  grid-template-columns: 1.5fr 1fr minmax(240px, auto);
  gap: 1rem;
  align-items: stretch;
  width: 100%;
}

.field-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
  background: var(--color-bg-glass);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-glass);
  min-height: 52px;
  box-sizing: border-box;
}

.field-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-red);
  font-weight: 700;
  white-space: nowrap;
}

.field-group select,
.field-group input {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--color-text-main);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
}

.field-group select option {
  background-color: #ffffff;
  color: #0f172a;
  padding: 0.5rem 0.75rem;
}

html[data-theme="dark"] .field-group select option {
  background-color: #0f172a !important;
  color: #f8fafc !important;
}

html[data-theme="dark"] .field-group select option:checked {
  background-color: #1e293b !important;
  color: var(--color-gold) !important;
}

.search-submit-btn {
  height: 100%;
  min-height: 52px;
  width: 100%;
  min-width: 240px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  margin-top: 0;
  padding: 0.75rem 1.4rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  letter-spacing: 0.01em;
  box-sizing: border-box;
}

@media (max-width: 860px) {
  .search-fields {
    grid-template-columns: 1fr 1fr;
  }
  .search-submit-btn {
    grid-column: 1 / -1;
    min-width: 100%;
  }
}

@media (max-width: 580px) {
  .search-fields {
    grid-template-columns: 1fr;
  }
}

/* Stats Strip */
.stats-strip {
  border-y: 1px solid var(--color-border-glass);
  background: var(--color-bg-card);
  padding: 3rem 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-normal);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Concierge Advantage Section */
.concierge-section {
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin: 0.75rem 0;
  color: var(--color-text-main);
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

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

.concierge-card {
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-glass);
}

.concierge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-red), transparent);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(238, 33, 36, 0.18);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.concierge-card h3 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem 0;
  color: var(--color-text-main);
}

.concierge-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Destinations Section (1 + 4 + 4 Layout) */
.destinations-filter {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 2.5rem auto;
}

.dest-filter-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.dest-filter-all-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.dest-filter-all-btn {
  width: 50%;
  max-width: 380px;
  min-width: 200px;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.filter-btn.active.dest-filter-all-btn:first-child {
  width: 50%;
}

.dest-filter-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  width: 100%;
}

.filter-btn {
  width: 100%;
  height: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: #334155;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: all var(--transition-fast);
  cursor: pointer;
  box-sizing: border-box;
}

@media (max-width: 960px) {
  .dest-filter-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .dest-filter-all-btn {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .dest-filter-grid-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }
  .filter-btn {
    padding: 0.65rem 0.45rem;
    font-size: 0.82rem;
    min-height: 44px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
}

html[data-theme="dark"] .filter-btn {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  box-shadow: none;
}

.filter-btn:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--gradient-sunset) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 16px rgba(238, 33, 36, 0.35);
}

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

@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.dest-card,
a.dest-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-glass);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.dest-card:hover,
a.dest-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
}

a.dest-card:hover .dest-content h3 {
  color: #ee2124;
}

a.dest-card:hover .btn-outline {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.dest-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

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

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

.dest-badges-header {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  z-index: 4;
  pointer-events: none;
}

.dest-badges-header .dest-badge,
.dest-badges-header .dest-tag {
  position: static;
  pointer-events: auto;
  margin: 0;
  max-width: calc(50% - 0.25rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 0;
}

.dest-badges-header .dest-badge-occasion {
  position: static;
  pointer-events: auto;
  margin: 0 0 0 auto;
  max-width: calc(50% - 0.25rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 0;
}

.dest-tag,
.dest-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(11, 15, 25, 0.84);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.28rem 0.72rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 4;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(50% - 0.35rem);
  display: inline-block;
}

.dest-badge-occasion {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(11, 15, 25, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.24rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: #fde68a;
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  z-index: 4;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(50% - 0.35rem);
}

.dest-card:hover .dest-badge-occasion {
  border-color: rgba(245, 158, 11, 0.65);
  color: #ffffff;
  background: rgba(11, 15, 25, 0.92);
}

.luxury-crew-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.50) 0%, rgba(212, 175, 55, 0.60) 50%, rgba(170, 124, 17, 0.50) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-top: 1.5px solid rgba(212, 175, 55, 0.85);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.35rem 0.5rem;
  z-index: 5;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.dest-img-wrap.has-luxury-stripe .dest-price {
  bottom: 2.2rem;
}

.dest-price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--gradient-sunset);
  color: #ffffff;
  font-weight: 700;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  box-shadow: 0 6px 18px rgba(238, 33, 36, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.dest-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--color-text-main);
}

.dest-content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.pkg-amenities-snippet {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  margin-bottom: 0.85rem;
}

.dest-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border-glass);
  margin-top: auto;
}

.dest-footer .dest-days {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--color-text-muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dest-card-cta,
.service-card-action .btn,
.service-card-action a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  background: var(--gradient-sunset) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.86rem !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: var(--radius-full) !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 14px rgba(238, 33, 36, 0.28) !important;
  border: none !important;
  transition: all var(--transition-fast) !important;
  line-height: 1.25 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

.dest-card-cta:hover,
a.dest-card:hover .dest-card-cta,
.service-card:hover .service-card-action .btn,
.service-card:hover .service-card-action a,
.service-card-action .btn:hover,
.service-card-action a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(238, 33, 36, 0.45) !important;
  color: #ffffff !important;
}

/* Blog Cards Uniform Styling */
.blog-card {
  height: 100%;
}

.blog-card-title {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.blog-card-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.2em;
}

.blog-card-author {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 145px;
}

.blog-read-btn {
  white-space: nowrap !important;
  flex-shrink: 0;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0.35rem 1rem !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  border-radius: var(--radius-full) !important;
  line-height: 1;
}

/* VIP Charters Portal */
.vip-section {
  background: var(--color-bg-glass);
  border-y: 1px solid var(--color-border-glass);
  transition: background-color var(--transition-normal);
}

html[data-theme="light"] .vip-section {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: #cbd5e1;
}

html[data-theme="dark"] .vip-section {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 15, 25, 1) 100%);
}

.vip-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vip-text h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  margin: 1rem 0;
  color: var(--color-text-main);
}

.vip-text p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.vip-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.vip-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-main);
}

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

.vip-gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-glass);
}

.vip-gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 960px) {
  .vip-banner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vip-text h2 {
    font-size: clamp(1.6rem, 5vw, 2.1rem);
    line-height: 1.25;
    margin: 0.75rem 0 1rem 0;
  }
  .vip-text p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }
  .vip-features {
    gap: 0.85rem;
    margin-bottom: 1.75rem;
  }
  .vip-feat-item {
    font-size: 0.88rem;
  }
  .vip-gallery {
    width: 100%;
    margin-top: 0.5rem;
  }
  .vip-gallery img {
    height: 250px;
    width: 100%;
    object-fit: cover;
  }
}

/* Reviews / TrustIndex Carousel */
.reviews-section {
  position: relative;
}

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

.reviews-grid.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.reviews-grid.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
  .reviews-grid.columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .reviews-grid.columns-3,
  .reviews-grid.columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .reviews-grid.columns-3,
  .reviews-grid.columns-4 {
    grid-template-columns: 1fr;
  }
}

.review-card {
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
  text-align: left;
}

.google-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: transparent;
  user-select: none;
}

.google-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.avatar-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.author-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
}

.stars {
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.review-text {
  color: var(--color-text-muted);
  font-size: 0.925rem;
  font-style: italic;
  line-height: 1.6;
}

.trust-badge-footer {
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-dim);
}

.reviews-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 3rem;
  text-align: center;
}

.text-center {
  text-align: center !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

/* Footer Dual Contact Hub */
.footer {
  background: var(--color-footer-bg);
  border-top: 1px solid var(--color-border-glass);
  color: #f8fafc;
  padding: 5rem 0 2rem 0;
  transition: background-color var(--transition-normal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  margin-bottom: 4rem;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
}

.footer-about p {
  color: #94a3b8;
  font-size: 0.925rem;
  margin: 1.25rem 0 0.85rem 0;
}

.footer-social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-social-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 16px rgba(238, 33, 36, 0.35);
}

.office-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.35rem;
  border-radius: var(--radius-md);
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.office-box h4 {
  color: var(--color-gold);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.office-box p {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0.25rem 0;
}

.office-box a {
  color: inherit;
  transition: color var(--transition-fast);
}

.office-box a:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

.office-box small {
  display: block;
  line-height: 1.55;
  margin-top: 0.25rem;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-red);
}

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

.footer-bottom a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

/* Modal Styling */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--color-bg-card);
  color: var(--color-text-main);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 650px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.modal-backdrop.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--color-text-muted);
  font-size: 1.5rem;
}

.modal-close:hover {
  color: var(--color-red);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--color-text-muted);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-sm);
  color: var(--color-text-main);
  font-family: inherit;
  font-size: 0.95rem;
}

select.form-control,
select {
  cursor: pointer;
}

select option,
.form-control option {
  background-color: #ffffff;
  color: #0f172a;
  padding: 0.5rem 0.75rem;
}

html[data-theme="dark"] select option,
html[data-theme="dark"] .form-control option,
html[data-theme="dark"] select optgroup,
html[data-theme="dark"] select {
  background-color: #0f172a !important;
  color: #f8fafc !important;
  color-scheme: dark !important;
}

html[data-theme="dark"] select option:checked {
  background-color: #1e293b !important;
  color: var(--color-gold) !important;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
}

/* Dedicated Subpages Layouts */
.filter-controls-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  align-items: flex-end;
}

.filter-controls-grid .filter-group {
  flex: 1 1 180px;
  min-width: 160px;
}

.filter-controls-grid .filter-group:last-child {
  flex: 0 0 auto;
  margin-left: auto;
}

#resetFiltersBtn {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid #94a3b8;
  color: var(--color-text-main);
  background: var(--color-bg-card);
  transition: all var(--transition-fast);
  cursor: pointer;
}

html[data-theme="dark"] #resetFiltersBtn {
  border: 1.5px solid #475569;
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
}

#resetFiltersBtn:hover,
html[data-theme="dark"] #resetFiltersBtn:hover {
  border-color: var(--color-primary);
  color: #ffffff;
  background: var(--gradient-sunset);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(238, 33, 36, 0.3);
}

/* Pagination Styling */
.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--color-bg-card);
  border: 1.5px solid var(--border-color);
  color: var(--color-text-main);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

html[data-theme="dark"] .pagination-btn:not(.active) {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
}

.pagination-btn:hover:not(:disabled):not(.active) {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.1);
}

.pagination-btn.active,
html[data-theme="dark"] .pagination-btn.active,
html[data-theme="light"] .pagination-btn.active {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
  color: #0b0f19 !important;
  border-color: var(--color-gold) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.45) !important;
  cursor: default;
}

.pagination-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none !important;
  border-color: var(--border-color) !important;
}

.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 42px;
  color: var(--color-text-muted);
  font-weight: 700;
  user-select: none;
}

.pagination-info {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.category-seo-banner {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-glass);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.category-seo-banner h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}

.category-seo-banner p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.category-seo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-seo-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(238, 33, 36, 0.08);
  color: var(--color-red);
  border: 1px solid rgba(238, 33, 36, 0.2);
}

html[data-theme="light"] .category-seo-banner {
  background: #ffffff;
  border-color: #cbd5e1;
  border-left-color: #ee2124;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .category-seo-banner p {
  color: #334155;
}

html[data-theme="light"] .category-seo-badge {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #fecaca;
}

/* ==========================================================================
   Yacht Rentals Experience Enhancements (Trust Ribbon, Charter Types, 3 Steps)
   ========================================================================== */

/* 1. Aviation & Yacht Trust Ribbon (4 Standalone Luxury Tiles - Exactly 165px Height) */
.aviation-trust-grid,
.yacht-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.75rem;
  margin-top: 0.5rem;
}

.aviation-trust-item,
.yacht-trust-item {
  height: 165px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Dark Theme Default */
  background: linear-gradient(160deg, rgba(23, 32, 54, 0.85) 0%, rgba(12, 17, 30, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.aviation-trust-item::before,
.yacht-trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ee2124 0%, #f97316 100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.aviation-trust-item:hover,
.yacht-trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 33, 36, 0.45);
  box-shadow: 0 14px 30px -4px rgba(0, 0, 0, 0.45), 0 0 20px rgba(238, 33, 36, 0.18);
}

.aviation-trust-item:hover::before,
.yacht-trust-item:hover::before {
  opacity: 1;
  height: 3.5px;
}

.aviation-trust-header,
.yacht-trust-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aviation-trust-icon-box,
.yacht-trust-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
  background: rgba(238, 33, 36, 0.12);
  border: 1px solid rgba(238, 33, 36, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.aviation-trust-item:hover .aviation-trust-icon-box,
.yacht-trust-item:hover .yacht-trust-icon-box {
  background: linear-gradient(135deg, #ee2124 0%, #f97316 100%);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(238, 33, 36, 0.35);
}

.aviation-trust-num,
.yacht-trust-num {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  user-select: none;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.aviation-trust-item:hover .aviation-trust-num,
.yacht-trust-item:hover .yacht-trust-num {
  color: rgba(238, 33, 36, 0.4);
}

.aviation-trust-body,
.yacht-trust-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.aviation-trust-title,
.yacht-trust-title {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.aviation-trust-item:hover .aviation-trust-title,
.yacht-trust-item:hover .yacht-trust-title {
  color: #f87171;
}

.aviation-trust-desc,
.yacht-trust-desc {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.48;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Light Theme Overrides (Crisp White & Ruby Coral Brand) */
html[data-theme="light"] .aviation-trust-item,
html[data-theme="light"] .yacht-trust-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
}

html[data-theme="light"] .aviation-trust-item:hover,
html[data-theme="light"] .yacht-trust-item:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 14px 28px -4px rgba(238, 33, 36, 0.12), 0 4px 10px rgba(15, 23, 42, 0.05);
}

html[data-theme="light"] .aviation-trust-icon-box,
html[data-theme="light"] .yacht-trust-icon-box {
  background: linear-gradient(135deg, rgba(238, 33, 36, 0.08) 0%, rgba(249, 115, 22, 0.05) 100%);
  border: 1px solid rgba(238, 33, 36, 0.22);
  color: #ee2124;
  box-shadow: 0 2px 8px rgba(238, 33, 36, 0.1);
}

html[data-theme="light"] .aviation-trust-item:hover .aviation-trust-icon-box,
html[data-theme="light"] .yacht-trust-item:hover .yacht-trust-icon-box {
  background: linear-gradient(135deg, #ee2124 0%, #f97316 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(238, 33, 36, 0.35);
}

html[data-theme="light"] .aviation-trust-num,
html[data-theme="light"] .yacht-trust-num {
  color: #e2e8f0;
}

html[data-theme="light"] .aviation-trust-item:hover .aviation-trust-num,
html[data-theme="light"] .yacht-trust-item:hover .yacht-trust-num {
  color: #cbd5e1;
}

html[data-theme="light"] .aviation-trust-title,
html[data-theme="light"] .yacht-trust-title {
  color: #0f172a;
}

html[data-theme="light"] .aviation-trust-item:hover .aviation-trust-title,
html[data-theme="light"] .yacht-trust-item:hover .yacht-trust-title {
  color: #ee2124;
}

html[data-theme="light"] .aviation-trust-desc,
html[data-theme="light"] .yacht-trust-desc {
  color: #64748b;
}

/* 1b. 5 Aviation Services Grid (Under Pagination) */
.aviation-services-section {
  margin: 3.5rem 0 2.5rem 0;
}

.aviation-services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem auto;
}

.aviation-services-header h3 {
  font-size: 1.75rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.aviation-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.aviation-services-grid .aviation-service-card:nth-child(1),
.aviation-services-grid .aviation-service-card:nth-child(2),
.aviation-services-grid .aviation-service-card:nth-child(3) {
  grid-column: span 2;
}

.aviation-services-grid .aviation-service-card:nth-child(4),
.aviation-services-grid .aviation-service-card:nth-child(5) {
  grid-column: span 3;
}

.aviation-service-card {
  /* Inherits charter-type-card styling */
}

/* 2. Charter Types Section (4 Columns) */
.charter-types-section {
  margin: 3.5rem 0 2.5rem 0;
}

.charter-types-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem auto;
}

.charter-types-header h3 {
  font-size: 1.75rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.charter-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.charter-type-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.charter-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ee2124 0%, #f97316 100%);
  opacity: 0.85;
}

.charter-type-card:hover {
  border-color: rgba(238, 33, 36, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -4px rgba(238, 33, 36, 0.12), 0 4px 10px rgba(15, 23, 42, 0.05);
}

.charter-type-card:hover::before {
  opacity: 1;
  height: 3.5px;
}

.charter-type-icon {
  font-size: 2rem;
  margin-bottom: 0.85rem;
  display: inline-block;
}

.charter-type-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.6rem;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.charter-type-card:hover .charter-type-title {
  color: #ee2124;
}

.charter-type-desc {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.charter-type-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
}

.charter-type-pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  background: rgba(238, 33, 36, 0.08);
  color: #f87171;
  border: 1px solid rgba(238, 33, 36, 0.25);
}

html[data-theme="light"] .charter-type-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
}

html[data-theme="light"] .charter-type-card:hover {
  border-color: rgba(238, 33, 36, 0.45);
  box-shadow: 0 14px 28px -4px rgba(238, 33, 36, 0.12), 0 4px 10px rgba(15, 23, 42, 0.05);
}

html[data-theme="light"] .charter-type-pill {
  background: rgba(238, 33, 36, 0.06);
  color: #ee2124;
  border-color: rgba(238, 33, 36, 0.2);
}

/* 3. 3-Step Process Flow (Yachts & Flights) */
.flight-steps-flow,
.yacht-steps-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border-glass);
}

.flight-step-item,
.yacht-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.flight-step-num,
.yacht-step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(238, 33, 36, 0.12) 0%, rgba(249, 115, 22, 0.08) 100%);
  border: 1px solid rgba(238, 33, 36, 0.35);
  color: #ee2124;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(238, 33, 36, 0.15);
}

.flight-step-content strong,
.yacht-step-content strong {
  display: block;
  font-size: 0.98rem;
  color: var(--color-text-main);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.flight-step-content p,
.yacht-step-content p {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .aviation-trust-grid,
  .yacht-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .charter-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .aviation-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .aviation-services-grid .aviation-service-card:nth-child(1),
  .aviation-services-grid .aviation-service-card:nth-child(2),
  .aviation-services-grid .aviation-service-card:nth-child(3),
  .aviation-services-grid .aviation-service-card:nth-child(4) {
    grid-column: span 1;
  }
  .aviation-services-grid .aviation-service-card:nth-child(5) {
    grid-column: span 2;
  }
  .flight-steps-flow,
  .yacht-steps-flow {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .aviation-trust-grid,
  .yacht-trust-grid {
    grid-template-columns: 1fr;
  }
  .aviation-trust-item,
  .yacht-trust-item {
    height: auto;
    min-height: 155px;
  }
  .charter-types-grid {
    grid-template-columns: 1fr;
  }
  .aviation-services-grid {
    grid-template-columns: 1fr;
  }
  .aviation-services-grid .aviation-service-card {
    grid-column: span 1 !important;
  }
}

.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--color-gold);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  margin: 0.5rem 0;
  border: none;
}

.range-slider::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: transparent;
  border: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #334155;
  border: 2px solid #ffffff;
  cursor: pointer;
  margin-top: -6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease, background 0.15s ease;
}

.range-slider:hover::-webkit-slider-thumb,
.range-slider:active::-webkit-slider-thumb {
  transform: scale(1.15);
  background: var(--color-gold);
}

.range-slider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: transparent;
  border: none;
}

.range-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #334155;
  border: 2px solid #ffffff;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease, background 0.15s ease;
}

.range-slider:hover::-moz-range-thumb,
.range-slider:active::-moz-range-thumb {
  transform: scale(1.15);
  background: var(--color-gold);
}

.package-layout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

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

.sticky-card {
  position: sticky;
  top: 6rem;
}

.price-big {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
}

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

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(238, 33, 36, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-red);
  margin-bottom: 0.25rem;
}

.service-card-body {
  flex-grow: 1;
}

.service-card-action {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--color-border-glass);
}

/* Insurance Table Component */
.insurance-table-container {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-glass);
  box-shadow: var(--shadow-sm);
  background: var(--color-bg-card);
}

.insurance-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.insurance-table th {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-bottom: 2px solid var(--color-primary);
}

.insurance-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border-glass);
  vertical-align: top;
  color: var(--color-text-main);
  line-height: 1.55;
}

.insurance-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

html[data-theme="light"] .insurance-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.insurance-table tbody tr:hover {
  background: rgba(238, 33, 36, 0.04);
}

.insurance-limit-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(238, 33, 36, 0.1);
  color: var(--color-red);
  border: 1px solid rgba(238, 33, 36, 0.2);
  white-space: nowrap;
}

html[data-theme="light"] .insurance-limit-badge {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #fecaca;
}

.insurance-disclaimer-card {
  padding: 1.25rem 1.5rem !important;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-glass);
  border-left: 4px solid var(--color-primary) !important;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

html[data-theme="light"] .insurance-disclaimer-card {
  background: #f8fafc;
  border-color: #cbd5e1;
  border-left-color: #ee2124 !important;
  color: #334155;
}

.insurance-contact-bar {
  padding: 1.25rem 1.5rem !important;
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  border: 1px solid var(--color-border-glass);
}

/* Aviation & Flight Routes Table */
.aviation-table-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-glass);
  box-shadow: var(--shadow-sm);
  background: var(--color-bg-card);
  overflow: hidden;
}

.aviation-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.94rem;
}

.aviation-table th {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-bottom: 2px solid var(--color-primary);
}

.aviation-table td {
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--color-border-glass);
  color: var(--color-text-main);
  vertical-align: middle;
}

.aviation-table tbody tr {
  transition: background-color var(--transition-fast);
}

.aviation-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.015);
}

html[data-theme="dark"] .aviation-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.015);
}

.aviation-table tbody tr:hover {
  background: rgba(238, 33, 36, 0.04);
}

html[data-theme="dark"] .aviation-table tbody tr:hover {
  background: rgba(238, 33, 36, 0.08);
}

.flight-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  background: rgba(217, 119, 6, 0.12);
  color: var(--color-gold);
  border: 1px solid rgba(217, 119, 6, 0.25);
  white-space: nowrap;
}

html[data-theme="dark"] .flight-time-badge {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.35);
}

.vip-boarding-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Mobile Responsive Transformations for Complex Tables (Insurance & Aviation)
   ========================================================================== */
@media (max-width: 768px) {
  /* 1. Insurance Table -> Luxury Mobile Coverage Cards */
  .insurance-table-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .insurance-table,
  .insurance-table thead,
  .insurance-table tbody,
  .insurance-table th,
  .insurance-table td,
  .insurance-table tr {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .insurance-table thead {
    display: none !important;
  }

  .insurance-table tbody tr {
    margin-bottom: 1.25rem !important;
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--color-border-glass) !important;
    background: var(--color-bg-card) !important;
    padding: 1.25rem !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
  }

  html[data-theme="light"] .insurance-table tbody tr {
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06) !important;
  }

  .insurance-table td {
    padding: 0.35rem 0 !important;
    border-bottom: none !important;
  }

  .insurance-table td:nth-child(1) {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: var(--color-text-main) !important;
    padding-bottom: 0.65rem !important;
    margin-bottom: 0.65rem !important;
    border-bottom: 1px solid var(--color-border-glass) !important;
    line-height: 1.35 !important;
  }

  .insurance-table td:nth-child(2) {
    font-size: 0.88rem !important;
    color: var(--color-text-muted) !important;
    line-height: 1.55 !important;
    margin-bottom: 0.85rem !important;
  }

  .insurance-table td:nth-child(2) small {
    display: block !important;
    margin-top: 0.5rem !important;
    font-size: 0.8rem !important;
    color: var(--color-text-dim) !important;
    line-height: 1.45 !important;
  }

  .insurance-table td:nth-child(3) {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 0.65rem !important;
    border-top: 1px dashed var(--color-border-glass) !important;
    text-align: left !important;
  }

  .insurance-table td:nth-child(3)::before {
    content: "ΑΝΩΤΑΤΟ ΟΡΙΟ:";
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: var(--color-text-dim) !important;
    letter-spacing: 0.5px !important;
  }

  html[lang="en"] .insurance-table td:nth-child(3)::before {
    content: "MAX COVERAGE LIMIT:";
  }

  /* 2. Aviation Table -> Executive Flight Cards */
  .aviation-table-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .aviation-table,
  .aviation-table thead,
  .aviation-table tbody,
  .aviation-table th,
  .aviation-table td,
  .aviation-table tr {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .aviation-table thead {
    display: none !important;
  }

  .aviation-table tbody tr {
    margin-bottom: 1rem !important;
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--color-border-glass) !important;
    background: var(--color-bg-card) !important;
    padding: 1.15rem !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1) !important;
  }

  html[data-theme="light"] .aviation-table tbody tr {
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
  }

  .aviation-table td {
    padding: 0.4rem 0 !important;
    border-bottom: none !important;
  }

  .aviation-table td:nth-child(1) {
    font-size: 1.12rem !important;
    font-weight: 700 !important;
    color: var(--color-text-main) !important;
    padding-bottom: 0.6rem !important;
    margin-bottom: 0.5rem !important;
    border-bottom: 1px solid var(--color-border-glass) !important;
  }

  .aviation-table td:nth-child(2) {
    font-size: 0.88rem !important;
    color: var(--color-text-muted) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 0.4rem !important;
  }

  .aviation-table td:nth-child(2)::before {
    content: "Αεροσκάφος:";
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: var(--color-text-dim) !important;
  }

  .aviation-table td:nth-child(3) {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 0.4rem !important;
  }

  .aviation-table td:nth-child(3)::before {
    content: "Χρόνος Πτήσης:";
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: var(--color-text-dim) !important;
  }

  .aviation-table td:nth-child(4) {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 0.5rem !important;
    border-top: 1px dashed var(--color-border-glass) !important;
  }

  .aviation-table td:nth-child(4)::before {
    content: "VIP Boarding:";
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: var(--color-text-dim) !important;
  }

  html[lang="en"] .aviation-table td:nth-child(2)::before { content: "Aircraft Type:"; }
  html[lang="en"] .aviation-table td:nth-child(3)::before { content: "Flight Time:"; }
  html[lang="en"] .aviation-table td:nth-child(4)::before { content: "VIP Boarding:"; }
}

@media (max-width: 520px) {
  .pagination-container {
    gap: 0.35rem;
    margin-top: 1.5rem;
    margin-bottom: 2.25rem;
  }
  .pagination-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    font-size: 0.85rem;
  }
  .pagination-btn.nav-btn {
    padding: 0 0.65rem;
  }
  .pagination-text {
    display: none;
  }
}

.article-prose {
  line-height: 1.8;
  font-size: 1.05rem;
}

.article-prose h2, .article-prose h3 {
  font-family: var(--font-serif);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-main);
}

.article-prose p {
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

.article-prose ul {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

.article-prose li {
  margin-bottom: 0.5rem;
}

.office-hub-card {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.office-hub-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-hover);
}

/* Utilities */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.d-none { display: none !important; }
.d-block { display: block; }
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-start { align-items: flex-start; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 2rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }
.py-5 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-5 { margin-top: 2rem; margin-bottom: 2rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-600 { max-width: 600px; }
.max-w-700 { max-width: 700px; }
.max-w-900 { max-width: 900px; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-gold { color: var(--color-gold); }
.text-success { color: #10b981; }

/* ==========================================================================
   PACKAGE DETAIL LUXURY SUITE & SPLIT GALLERY SYSTEM
   ========================================================================= */

.package-header-clean {
  margin-bottom: 0.75rem;
}

.package-page-title {
  font-family: var(--font-serif);
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--color-text-main) !important;
  line-height: 1.2;
  margin: 0.25rem 0;
  letter-spacing: -0.01em;
}

.package-page-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted) !important;
  line-height: 1.45;
  margin: 0;
  font-weight: 400;
}

/* Hero Packages Section (Full Viewport Height above the fold) */
.hero-packages {
  height: calc(100vh - 190px);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.hero-packages .package-header-clean {
  flex-shrink: 0;
}

.hero-packages .package-gallery-card {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0 !important;
}

.hero-packages .package-gallery-grid {
  flex: 1;
  min-height: 0;
  height: 100%;
}

.hero-packages .gallery-main-view,
.hero-packages .gallery-thumbs-col {
  height: 100%;
  min-height: 0;
}

.hero-packages .gallery-info-strip {
  flex-shrink: 0;
}

.package-gallery-card {
  border: 1px solid var(--color-border-glass);
  padding: 1.5rem !important;
  margin-bottom: 2rem !important;
  position: relative;
  clear: both;
}

.package-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 0.75rem;
  height: 480px;
  min-height: 480px;
  box-sizing: border-box;
}

.gallery-main-view {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--color-border-glass);
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.4s ease;
  display: block;
}

.gallery-main-view:hover .gallery-main-img {
  transform: scale(1.02);
}

.gallery-main-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.gallery-thumbs-col {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 0.5rem;
  height: 100%;
  min-height: 0;
}

.gallery-thumb-item {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: rgba(0, 0, 0, 0.3);
}

.gallery-thumb-item:hover {
  border-color: var(--color-gold);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-thumb-item.active-thumb {
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 12px rgba(238, 33, 36, 0.45);
  transform: scale(1.02);
}

.gallery-thumb-index {
  position: absolute;
  bottom: 6px;
  right: 8px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  border-top: none !important;
}

@media (max-width: 1100px) and (min-width: 769px) {
  .gallery-info-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-sm);
  min-height: 72px;
  box-sizing: border-box;
}

.info-pill > div {
  min-width: 0;
  flex: 1;
}

.info-pill small {
  display: block;
  font-size: 0.7rem;
  line-height: 1.3;
  margin-bottom: 0.2rem;
  white-space: normal;
}

.info-pill strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--color-text-main);
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.info-pill-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.border-top {
  border-top: 1px solid var(--color-border-glass);
}

/* Package View Table Styles */
.package-view-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border-glass);
}

.package-view-table th {
  background: rgba(238, 33, 36, 0.1);
  color: var(--color-primary);
  font-weight: 700;
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border-glass);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.package-view-table td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--color-border-glass);
  color: var(--color-text-main);
}

.package-view-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Tier Cards (Mobile Luxury Option 1) */
.mobile-cards-view {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
}

.tier-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  margin-bottom: 0.85rem;
  transition: all var(--transition-fast);
}

html[data-theme="light"] .tier-card {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05) !important;
}

html[data-theme="dark"] .tier-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.tier-card-header {
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1.5px solid var(--color-border-glass);
}

.tier-item-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.35;
  margin: 0;
}

.tier-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tier-card-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-sm);
  box-sizing: border-box;
}

html[data-theme="light"] .tier-card-row {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.tier-card-row.highlight-price {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
}

html[data-theme="light"] .tier-card-row.highlight-price {
  background: #fffbeb;
  border-color: #fde68a;
}

.tier-row-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  line-height: 1.4;
  flex-shrink: 0;
  max-width: 42%;
}

html[data-theme="light"] .tier-row-label {
  color: #475569;
}

.tier-row-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.4;
  white-space: normal;
  word-break: break-word;
  text-align: right;
  flex: 1;
}

.tier-card-row.highlight-price .tier-row-value {
  color: var(--color-gold);
  font-size: 1.05rem;
  font-weight: 800;
  font-family: var(--font-display);
}

/* Stacked display when value is long */
.tier-card-row.is-stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.tier-card-row.is-stacked .tier-row-label {
  max-width: 100%;
}

.tier-card-row.is-stacked .tier-row-value {
  text-align: left;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-main);
}

@media (max-width: 768px) {
  .desktop-table-view {
    display: none !important;
  }
  .mobile-cards-view {
    display: flex !important;
  }
}

.leading-relaxed {
  line-height: 1.7;
}

/* Clean Amenities Checklist */
.amenities-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: var(--color-text-main);
  background: transparent;
}

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

.amenity-item .check-icon {
  color: #10b981;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

.exclusions-list .amenity-item .check-icon {
  color: #ef4444;
}

/* Package Overview Rich Editorial Typography */
.overview-narrative-paragraph {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--color-text-main, #e2e8f0);
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}

.overview-narrative-paragraph:first-of-type::first-letter {
  font-size: 2.2rem;
  float: left;
  line-height: 1;
  margin-right: 0.65rem;
  margin-top: 0.15rem;
  color: var(--color-gold, #fbbf24);
  font-family: var(--font-display, serif);
  font-weight: 700;
}

.overview-highlight-box {
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: var(--radius-md, 12px);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.overview-section-subtitle {
  color: #fbbf24;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: var(--font-display, serif);
  letter-spacing: 0.02em;
}

.overview-bullets-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.overview-bullets-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-main, #f1f5f9);
}

.bullet-gold-dot {
  color: #fbbf24;
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Itinerary Day Cards */
.itinerary-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.35rem;
  margin-bottom: 0.85rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.itinerary-step:hover {
  border-color: rgba(238, 33, 36, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.itinerary-day-badge {
  background: linear-gradient(135deg, #ee2124 0%, #dc2626 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  height: fit-content;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(238, 33, 36, 0.3);
}

.itinerary-content h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.35rem;
}

.itinerary-content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.booking-price-strip {
  background: linear-gradient(135deg, rgba(238, 33, 36, 0.08) 0%, rgba(217, 119, 6, 0.08) 100%);
  border: 1px solid rgba(238, 33, 36, 0.2);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
}

.price-big {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0.25rem 0;
}

.btn-booking-submit {
  background: linear-gradient(135deg, #ee2124 0%, #dc2626 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  border: none;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(238, 33, 36, 0.3);
  transition: all 0.2s ease;
  display: block;
}

.btn-booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 33, 36, 0.4);
}

/* ==========================================================================
   LIGHT THEME ACCESSIBILITY & GOOGLE CONTRAST GUIDELINES (WCAG AAA)
   ========================================================================= */

html[data-theme="light"] body,
html[data-theme="light"] .package-view-section,
html[data-theme="light"] .section-padding {
  background: #f1f5f9 !important;
  color: #0f172a !important;
}

/* Crisp Visible Tiles & Glass Panels */
html[data-theme="light"] .glass-panel,
html[data-theme="light"] .package-gallery-card,
html[data-theme="light"] .dest-card,
html[data-theme="light"] .package-card,
html[data-theme="light"] .service-card,
html[data-theme="light"] .blog-card,
html[data-theme="light"] .office-hub-card,
html[data-theme="light"] .review-card,
html[data-theme="light"] .concierge-card,
html[data-theme="light"] .feature-card,
html[data-theme="light"] .filter-box {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04) !important;
}

html[data-theme="light"] .glass-panel:hover,
html[data-theme="light"] .package-gallery-card:hover,
html[data-theme="light"] .dest-card:hover,
html[data-theme="light"] .package-card:hover,
html[data-theme="light"] .service-card:hover,
html[data-theme="light"] .blog-card:hover,
html[data-theme="light"] .review-card:hover,
html[data-theme="light"] .office-hub-card:hover {
  border-color: #94a3b8 !important;
  box-shadow: 0 10px 25px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.05) !important;
}

/* Badges & Rating Accents (High Contrast) */
html[data-theme="light"] .badge {
  background: #fef2f2 !important;
  color: #991b1b !important;
  border: 1.5px solid #f87171 !important;
  font-weight: 700 !important;
}

html[data-theme="light"] .trust-pill {
  color: #b45309 !important;
  font-weight: 700 !important;
}

/* Gallery Thumbnails */
html[data-theme="light"] .gallery-thumb-item {
  border: 2px solid #cbd5e1;
  background: #e2e8f0;
}

html[data-theme="light"] .gallery-thumb-item:hover {
  border-color: #b45309;
}

html[data-theme="light"] .gallery-thumb-item.active-thumb {
  border-color: #dc2626;
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.35);
}

/* Quick Info Badges Strip */
html[data-theme="light"] .info-pill {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04) !important;
}

html[data-theme="light"] .info-pill small {
  color: #475569 !important;
  font-weight: 700 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.04em !important;
}

html[data-theme="light"] .info-pill strong {
  color: #0f172a !important;
  font-weight: 700 !important;
}

html[data-theme="light"] .info-pill .text-gold {
  color: #b91c1c !important;
  font-weight: 800 !important;
}

/* Amenities & Exclusions Checklist */
html[data-theme="light"] .amenity-item {
  border-bottom: 1px dashed #cbd5e1 !important;
  color: #0f172a !important;
  font-weight: 500 !important;
}

html[data-theme="light"] .amenity-item .check-icon {
  color: #047857 !important;
  font-weight: 800 !important;
}

html[data-theme="light"] .exclusions-list .amenity-item .check-icon {
  color: #b91c1c !important;
  font-weight: 800 !important;
}

html[data-theme="light"] #pkgGeneralInfoContent {
  color: #1e293b !important;
  font-size: 0.925rem !important;
}

/* Itinerary Day Cards (Executive Definition) */
html[data-theme="light"] .itinerary-step {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  border-left: 4px solid #dc2626 !important;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04) !important;
}

html[data-theme="light"] .itinerary-step:hover {
  border-color: #94a3b8 !important;
  border-left-color: #b91c1c !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06) !important;
}

html[data-theme="light"] .itinerary-step h4 {
  color: #0f172a !important;
  font-weight: 700 !important;
}

html[data-theme="light"] .itinerary-step p {
  color: #334155 !important;
  line-height: 1.65 !important;
}

html[data-theme="light"] .itinerary-day-badge {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  color: #ffffff !important;
}

/* Executive Pricing Table */
html[data-theme="light"] .package-view-table {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04) !important;
}

html[data-theme="light"] .package-view-table th {
  background: #0f172a !important;
  color: #ffffff !important;
  border-bottom: 2px solid #dc2626 !important;
  font-weight: 700 !important;
}

html[data-theme="light"] .package-view-table td {
  border-bottom: 1px solid #e2e8f0 !important;
  color: #0f172a !important;
  font-weight: 500 !important;
}

html[data-theme="light"] .package-view-table tbody tr:nth-child(even) {
  background: #f8fafc !important;
}

html[data-theme="light"] .package-view-table tbody tr:hover {
  background: rgba(220, 38, 38, 0.05) !important;
}

/* Booking Form (Solid High Contrast Inputs) */
html[data-theme="light"] .package-sidebar-booking {
  color: #0f172a !important;
}

html[data-theme="light"] .package-sidebar-booking .title-serif {
  color: #0f172a !important;
}

html[data-theme="light"] .package-sidebar-booking p.text-muted {
  color: #475569 !important;
}

html[data-theme="light"] .booking-price-strip {
  background: #f8fafc !important;
  border: 1.5px solid #cbd5e1 !important;
}

html[data-theme="light"] .booking-price-strip span {
  color: #475569 !important;
  font-weight: 700 !important;
}

html[data-theme="light"] .price-big {
  color: #b91c1c !important;
  font-weight: 800 !important;
}

html[data-theme="light"] .booking-price-strip small {
  color: #475569 !important;
  font-weight: 600 !important;
}

html[data-theme="light"] .package-sidebar-booking label {
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
}

html[data-theme="light"] .package-sidebar-booking .form-control,
html[data-theme="light"] .package-sidebar-booking input,
html[data-theme="light"] .package-sidebar-booking select,
html[data-theme="light"] .package-sidebar-booking textarea,
html[data-theme="light"] .form-control,
html[data-theme="light"] input.form-control,
html[data-theme="light"] textarea.form-control {
  background: #ffffff !important;
  border: 1.5px solid #94a3b8 !important;
  color: #0f172a !important;
  font-weight: 500 !important;
}

html[data-theme="light"] .package-sidebar-booking .form-control::placeholder,
html[data-theme="light"] .form-control::placeholder {
  color: #64748b !important;
}

html[data-theme="light"] .package-sidebar-booking .form-control:focus,
html[data-theme="light"] .package-sidebar-booking input:focus,
html[data-theme="light"] .package-sidebar-booking select:focus,
html[data-theme="light"] .package-sidebar-booking textarea:focus,
html[data-theme="light"] .form-control:focus {
  background: #ffffff !important;
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}

html[data-theme="light"] .btn-booking-submit {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

html[data-theme="light"] .trust-guarantee small {
  color: #334155 !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   MOBILE RESPONSIVE ARCHITECTURE & CLEAN VIEWPORTS
   ========================================================================= */

/* Global Mobile Fixes */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Mobile Hamburger Button */
.mobile-nav-toggle {
  display: none;
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border-glass);
  border-radius: var(--radius-sm);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  transition: all var(--transition-fast);
  z-index: 1260 !important;
  margin-left: auto;
  position: relative;
  pointer-events: auto !important;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

html[data-theme="light"] .mobile-nav-toggle {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08) !important;
}

html[data-theme="dark"] .mobile-nav-toggle {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
}

.mobile-nav-toggle .hamburger-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #0f172a;
  border-radius: 2px;
  pointer-events: none !important;
  transition: all var(--transition-fast);
}

html[data-theme="light"] .mobile-nav-toggle .hamburger-bar,
html[data-theme="light"] .header-wrapper.header-transparent:not(.scrolled) .mobile-nav-toggle .hamburger-bar {
  background: #0f172a !important;
}

html[data-theme="dark"] .mobile-nav-toggle .hamburger-bar,
html[data-theme="dark"] .header-wrapper.header-transparent:not(.scrolled) .mobile-nav-toggle .hamburger-bar {
  background: #ffffff !important;
}

.mobile-nav-toggle:hover {
  border-color: var(--color-primary) !important;
}

.mobile-nav-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--color-primary) !important;
}

.mobile-nav-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--color-primary) !important;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

.mobile-drawer-header {
  display: none;
  width: 100%;
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
  border-bottom: none;
}

/* Breakpoint: Tablets & Mobile (< 992px) */
@media (max-width: 992px) {
  .mobile-drawer-header {
    display: block !important;
  }

  .navbar-inner {
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .logo-img {
    height: 40px;
  }

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

  .nav-cta {
    display: none !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 88vw;
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg-card);
    border-left: 1px solid var(--color-border-glass);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
    gap: 0.5rem;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.35);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1250 !important;
    overflow-y: auto;
    pointer-events: auto !important;
  }

  html[data-theme="light"] .nav-links {
    background: #ffffff !important;
    border-left: 1px solid #e2e8f0 !important;
    box-shadow: -10px 0 35px rgba(15, 23, 42, 0.18) !important;
  }

  html[data-theme="dark"] .nav-links {
    background: #0f172a !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.6) !important;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .mobile-drawer-header {
    display: flex !important;
  }

  .mobile-nav-cta-item {
    display: block !important;
  }

  .mobile-drawer-header + li {
    margin-top: auto;
  }

  .nav-links a {
    font-size: 1.08rem;
    font-weight: 600;
    width: 100%;
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid var(--color-border-glass);
    color: var(--color-text-main) !important;
    display: block;
    transition: all var(--transition-fast);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #ee2124 !important;
    padding-left: 0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  /* Single Package Mobile Viewport */
  .hero-packages {
    height: auto !important;
    min-height: auto !important;
    display: block !important;
    margin-bottom: 1.75rem !important;
  }

  .package-page-title {
    font-size: 1.65rem !important;
    line-height: 1.3 !important;
  }

  .package-page-subtitle {
    font-size: 0.9rem !important;
  }

  .package-gallery-card {
    padding: 1rem !important;
    margin-bottom: 1.5rem !important;
    height: auto !important;
  }

  .package-gallery-grid {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
    gap: 0.65rem !important;
  }

  .gallery-main-view {
    height: 260px !important;
    min-height: 260px !important;
    width: 100% !important;
    border-radius: var(--radius-sm) !important;
  }

  .gallery-thumbs-col {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: 1fr !important;
    height: 75px !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }

  .gallery-thumb-item {
    height: 75px !important;
  }

  .gallery-info-strip {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
    margin-top: 1rem !important;
  }

  .info-pill {
    padding: 0.75rem 1rem !important;
  }

  .package-layout-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* Breakpoint: Small Mobile Screens (< 768px) */
@media (max-width: 768px) {
  .top-bar {
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
  }

  .top-bar-left {
    display: none !important;
  }

  .top-bar-inner {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .top-bar-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: nowrap;
  }

  .top-phone-link {
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .currency-select,
  .lang-switch-btn,
  .theme-toggle-btn {
    padding: 0.25rem 0.55rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    flex-shrink: 0;
  }

  #themeToggleText {
    display: none !important;
  }

  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .hero {
    padding-top: 10rem !important;
    min-height: auto !important;
    padding-bottom: 4.5rem !important;
  }

  .hero-title {
    font-size: 2.15rem !important;
    line-height: 1.25;
  }

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

  .section-padding {
    padding: 3.5rem 0;
  }

  .cards-grid {
    grid-template-columns: 1fr !important;
  }

  .filter-controls-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .filter-controls-grid .filter-group {
    width: 100%;
    flex: 1 1 100%;
  }

  .filter-controls-grid .filter-group:last-child {
    margin-left: 0;
    width: 100%;
  }

  .filter-controls-grid #resetFiltersBtn {
    width: 100%;
  }

  .category-seo-banner {
    padding: 1.25rem 1.2rem;
  }

  .category-seo-banner h2 {
    font-size: 1.25rem;
  }

  /* Table Horizontal Scrolling on Mobile */
  .table-responsive,
  .custom-html-table-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
  }

  .desktop-table-view {
    display: none !important;
  }

  .mobile-cards-view {
    display: flex !important;
  }

  .package-layout-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .package-main-info,
  .package-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .glass-panel {
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .package-view-table,
  .custom-html-table-wrapper table {
    width: 100% !important;
    min-width: 500px !important;
    border-collapse: collapse;
  }

  .package-view-table th,
  .custom-html-table-wrapper th {
    padding: 0.75rem 0.85rem !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
  }

  .package-view-table td,
  .custom-html-table-wrapper td {
    padding: 0.75rem 0.85rem !important;
    font-size: 0.82rem !important;
    white-space: normal !important;
    word-break: break-word !important;
    min-width: 80px;
    line-height: 1.4;
  }

  /* Itinerary Steps Mobile Layout */
  .itinerary-step {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
    padding: 1.1rem !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .itinerary-content {
    width: 100% !important;
    max-width: 100% !important;
  }

  .itinerary-day-badge {
    margin-bottom: 0.25rem !important;
    font-size: 0.72rem !important;
    padding: 0.3rem 0.75rem !important;
  }

  .itinerary-content h4 {
    font-size: 1rem !important;
    word-break: break-word;
  }

  .itinerary-content p {
    font-size: 0.88rem !important;
    word-break: break-word;
  }

  .package-sidebar-booking {
    padding: 1.5rem 1.25rem !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Breakpoint: Extra Small Mobile (< 640px) */
@media (max-width: 640px) {
  .footer {
    padding: 3.5rem 0 1.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem;
    margin-bottom: 2rem;
  }

  .office-box {
    padding: 1.2rem;
    width: 100%;
  }

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

  .gallery-main-view { height: 230px !important; min-height: 230px !important; }
  .gallery-thumbs-col { grid-template-columns: repeat(4, 1fr) !important; height: 65px !important; }
  .gallery-thumb-item { height: 65px !important; }
}

/* ==========================================================================
   EDITORIAL 2-COLUMN BLOG POST & SMART SIDEBAR ARCHITECTURE
   ========================================================================= */

.article-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 2.5rem;
  align-items: flex-start;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .article-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.article-main-col {
  min-width: 0;
  width: 100%;
}

.article-main-card {
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-glass);
  padding: 2.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

@media (max-width: 768px) {
  .article-main-card {
    padding: 1.5rem 1.25rem !important;
  }
}

/* Article Prose Typography */
.article-prose {
  color: var(--color-text-main);
  font-size: 1.08rem;
  line-height: 1.85;
}

.article-prose h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.35;
  border-left: 3px solid var(--color-primary);
  padding-left: 0.85rem;
}

.article-prose h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.article-prose p {
  margin-bottom: 1.35rem;
  color: var(--color-text-muted);
}

.article-prose img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 1.75rem 0;
  border: 1px solid var(--color-border-glass);
  box-shadow: var(--shadow-sm);
}

.article-prose blockquote {
  border-left: 4px solid var(--color-gold);
  background: rgba(212, 175, 55, 0.06);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.75rem 0;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-text-main);
}

.article-prose ul, .article-prose ol {
  margin: 1.25rem 0 1.5rem 1.5rem;
  color: var(--color-text-muted);
}

.article-prose li {
  margin-bottom: 0.65rem;
  line-height: 1.65;
}

/* Sticky Blog Sidebar */
.blog-post-sidebar {
  position: sticky;
  top: 95px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.sidebar-widget-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.sidebar-widget-card:hover {
  border-color: rgba(238, 33, 36, 0.3);
}

.sidebar-widget-header {
  margin-bottom: 1.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-widget-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-featured-pill {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(238, 33, 36, 0.4);
  color: var(--color-primary);
  background: rgba(238, 33, 36, 0.08);
}

/* Mini Package Card (Smart Matching) */
.mini-pkgs-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mini-pkg-card {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-sm);
  padding: 0.65rem;
  text-decoration: none !important;
  color: inherit !important;
  transition: all var(--transition-fast);
}

.mini-pkg-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  background: rgba(238, 33, 36, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.mini-pkg-thumb {
  width: 76px;
  height: 68px;
  min-width: 76px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: #090d16;
}

.mini-pkg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-pkg-info {
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mini-pkg-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mini-pkg-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.2rem;
  font-size: 0.75rem;
}

.mini-pkg-duration {
  color: var(--color-text-muted);
}

.mini-pkg-price {
  font-weight: 800;
  color: var(--color-primary);
  font-size: 0.88rem;
}

/* Sidebar Concierge Advisor Card */
.sidebar-concierge-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

html[data-theme="light"] .sidebar-concierge-card {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
}

.sidebar-concierge-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #ffffff;
  margin: 0 0 0.4rem 0;
}

.sidebar-concierge-card p {
  color: #cbd5e1;
  font-size: 0.84rem;
  line-height: 1.5;
  margin-bottom: 1.15rem;
}

.sidebar-concierge-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Sidebar VIP Charters Box */
.sidebar-vip-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.sidebar-vip-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-sm);
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-glass);
  text-decoration: none !important;
  color: var(--color-text-main) !important;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  transition: all var(--transition-fast);
}

.sidebar-vip-btn span.icon {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.sidebar-vip-btn:hover {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

/* Sidebar Social Share Buttons */
.sidebar-share-buttons {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.share-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-glass);
  color: var(--color-text-main);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none !important;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.share-pill-btn svg {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.share-pill-btn:hover {
  background: var(--color-bg-glass);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 33, 36, 0.15);
}

.share-pill-btn:hover svg {
  transform: scale(1.1);
}

html[data-theme="light"] .share-pill-btn {
  background: #ffffff;
  border-color: #e2e8f0;
  color: #1e293b;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);
}

html[data-theme="light"] .share-pill-btn:hover {
  background: #f8fafc;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(238, 33, 36, 0.12);
}

.package-share-box .sidebar-share-buttons,
.package-share-card .sidebar-share-buttons {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
}

.package-share-box .share-pill-btn,
.package-share-card .share-pill-btn {
  padding: 0.38rem 0.65rem;
  font-size: 0.78rem;
  gap: 0.38rem;
}

.package-share-card {
  padding: 1.5rem !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

html[data-theme="light"] .package-share-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

/* ==========================================================================
   Floating Action Buttons (Back to Top & Cookie Consent)
   ========================================================================== */
.floating-action-btn {
  position: fixed;
  bottom: 1.75rem;
  z-index: 990;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--color-border-glass);
  color: var(--color-text-main);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-normal);
  user-select: none;
}

.floating-action-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(238, 33, 36, 0.25);
}

.floating-action-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* Back to Top — Far Bottom Right */
.back-to-top-btn {
  right: 1.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform var(--transition-fast);
}

.back-to-top-btn:hover svg {
  transform: translateY(-2px);
}

/* Cookie Consent Button — Far Bottom Left */
.cookie-settings-btn {
  left: 1.75rem;
  opacity: 0.95;
  font-size: 1.35rem;
}

.cookie-settings-btn:hover {
  opacity: 1;
}

/* Tooltip Badge for Floating Action Buttons */
.floating-action-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border-glass);
  color: #f8fafc;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all var(--transition-fast);
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}

.back-to-top-btn::after {
  right: 0;
}

.cookie-settings-btn::after {
  left: 0;
}

.floating-action-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==========================================================================
   GDPR & Google Consent Mode v2 Modal & Floating Banner
   ========================================================================== */
.cookie-banner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.cookie-banner-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cookie-banner-card {
  width: 100%;
  max-width: 680px;
  background: var(--color-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(238, 33, 36, 0.1);
  padding: 1.85rem;
  transform: translateY(30px);
  transition: transform var(--transition-normal);
  color: var(--color-text-main);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-banner-overlay.active .cookie-banner-card {
  transform: translateY(0);
}

.cookie-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.cookie-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cookie-icon-badge {
  font-size: 1.6rem;
  line-height: 1;
}

.cookie-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text-main);
}

.cookie-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.cookie-desc a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

/* Granular Category Toggles */
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0;
  padding: 1rem;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-md);
}

.cookie-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--color-border-glass);
}

.cookie-category-item:last-child {
  border-bottom: none;
}

.cookie-cat-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-right: 1rem;
}

.cookie-cat-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text-main);
}

.cookie-cat-desc {
  font-size: 0.78rem;
  color: var(--color-text-dim);
}

/* Custom Toggle Switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(148, 163, 184, 0.4);
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
  background-color: var(--color-primary);
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}

.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #10b981;
}

/* Cookie Action Buttons */
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1.25rem;
}

.cookie-btn {
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.cookie-btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(238, 33, 36, 0.25);
}

.cookie-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(238, 33, 36, 0.35);
}

.cookie-btn-secondary {
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-glass);
  color: var(--color-text-main);
}

.cookie-btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.cookie-btn-subtle {
  background: transparent;
  border: 1px solid transparent;
  color: var(--color-text-dim);
}

.cookie-btn-subtle:hover {
  color: var(--color-text-main);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .floating-action-btn {
    bottom: 1.25rem;
    width: 44px;
    height: 44px;
  }
  .cookie-settings-btn {
    left: 1rem;
  }
  .back-to-top-btn {
    right: 1rem;
  }
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
  }
}

/* ==========================================================================
   Modern Services Banner Cards & Grid Layout
   ========================================================================== */
.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .services-modern-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 680px) {
  .services-modern-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-glass);
  transition: all var(--transition-normal);
  padding: 0 !important;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(238, 33, 36, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(238, 33, 36, 0.1);
}

.service-card-banner {
  width: 100%;
  height: 210px;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

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

.service-card:hover .service-card-banner img {
  transform: scale(1.08);
}

.service-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0 0 0.35rem 0;
  line-height: 1.3;
}

.service-card-tag {
  color: #ee2124 !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
  margin-top: 0.2rem !important;
  margin-bottom: 0.85rem !important;
  display: block;
}

.service-card-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

/* ==========================================================================
   Luxury Editorial Magazine Article Styling
   ========================================================================== */
.blog-rich-article {
  color: var(--color-text-main);
  line-height: 1.8;
  font-size: 1.05rem;
}

.blog-rich-article h2 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--color-border-glass);
  padding-bottom: 0.5rem;
}

.blog-rich-article p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.blog-rich-article ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.blog-rich-article ul li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.blog-rich-article ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-size: 0.85rem;
}

.blog-rich-article ul li strong {
  color: var(--color-text-main);
  font-weight: 700;
}

.concierge-tip-box {
  background: rgba(217, 119, 6, 0.07) !important;
  border-left: 4px solid #d97706 !important;
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem !important;
}

html[data-theme="light"] .concierge-tip-box {
  background: #fffbeb !important;
  border-color: #d97706 !important;
}

/* ==========================================================================
   VIP Newsletter Section (Split Luxury Card)
   ========================================================================== */
.section-newsletter {
  position: relative;
  padding: 4.5rem 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-glass);
}

.newsletter-split-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: var(--transition-normal);
}

html[data-theme="dark"] .newsletter-split-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.65) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

html[data-theme="light"] .newsletter-split-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.newsletter-perks-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}

.newsletter-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.newsletter-perk-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.12);
  color: var(--color-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(217, 119, 6, 0.25);
}

.newsletter-perk-title {
  font-weight: 700;
  color: var(--color-text-main);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.newsletter-perk-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
}

.newsletter-form-card {
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: var(--transition-normal);
}

html[data-theme="light"] .newsletter-form-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

html[data-theme="dark"] .newsletter-form-card {
  background: rgba(10, 16, 29, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .newsletter-split-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.25rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .section-newsletter {
    padding: 3rem 0;
  }
  .newsletter-split-card {
    padding: 1.75rem 1rem;
    border-radius: var(--radius-md);
  }
  .newsletter-split-card h2.title-serif {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
  }
  .newsletter-perks-list {
    gap: 0.85rem;
    margin-top: 1.25rem;
  }
  .newsletter-perk-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  .newsletter-form-card {
    padding: 1.5rem 1.15rem;
    border-radius: 14px;
  }
  .newsletter-form-card .form-control {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    min-height: 46px;
  }
  .newsletter-form-card .btn-gold {
    min-height: 48px;
    font-size: 0.95rem;
  }
}

.newsletter-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border-glass);
  font-size: 0.76rem;
  color: var(--color-text-dim);
  text-align: center;
}

.nl-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ============================================================
   CUSTOM MULTI-SELECT SEARCHABLE DROPDOWN (Country Filter)
   ============================================================ */
.packages-filter-bar,
.packages-filter-bar.glass-panel {
  position: relative;
  z-index: 40;
  overflow: visible !important;
}

.filter-controls-grid {
  position: relative;
  z-index: 40;
  overflow: visible !important;
}

.country-multi-select-group {
  position: relative;
  z-index: 50;
}

.custom-multi-dropdown {
  position: relative;
  width: 100%;
}

.custom-multi-dropdown.is-open {
  z-index: 999;
}

.custom-multi-dropdown-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-sm);
  color: var(--color-text-main);
  font-family: inherit;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.custom-multi-dropdown-btn:hover,
.custom-multi-dropdown-btn:focus,
.custom-multi-dropdown.is-open .custom-multi-dropdown-btn {
  border-color: rgba(255, 255, 255, 0.35);
  outline: none;
}

html[data-theme="light"] .custom-multi-dropdown-btn:hover,
html[data-theme="light"] .custom-multi-dropdown-btn:focus,
html[data-theme="light"] .custom-multi-dropdown.is-open .custom-multi-dropdown-btn {
  border-color: #94a3b8;
}

.custom-multi-dropdown-btn .dropdown-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 0.5rem;
  font-size: 0.92rem;
}

.custom-multi-dropdown-btn .dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
  color: #94a3b8;
  flex-shrink: 0;
}

.custom-multi-dropdown.is-open .custom-multi-dropdown-btn .dropdown-arrow {
  transform: rotate(180deg);
}

.custom-multi-dropdown-panel {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: max-content;
  min-width: 100%;
  max-width: min(420px, 90vw);
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 4px 12px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  animation: dropdownFadeIn 0.15s ease-out;
}

html[data-theme="light"] .custom-multi-dropdown-panel {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.15), 0 4px 12px rgba(15, 23, 42, 0.08);
}

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

.custom-multi-dropdown-search-wrap {
  position: relative;
  margin-bottom: 0.45rem;
}

.custom-multi-dropdown-search-input {
  width: 100%;
  padding: 0.5rem 0.65rem 0.5rem 1.85rem;
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  color: #f8fafc;
  outline: none;
  font-family: inherit;
}

html[data-theme="light"] .custom-multi-dropdown-search-input {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

.custom-multi-dropdown-search-input:focus {
  border-color: rgba(255, 255, 255, 0.35);
}

html[data-theme="light"] .custom-multi-dropdown-search-input:focus {
  border-color: #94a3b8;
}

.custom-multi-dropdown-search-icon {
  position: absolute;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  opacity: 0.6;
  pointer-events: none;
}

.custom-multi-dropdown-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0.25rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.4rem;
}

html[data-theme="light"] .custom-multi-dropdown-actions {
  border-bottom-color: #e2e8f0;
}

.custom-multi-dropdown-action-btn {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.1rem 0.3rem;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s;
}

.custom-multi-dropdown-action-btn:hover {
  color: #f1f5f9;
}

html[data-theme="light"] .custom-multi-dropdown-action-btn:hover {
  color: #0f172a;
}

.custom-multi-dropdown-list {
  max-height: 240px;
  overflow-y: auto;
  overflow-x: hidden !important;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-right: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

html[data-theme="light"] .custom-multi-dropdown-list {
  scrollbar-color: rgba(15, 23, 42, 0.25) transparent;
}

.custom-multi-dropdown-list::-webkit-scrollbar {
  width: 4px;
}

.custom-multi-dropdown-list::-webkit-scrollbar-track {
  background: transparent;
}

.custom-multi-dropdown-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

html[data-theme="light"] .custom-multi-dropdown-list::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.25);
}

.custom-multi-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.1rem 0.55rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.88rem;
  color: #f1f5f9;
  transition: background 0.15s;
  user-select: none;
  flex-shrink: 0;
  min-height: 28px;
  box-sizing: border-box;
}

html[data-theme="light"] .custom-multi-dropdown-item {
  color: #1e293b;
}

.custom-multi-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.custom-multi-dropdown-item input[type="checkbox"] {
  accent-color: var(--color-gold);
  margin-right: 0.6rem;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.custom-multi-dropdown-item .item-left {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-multi-dropdown-item .item-count {
  font-size: 0.76rem;
  color: #94a3b8;
  font-weight: 500;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.custom-multi-dropdown-item .item-count.has-packages {
  color: var(--color-gold);
  font-weight: 700;
}

/* ============================================================
   CUSTOM SINGLE SELECT DROPDOWNS (Destination, Holiday, Category)
   Matching Country Dropdown Spacing (5px distance) & Luxury Theme
   ============================================================ */
.filter-controls-grid .filter-group {
  position: relative;
}

.filter-controls-grid .filter-group:has(.is-open),
.filter-controls-grid .filter-group.has-open-dropdown {
  z-index: 70;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-wrapper.is-open {
  z-index: 999;
}

.custom-select-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius-sm);
  color: var(--color-text-main);
  font-family: inherit;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.custom-select-btn:hover,
.custom-select-btn:focus,
.custom-select-wrapper.is-open .custom-select-btn {
  border-color: rgba(255, 255, 255, 0.35);
  outline: none;
}

html[data-theme="light"] .custom-select-btn:hover,
html[data-theme="light"] .custom-select-btn:focus,
html[data-theme="light"] .custom-select-wrapper.is-open .custom-select-btn {
  border-color: #94a3b8;
}

.custom-select-btn .custom-select-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 0.5rem;
  font-size: 0.92rem;
}

.custom-select-btn .custom-select-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
  color: #94a3b8;
  flex-shrink: 0;
}

.custom-select-wrapper.is-open .custom-select-btn .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-panel {
  position: absolute;
  top: calc(100% + 5px); /* Exactly matches the distance of the countries list! */
  left: 0;
  width: max-content;
  min-width: 100%;
  max-width: min(420px, 92vw);
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 4px 12px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  animation: dropdownFadeIn 0.15s ease-out;
  overflow: visible !important;
}

html[data-theme="light"] .custom-select-panel {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.15), 0 4px 12px rgba(15, 23, 42, 0.08);
}

.custom-select-list {
  max-height: none !important;
  overflow: visible !important;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-right: 0;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.custom-select-list::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.custom-select-option {
  padding: 0.15rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.4;
  color: #f1f5f9;
  transition: background 0.15s;
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

html[data-theme="light"] .custom-select-option {
  color: #1e293b;
}

.custom-select-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] .custom-select-option:hover {
  background: rgba(0, 0, 0, 0.05);
}

.custom-select-option.is-selected {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
  font-weight: 600;
}

/* ==========================================================================
   Payment Methods & Trust Ribbon (Pre-Footer)
   ========================================================================== */
.payment-trust-ribbon {
  padding: 1.75rem 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-glass);
  border-bottom: 1px solid var(--color-border-glass);
  position: relative;
  overflow: hidden;
}

.payment-trust-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.payment-trust-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  width: 100%;
  line-height: 1.45;
  padding: 0 1rem;
}

.payment-trust-label svg {
  color: #ee2124;
  flex-shrink: 0;
}

.payment-logos-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
}

.payment-badge {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0 0.8rem;
  height: 38px;
  min-width: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
  user-select: none;
}

.payment-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 33, 36, 0.4);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.09);
}

.payment-badge svg {
  display: block;
  max-width: 100%;
}

html[data-theme="light"] .payment-trust-ribbon {
  background: #f8fafc;
  border-color: #e2e8f0;
}

html[data-theme="light"] .payment-trust-label {
  color: #64748b;
}

html[data-theme="light"] .payment-badge {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);
}

/* ============================================================
   LUXURY SKELETON LOADERS (Dark & Light Mode Shimmer)
   ============================================================ */
.skeleton-shimmer {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.09) 50%, rgba(255, 255, 255, 0.03) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite ease-in-out;
  border-radius: var(--radius-sm);
  display: block;
}

html[data-theme="light"] .skeleton-shimmer {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  pointer-events: none;
  cursor: default;
  opacity: 0.85;
}

.skeleton-card .dest-img-wrap {
  background: rgba(255, 255, 255, 0.04);
  min-height: 230px;
  position: relative;
}

.skeleton-line {
  height: 14px;
  margin-bottom: 0.6rem;
  border-radius: 4px;
}

.skeleton-line.title {
  height: 22px;
  width: 75%;
  margin-bottom: 0.75rem;
}

.skeleton-line.subtitle {
  height: 14px;
  width: 90%;
  margin-bottom: 1rem;
}

.skeleton-line.short {
  width: 45%;
}

.skeleton-line.badge {
  height: 20px;
  width: 80px;
  border-radius: var(--radius-full);
}

.skeleton-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Founder & Philosophy Section & Homepage FAQ Accordion
   ========================================================================== */
.founder-card {
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-glass);
}

.founder-content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.founder-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.founder-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-glass);
}

html[data-theme="light"] .founder-highlight-item {
  background: rgba(15, 23, 42, 0.03);
}

.founder-highlight-item .f-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.founder-image-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.founder-image-card .founder-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.founder-quote-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(7, 10, 18, 0.95) 0%, rgba(7, 10, 18, 0.75) 70%, transparent 100%);
  color: #f8fafc;
}

.founder-quote-overlay .quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-gold);
  font-family: var(--font-serif);
  margin-bottom: -0.5rem;
}

.founder-quote-overlay p {
  font-size: 0.92rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.founder-quote-overlay .quote-author strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.founder-quote-overlay .quote-author span {
  font-size: 0.78rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

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

.faq-item:hover {
  border-color: rgba(238, 33, 36, 0.3);
}

.faq-question {
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--color-text-main);
  font-size: 1.02rem;
  user-select: none;
  transition: color var(--transition-fast);
}

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

.faq-chevron {
  transition: transform 0.25s ease;
  font-size: 0.85rem;
  color: var(--color-text-dim);
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  display: none;
  padding: 0 1.4rem 1.25rem 1.4rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid transparent;
}

.faq-item.open .faq-answer {
  display: block;
}

@media (max-width: 992px) {
  .founder-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .founder-image-card .founder-img {
    height: 320px;
  }
  .founder-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* Form Loading Spinner, Pulsing Glow & Feedback Status Styles */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseBtnGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(238, 33, 36, 0.4); opacity: 1; transform: scale(1); }
  50% { box-shadow: 0 0 25px rgba(238, 33, 36, 0.85); opacity: 0.92; transform: scale(0.995); }
}

.spinner-border {
  display: inline-block;
  width: 1.15rem;
  height: 1.15rem;
  vertical-align: -0.15em;
  border: 2.5px solid currentColor;
  border-right-color: transparent !important;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.btn-form-loading {
  position: relative !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
  animation: pulseBtnGlow 1.4s infinite ease-in-out !important;
  background: linear-gradient(135deg, #b91c1c 0%, #ee2124 100%) !important;
  color: #ffffff !important;
}

.form-feedback-box {
  width: 100%;
  margin-top: 1.25rem;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  transition: all 0.35s ease;
  font-size: 0.95rem;
  box-sizing: border-box;
}

/* 1. LOADING STATE */
/* Light Mode (High Contrast Crisp Crimson) */
.form-feedback-box.loading {
  background: #fef2f2;
  border: 1.5px solid #ee2124;
  color: #991b1b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(238, 33, 36, 0.12);
}
.form-feedback-box.loading .spinner-border {
  border-color: #ee2124;
  border-right-color: transparent !important;
}

/* Dark Mode Loading */
[data-theme="dark"] .form-feedback-box.loading {
  background: rgba(238, 33, 36, 0.18);
  border: 1.5px solid #ee2124;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(238, 33, 36, 0.3);
}
[data-theme="dark"] .form-feedback-box.loading .spinner-border {
  border-color: #ffffff;
  border-right-color: transparent !important;
}

/* 2. SUCCESS STATE */
/* Light Mode Success */
.form-feedback-box.success {
  background: #ecfdf5;
  border: 1.5px solid #10b981;
  color: #065f46;
  text-align: center;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}
.form-feedback-box.success strong {
  color: #047857 !important;
}
.form-feedback-box.success p {
  color: #065f46 !important;
}

/* Dark Mode Success */
[data-theme="dark"] .form-feedback-box.success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.22) 0%, rgba(5, 150, 105, 0.14) 100%);
  border: 2px solid #10b981;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}
[data-theme="dark"] .form-feedback-box.success strong {
  color: #34d399 !important;
}
[data-theme="dark"] .form-feedback-box.success p {
  color: #e2e8f0 !important;
}

/* 3. ERROR STATE */
/* Light Mode Error */
.form-feedback-box.error {
  background: #fef2f2;
  border: 1.5px solid #ef4444;
  color: #991b1b;
  text-align: center;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.12);
}
.form-feedback-box.error strong {
  color: #b91c1c !important;
}
.form-feedback-box.error p {
  color: #991b1b !important;
}

/* Dark Mode Error */
[data-theme="dark"] .form-feedback-box.error {
  background: rgba(239, 68, 68, 0.18);
  border: 1.5px solid #ef4444;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.25);
}
[data-theme="dark"] .form-feedback-box.error strong {
  color: #f87171 !important;
}
[data-theme="dark"] .form-feedback-box.error p {
  color: #fca5a5 !important;
}

