/* 
   ==========================================================================
   HORUS SPEED BOAT - LUXURY DESIGN SYSTEM
   Theme: Oceanic Glassmorphism & Polished Gold Sparkle
   ========================================================================== 
*/

:root {
  /* Premium Dark Maritime Palette */
  --navy: #02050a;
  --deep-black: #030712;
  --midnight-blue: #040d21;
  --ocean-depth: #07152b;
  
  /* Luminous Electric Accent Gradients */
  --turq: #00c9d4;
  --mint: #0d9488;
  --indigo: #4f46e5;
  --ocean-teal: #14b8a6;
  
  /* Polished Gold & Pearl Luxuries */
  --gold: #d4af37;
  --gold-light: #ffe08a;
  --gold-glow: rgba(226, 176, 74, 0.3);
  --gold-glow-strong: rgba(212, 175, 55, 0.5);
  --pearl: #fff8e7;
  --white: #ffffff;
  
  /* Advanced Glassmorphism Tokens */
  --glass: rgba(10, 20, 38, 0.45);
  --glass-bright: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-gold: rgba(226, 176, 74, 0.08);
  --border-gold: rgba(226, 176, 74, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-teal: rgba(0, 201, 212, 0.15);
  
  /* Design Tokens & Filters */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --blur: blur(24px);
  --text-dim: rgba(255, 255, 255, 0.65);
  --shadow-elite: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.25);
  
  /* Smooth High-End Transitions */
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── BASE STRUCTURAL RESET ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--navy);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  
  /* Subtle high-density texture grain overlay */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
}

/* ── BACKGROUND FIXED VIDEO TONE ADJ ── */
#siteBackgroundVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -100;
  pointer-events: none;
  filter: brightness(0.85) saturate(1.1) contrast(1.0);
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: var(--radius-xs);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* ════════════════════════════════════════════
   LUXURY PRELOADER — CINEMATIC REDESIGN
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(ellipse at 50% 60%, var(--midnight-blue) 0%, var(--navy) 70%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1.4s cubic-bezier(0.76, 0, 0.24, 1), visibility 1.4s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#preloader.hidden .pl-curtain-left {
  transform: translateX(-100%);
}

#preloader.hidden .pl-curtain-right {
  transform: translateX(100%);
}

.pl-ocean {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.15;
}

.pl-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
}

.pl-wave-1 { animation: plWaveFlow 10s ease-in-out infinite alternate; }
.pl-wave-2 { animation: plWaveFlow 14s ease-in-out infinite alternate-reverse; }
.pl-wave-3 { animation: plWaveFlow 18s ease-in-out infinite alternate; }

@keyframes plWaveFlow {
  from { transform: translateX(-4%); }
  to { transform: translateX(4%); }
}

#plParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pl-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pl-crest {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 45px rgba(226, 176, 74, 0.3));
}

.pl-crest-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: plCrestSpin 16s linear infinite;
}

@keyframes plCrestSpin {
  to { transform: rotate(360deg); }
}

.pl-ring-track {
  fill: none;
  stroke: rgba(226, 176, 74, 0.08);
  stroke-width: 1.5;
}

.pl-ring-fill {
  fill: none;
  stroke: url(#plGoldGradient);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 565;
  stroke-dashoffset: 565;
  animation: plRingDraw 2.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes plRingDraw {
  to { stroke-dashoffset: 0; }
}

.pl-diamond {
  fill: var(--gold);
  opacity: 0;
  animation: plDiamondPop 0.5s ease forwards 2.5s;
}

@keyframes plDiamondPop {
  to { opacity: 1; transform: scale(1.1); }
}

.pl-logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pl-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  animation: plLogoReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
  opacity: 0;
  filter: drop-shadow(0 0 25px rgba(226, 176, 74, 0.4)) brightness(1.1);
}

@keyframes plLogoReveal {
  from { opacity: 0; transform: scale(0.75); }
  to { opacity: 1; transform: scale(1); }
}

.pl-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  opacity: 0;
  animation: plFadeIn 0.8s ease forwards 1.4s;
}

.pl-brand-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pl-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.3em;
  background: linear-gradient(135deg, #c5a028 0%, #fff8e7 40%, #e2b04a 70%, #ffe08a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: plShimmer 4s linear infinite;
  line-height: 1.1;
  padding-left: 0.3em;
}

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

.pl-tagline {
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  letter-spacing: 0.55em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0;
  animation: plFadeIn 0.8s ease forwards 1.7s;
}

.pl-sub {
  font-size: clamp(0.5rem, 1.2vw, 0.6rem);
  letter-spacing: 0.45em;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 35px;
  opacity: 0;
  animation: plFadeIn 0.8s ease forwards 1.9s;
}

.pl-progress-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: plFadeIn 0.8s ease forwards 2.1s;
}

.pl-progress-track {
  position: relative;
  width: clamp(160px, 25vw, 240px);
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.pl-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c8a84b, #ffe08a, #e2b04a);
  border-radius: 2px;
  transition: width 0.3s ease;
  position: relative;
}

.pl-progress-fill::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px 3px rgba(255, 224, 138, 0.8);
}

.pl-progress-glow {
  position: absolute;
  inset: -2px -15px;
  background: linear-gradient(90deg, transparent, rgba(226, 176, 74, 0.12), transparent);
  animation: plGlowSlide 2.5s ease-in-out infinite;
  border-radius: 10px;
}

@keyframes plGlowSlide {
  0% { transform: translateX(-100%); }
  50% { opacity: 1; }
  100% { transform: translateX(100%); }
}

.pl-loading-text {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  font-weight: 700;
  animation: plTextPulse 2s ease-in-out infinite;
}

@keyframes plTextPulse {
  0%, 100% { color: rgba(255, 255, 255, 0.25); }
  50% { color: var(--gold); }
}

.pl-bottom {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: plFadeIn 0.8s ease forwards 2.3s;
}

.pl-bottom-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(226, 176, 74, 0.4);
}

.pl-bottom-line {
  width: clamp(50px, 12vw, 100px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 176, 74, 0.3), transparent);
}

.pl-curtain-left, .pl-curtain-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #000;
  transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1) 0.1s;
  z-index: 10;
  pointer-events: none;
}

.pl-curtain-left { left: 0; transform: translateX(-100%); }
.pl-curtain-right { right: 0; transform: translateX(100%); }

#preloader:not(.hidden) .pl-curtain-left { transform: translateX(0); animation: plCurtainOpenLeft 1.5s cubic-bezier(0.76, 0, 0.24, 1) 0.4s forwards; }
#preloader:not(.hidden) .pl-curtain-right { transform: translateX(0); animation: plCurtainOpenRight 1.5s cubic-bezier(0.76, 0, 0.24, 1) 0.4s forwards; }

@keyframes plCurtainOpenLeft { to { transform: translateX(-100%); } }
@keyframes plCurtainOpenRight { to { transform: translateX(100%); } }
@keyframes plFadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }


/* ── SOUND CONTROL TOGGLE ── */
.sound-btn {
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 800;
  background: rgba(5, 11, 24, 0.7);
  border: 1px solid var(--border-gold);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sound-btn:hover {
  transform: scale(1.1) translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}


/* ════════════════════════════════════════════
   NAVIGATION — FLOATING NEO-GLASS PILL
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 700;
  padding: 24px 0;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  padding: 12px 0;
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

#navbar.scrolled .nav-container {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  padding: 10px 24px;
  border-radius: 100px;
  box-shadow: var(--shadow-elite), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  max-width: 1000px;
  margin-top: 10px;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.nav-logo:hover {
  opacity: 0.85;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: var(--transition);
  filter: drop-shadow(0 0 10px rgba(226, 176, 74, 0.3)) brightness(1.05);
}

#navbar.scrolled .logo-img {
  height: 36px;
}

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

.nav-link {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
  padding: 8px 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  left: 0;
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-lang {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-lang:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--glass-gold);
}

.btn-share {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-size: 0.85rem;
}

.btn-share:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--glass-gold);
}

.btn-book-nav {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.68rem;
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-book-nav:hover {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 0 15px rgba(226, 176, 74, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition-fast);
}


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

.hero-video-bg {
  position: absolute;
  inset: 0;
  opacity: 0.85;
}

.ocean-canvas {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 5, 10, 0.1) 0%, rgba(2, 5, 10, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 1050px;
  margin-top: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  border: 1px solid var(--border-gold);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.2s both;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: plShimmer 4s linear infinite;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  color: var(--text-dim);
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.4s both;
  line-height: 1.8;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}

/* Primary Luxury Button */
.btn-primary {
  background: linear-gradient(135deg, #c5a028 0%, #dfb256 100%);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 15px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(226, 176, 74, 0.45);
}

.btn-primary:hover::after {
  left: 140%;
}


/* ════════════════════════════════════════════
   FUTURISTIC WIDGET APP-BAR & SEARCH MODULE
   ============================================ */
.hero-search-wrapper {
  position: relative;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 950px;
  z-index: 100;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-search-card {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 10px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 8px;
  box-shadow: var(--shadow-elite), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.search-field {
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  transition: var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.search-field:hover {
  background: var(--glass-bright);
}

.search-field:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: var(--glass-border);
}

.search-field label {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.search-field label svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
}

.hero-input-field {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.hero-input-field option {
  background: var(--navy);
  color: var(--white);
  padding: 10px;
}

.hero-input-field[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(50%) saturate(1000%) hue-rotate(1deg);
  cursor: pointer;
  opacity: 0.8;
}

.hero-input-field::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn-search-hero {
  background: linear-gradient(135deg, var(--gold) 0%, #c5a028 100%);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-search-hero:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-search-hero svg {
  width: 18px;
  height: 18px;
}


/* ════════════════════════════════════════════
   WIDGETS BAR — FLOATING SMART CAPSULES
   ============================================ */
.widgets-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px;
  max-width: 1100px;
  margin: 0 auto -20px;
  position: relative;
  z-index: 5;
}

.widget {
  background: rgba(8, 16, 32, 0.65);
  border: 1px solid var(--border-subtle);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 190px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 176, 74, 0.2), transparent);
}

.widget:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.widget-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.widget-info small {
  display: block;
  font-size: 0.62rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2px;
  font-weight: 700;
}

.widget-info strong {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 700;
}

.urgency-widget {
  border-color: rgba(255, 100, 50, 0.25);
  background: linear-gradient(135deg, rgba(255, 80, 40, 0.05) 0%, rgba(8, 16, 32, 0.65) 100%);
}

.urgency-widget:hover {
  border-color: rgba(255, 100, 50, 0.5);
  box-shadow: 0 10px 30px rgba(255, 80, 40, 0.15);
}

.urgent-text {
  color: #ff6432 !important;
  text-shadow: 0 0 10px rgba(255, 100, 50, 0.3);
}


/* ════════════════════════════════════════════
   PRICE CALCULATOR — FUTURISTIC INTERACTIVE
   ============================================ */
.calculator-section {
  padding: 60px 24px;
  position: relative;
  z-index: 5;
}

.calculator-container {
  max-width: 950px;
  margin: 0 auto;
}

.calc-header {
  text-align: center;
  margin-bottom: 36px;
}

.calc-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  font-weight: 800;
}

.calc-header p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.calc-card {
  background: linear-gradient(160deg, rgba(12, 24, 48, 0.7) 0%, rgba(4, 10, 24, 0.9) 100%);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-elite), 0 0 40px rgba(226, 176, 74, 0.05);
  position: relative;
}

.calc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.input-group label {
  display: block;
  font-size: 0.72rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  font-weight: 800;
}

.input-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.input-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(226, 176, 74, 0.15);
}

#priceTripSelect {
  background: #1565C0;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid #42A5F5;
  border-radius: 10px;
  padding: 12px 16px;
  width: 100%;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

#priceTripSelect option {
  background: #1565C0;
  color: #ffffff;
}

.range-wrapper {
  position: relative;
  padding: 10px 0;
}

/* Custom Styled Range Input */
input[type=range] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

input[type=range]::-webkit-slider-thumb {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  margin-top: -8px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  transition: var(--transition-fast);
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.60rem;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0;
}

.calc-result {
  text-align: center;
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.calc-result span:first-child {
  font-size: 0.75rem !important;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.calc-result span:last-child {
  font-family: 'Playfair Display', serif;
  text-shadow: 0 0 30px rgba(226, 176, 74, 0.4);
  margin-top: 6px;
}

.calc-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
}


/* ════════════════════════════════════════════
   SECTION HEADER — EDITORIAL MINIMAL
   ============================================ */
.section-header {
  text-align: center;
  padding: 60px 24px 44px;
  max-width: 720px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-badge::before, .section-badge::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold));
}

.section-badge::after {
  background: linear-gradient(90deg, var(--border-gold), transparent);
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header p {
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 0.95rem;
}


/* ════════════════════════════════════════════
   TRIP CARDS — ELEVATED GLOSS & MOTION
   ============================================ */
.trips-section {
  padding: 0 24px 60px;
  max-width: 1320px;
  margin: 0 auto;
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
}

/* Trip Card Base */
.trip-card {
  background: linear-gradient(155deg, rgba(8, 16, 32, 0.92) 0%, rgba(3, 8, 18, 0.98) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-elite), 0 0 35px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

/* Corner framing brackets */
.trip-card-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 4;
}

.trip-card-corner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 1px;
  background: rgba(226, 176, 74, 0.5);
}

.trip-card-corner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 18px;
  background: rgba(226, 176, 74, 0.5);
}

.trip-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-elite), 0 0 35px rgba(226, 176, 74, 0.18), inset 0 1px 0 rgba(226, 176, 74, 0.15);
}

/* Image zoom & hover slides */
.trip-card-img {
  height: 260px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 176, 74, 0.15);
}

.trip-card-img img, .trip-card-img .slideshow {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.85) saturate(1.05);
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hover-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.trip-card:hover .hover-video {
  opacity: 1;
}

.trip-card:hover .trip-card-img img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.15);
}

.trip-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 8, 16, 0.05) 0%, rgba(2, 8, 16, 0.8) 100%);
  z-index: 1;
}

/* Status Badges */
.trip-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(4, 8, 18, 0.85);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.58rem;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
  backdrop-filter: var(--blur);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Floating custom price tag in dynamically loaded HTML */
.card-price-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(4, 8, 18, 0.85);
  border: 1px solid var(--border-gold);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card-price-tag small {
  font-size: 0.52rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  font-weight: 700;
}

.card-price-tag strong {
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
}

/* Trip Card Body details */
.trip-card-body {
  padding: 24px;
  position: relative;
}

.trip-card-body::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  width: 3px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  border-radius: 0 2px 2px 0;
}

.trip-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  margin-bottom: 10px;
  color: var(--white);
  transition: var(--transition-fast);
  padding-left: 12px;
  font-weight: 700;
}

.trip-card:hover .trip-card-body h3 {
  color: var(--gold);
}

.trip-card-body p {
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.65;
  margin-bottom: 18px;
  padding-left: 12px;
  min-height: 52px;
}

.trip-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  padding-left: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.trip-meta span {
  font-size: 0.68rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.trip-meta span svg {
  stroke: var(--gold);
}

.trip-ctas {
  display: flex;
  gap: 8px;
  padding-left: 12px;
}

.trip-ctas .btn-primary {
  flex: 1.5;
  font-size: 0.68rem;
  padding: 11px 16px;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.trip-ctas .btn-details {
  flex: 0.5;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-dim);
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  backdrop-filter: var(--blur);
}

.trip-ctas .btn-details:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--glass-gold);
}


/* ════════════════════════════════════════════
   ABOUT SECTION — FLOATING GLASS LAYOUT
   ============================================ */
.about-section {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  padding-right: 15px;
}

.about-img-main {
  border-radius: var(--radius-md);
  height: 400px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-elite), 0 0 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-gold);
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about-img-main::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 2;
}

.about-img-main::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 2;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -5px;
  background: linear-gradient(135deg, var(--gold) 0%, #c5a028 100%);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
  animation: floatBtn 6s ease-in-out infinite;
}

.about-badge-float strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.about-badge-float span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-content {
  padding-left: 10px;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.feature span {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(226, 176, 74, 0.4);
}

.about-content .btn-primary {
  margin-top: 10px;
}


/* ════════════════════════════════════════════
   INTERACTIVE MAP ROUTE RADAR
   ============================================ */
.map-section {
  padding: 60px 24px;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  align-items: start;
}

#leafletMap {
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--border-gold) !important;
  box-shadow: var(--shadow-elite), 0 0 35px rgba(226, 176, 74, 0.04);
}

.map-pins {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-pin {
  background: rgba(8, 16, 32, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.map-pin:hover {
  border-color: var(--border-gold);
  transform: translateX(-6px);
  box-shadow: var(--shadow-gold);
  background: rgba(12, 24, 48, 0.85);
}

.map-pin > span {
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.map-pin strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 2px;
  color: var(--white);
  letter-spacing: 0.05em;
  font-weight: 700;
}

.map-pin small {
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}


/* ════════════════════════════════════════════
   REVIEWS — GOLDEN VERIFICATION & MARQUEE
   ============================================ */
.reviews-section {
  padding: 0 24px 60px;
  overflow: hidden;
  position: relative;
}

.trust-logos, .trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 30px auto 50px;
  max-width: 650px;
  background: rgba(8, 16, 32, 0.65);
  border: 1px solid var(--border-subtle);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  padding: 16px 40px;
  border-radius: 100px;
  box-shadow: var(--shadow-elite), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  flex-wrap: wrap;
}

.trust-logos:hover, .trust-badges:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold), 0 20px 50px rgba(0, 0, 0, 0.5);
  background: rgba(12, 24, 48, 0.8);
}

.trust-badge-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.trust-badge-img {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.35;
  transition: var(--transition-fast);
}

.trust-badge-img:hover {
  opacity: 0.95;
  filter: none;
  transform: translateY(-2px) scale(1.05);
}

.gyg-logo {
  height: 30px;
}

.reviews-track {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* Smooth vignette fades for marquee borders */
.reviews-track::before, .reviews-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.reviews-track::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
}

.reviews-track::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy) 0%, transparent 100%);
}

.reviews-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
}

.reviews-marquee:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  background: linear-gradient(155deg, rgba(8, 16, 32, 0.75) 0%, rgba(3, 8, 18, 0.9) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  width: 320px;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(226, 176, 74, 0.08);
  font-weight: 900;
}

.review-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.verified-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.platform-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  border-radius: var(--radius-xs);
}

.verified-platform span {
  font-size: 0.58rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(226, 176, 74, 0.3);
}

.review-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.82rem;
  margin-bottom: 16px;
  font-style: italic;
  min-height: 60px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid var(--border-gold);
  color: var(--white);
}

.review-name strong {
  display: block;
  font-size: 0.78rem;
  color: var(--white);
  font-weight: 700;
}

.review-name small {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}


/* ════════════════════════════════════════════
   SOCIAL CHANNELS — MINIMAL GRID
   ============================================ */
.social-section {
  padding: 0 24px 60px;
}

.social-links {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--border-subtle);
}

.social-card {
  background: rgba(8, 16, 32, 0.7);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.social-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.social-card:hover::after {
  transform: scaleX(1);
}

.social-card:hover {
  transform: translateY(-4px);
  background: rgba(12, 24, 48, 0.85);
}

.social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: none;
  transition: var(--transition-fast);
  margin-bottom: 2px;
}

.social-card:hover .social-icon {
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
  transform: scale(1.1);
}

.social-card span:last-child {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.instagram:hover { box-shadow: inset 0 0 25px rgba(225, 48, 108, 0.15); }
.facebook:hover { box-shadow: inset 0 0 25px rgba(24, 119, 242, 0.15); }
.youtube:hover { box-shadow: inset 0 0 25px rgba(255, 0, 0, 0.15); }
.tiktok:hover { box-shadow: inset 0 0 25px rgba(0, 242, 254, 0.15); }
.snapchat:hover { box-shadow: inset 0 0 25px rgba(255, 252, 0, 0.15); }
.whatsapp:hover { box-shadow: inset 0 0 25px rgba(37, 211, 102, 0.15); }


/* ════════════════════════════════════════════
   LIVE CONDITIONS — RADAR HUD
   ============================================ */
.live-conditions-section {
  padding: 0 24px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.live-conditions-section .section-header {
  padding-top: 20px;
  padding-bottom: 24px;
}

@keyframes sunSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.condition-card {
  background: rgba(10, 24, 48, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.condition-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.02));
  opacity: 0;
  transition: opacity 0.3s;
}

.condition-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 180, 216, 0.15);
}

.condition-card:hover::after {
  opacity: 1;
}

.condition-card.warning {
  border-color: rgba(239, 68, 68, 0.3);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(10, 24, 48, 0.75) 100%);
}

.condition-card.warning:hover {
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(239, 68, 68, 0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.condition-card:hover .card-icon {
  transform: scale(1.1);
}

.real-widget-icon {
  display: block;
}

.card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.card-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.card-info p strong {
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
}

.rate-indicator {
  font-size: 0.72rem;
  margin-left: 6px;
  display: inline-block;
  padding: 1px 5px;
  border-radius: var(--radius-xs);
  background: rgba(0, 0, 0, 0.4);
}

.rate-up { color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.2); }
.rate-down { color: #f87171; border: 1px solid rgba(248, 113, 113, 0.2); }


/* ════════════════════════════════════════════
   FOOTER — LUXURY PRINT LAYOUT
   ============================================ */
.footer {
  position: relative;
  background: transparent;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 24px 0;
  overflow: hidden;
  margin-top: 40px;
}

.footer::before {
  content: 'HORUS';
  position: absolute;
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.015);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.2em;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 50px;
  padding-bottom: 40px;
}

.footer-logo {
  margin-bottom: 12px;
}

.logo-img-footer {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(226, 176, 74, 0.3)) brightness(1.05);
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.8;
  margin-bottom: 6px;
  font-weight: 500;
}

.footer-brand a {
  color: var(--gold);
  transition: var(--transition-fast);
}

.footer-brand a:hover {
  color: var(--white);
}

.footer-links h4, .footer-book h4 {
  font-size: 0.62rem;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 800;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.82rem;
  transition: var(--transition-fast);
  display: inline-block;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-book p {
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-book .btn-primary {
  font-size: 0.68rem;
  padding: 12px 24px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.68rem;
  max-width: 1200px;
  margin: 0 auto;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.designer-link {
  color: var(--gold);
  font-weight: 700;
  cursor: help;
  position: relative;
  margin-left: 2px;
  transition: var(--transition-fast);
}

.designer-link:hover {
  color: var(--white);
  text-shadow: 0 0 10px rgba(226, 176, 74, 0.6);
}

.designer-link::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--gold);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: var(--radius-xs);
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  pointer-events: none;
  font-weight: 700;
}

.designer-link:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mobile-only {
  display: none;
}


/* ════════════════════════════════════════════
   STICKY FLOATING BOOKING OVERLAY & CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sticky-btn {
  background: linear-gradient(135deg, #c5a028 0%, var(--gold) 100%);
  color: var(--navy);
  font-weight: 900;
  font-size: 0.72rem;
  padding: 14px 38px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: pulseCta 3s infinite;
  transition: var(--transition-fast);
}

.sticky-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

@keyframes pulseCta {
  0%, 100% { box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 15px 40px rgba(212, 175, 55, 0.65); }
}


/* ════════════════════════════════════════════
   EXECUTIVE AI CONCIERGE CHAT INTERFACE
   ============================================ */
.ai-concierge {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 350px;
  background: linear-gradient(160deg, rgba(8, 16, 32, 0.98) 0%, rgba(3, 8, 18, 0.99) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elite), 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 800;
  display: none;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  transition: var(--transition);
}

.ai-concierge.open {
  display: flex;
}

.ai-header {
  background: linear-gradient(135deg, rgba(5, 11, 24, 0.95), rgba(10, 26, 47, 0.95));
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.ai-avatar {
  position: relative;
}

.avatar-face {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ai-status-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid var(--navy);
  box-shadow: 0 0 8px #4ade80;
}

.ai-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-weight: 700;
}

.ai-info small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.ai-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.ai-close:hover {
  color: var(--white);
}

.ai-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  max-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-msg {
  max-width: 85%;
  padding: 10px 14px;
  font-size: 0.78rem;
  line-height: 1.5;
  font-weight: 500;
}

.ai-msg.bot {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  align-self: flex-start;
  border: 1px solid var(--border-subtle);
  color: rgba(255, 255, 255, 0.9);
}

.ai-msg.user {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy);
  border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md);
  align-self: flex-end;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.ai-quick-replies {
  padding: 6px 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.quick-reply {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  font-size: 0.68rem;
  padding: 5px 10px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.quick-reply:hover {
  background: var(--glass-gold);
  border-color: var(--gold);
  color: var(--gold);
}

.ai-input-row {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid var(--border-subtle);
  align-items: center;
}

#aiInput {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  outline: none;
  transition: var(--transition-fast);
  font-weight: 500;
}

#aiInput:focus {
  border-color: var(--border-gold);
}

#aiInput::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

#aiSend, #aiVoice {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition-fast);
}

#aiSend:hover, #aiVoice:hover {
  transform: scale(1.15);
}

.ai-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 25px;
  z-index: 801;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  animation: floatBtn 5s ease-in-out infinite;
}

.ai-toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

@keyframes floatBtn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.ai-toggle-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff4444;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 2px solid var(--navy);
  animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
  0% { box-shadow: 0 0 0 0 rgba(255,68,68,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,68,68,0); }
}


/* ── ELEVATED TRIP DETAILS VIEW ── */
.trip-hero {
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

.trip-gallery {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
  cursor: pointer;
  filter: brightness(0.8);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1);
  z-index: 2;
  box-shadow: var(--shadow-elite);
}

.cursor-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: sparkleFade 0.8s forwards;
  box-shadow: 0 0 5px var(--gold-light);
}

@keyframes sparkleFade {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3.5) translateY(15px); opacity: 0; }
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
  padding: 4px 12px;
  border-radius: var(--radius-xs);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}


/* ── CYCLING LANGUAGE SELECTOR ── */
.btn-lang {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-lang:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* ── WHATSAPP FLOAT SYSTEM ── */
.wa-float {
  position: fixed;
  bottom: 100px;
  left: 25px;
  z-index: 800;
  width: 48px;
  height: 48px;
  background: #25d366;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
  animation: waFloat 4s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

.wa-float img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}


/* ════════════════════════════════════════════
   HIGH-END RESPONSIVE MEDIA QUERIES
   ============================================ */
@media (max-width: 992px) {
  .hero-search-card {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
    border-radius: var(--radius-lg);
  }
  .search-field::after {
    display: none;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .map-container {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .calc-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  
  .calc-result {
    border: none;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    min-height: auto;
  }

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

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  
  #navbar.scrolled .nav-container {
    border-radius: 0;
    margin-top: 0;
    max-width: 100%;
    border-left: none;
    border-right: none;
    border-top: none;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 5, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 699;
    backdrop-filter: blur(40px);
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .hamburger {
    display: flex;
    z-index: 701;
  }
  
  .nav-actions {
    gap: 8px;
  }
  
  .btn-book-nav {
    display: none;
  }
  
  .hero-search-card {
    grid-template-columns: 1fr;
  }
  
  .hero-search-wrapper {
    margin-top: 30px;
  }
  
  .about-badge-float {
    right: 0;
    bottom: -15px;
  }
  
  .social-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .ai-concierge {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 85px;
  }
  
  .trips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   REDESIGNED MAP SECTION
═══════════════════════════════════════════ */
@keyframes markerPulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes mtcSlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.map-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

#leafletMap {
  height: 480px;
  width: 100%;
  border-radius: 20px;
}

.map-compass {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1000;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
  animation: boatFloat 4s ease-in-out infinite alternate;
}

.map-marina-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 1000;
  background: rgba(2,5,10,0.85);
  border: 1px solid rgba(212,175,55,0.4);
  color: #d4af37;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(12px);
}

/* SIDEBAR TRIP CARDS */
.map-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-trip-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(8,16,32,0.7);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  animation: mtcSlide 0.5s ease forwards;
}

.map-trip-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.02));
  opacity: 0;
  transition: opacity 0.3s;
}

.map-trip-card:hover,
.map-trip-card.mtc-active {
  transform: translateX(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 4px 0 0 var(--card-accent, #d4af37) inset;
  background: rgba(12,24,48,0.9);
}

.map-trip-card:hover::before,
.map-trip-card.mtc-active::before { opacity: 1; }

/* Per-card accent colors */
#mapCard1 { --card-accent: #00b4d8; }
#mapCard2 { --card-accent: #ff6b35; }
#mapCard3 { --card-accent: #06d6a0; }
#mapCard4 { --card-accent: #48cae4; }

#mapCard1:hover, #mapCard1.mtc-active { box-shadow: 0 8px 30px rgba(0,180,216,0.2), 4px 0 0 #00b4d8 inset; }
#mapCard2:hover, #mapCard2.mtc-active { box-shadow: 0 8px 30px rgba(255,107,53,0.2), 4px 0 0 #ff6b35 inset; }
#mapCard3:hover, #mapCard3.mtc-active { box-shadow: 0 8px 30px rgba(6,214,160,0.2), 4px 0 0 #06d6a0 inset; }
#mapCard4:hover, #mapCard4.mtc-active { box-shadow: 0 8px 30px rgba(72,202,228,0.2), 4px 0 0 #48cae4 inset; }

.mtc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.map-trip-card:hover .mtc-icon { transform: scale(1.1) rotate(-3deg); }

.island-icon  { background: rgba(0,180,216,0.12); border: 1px solid rgba(0,180,216,0.25); }
.sunset-icon  { background: rgba(255,107,53,0.12); border: 1px solid rgba(255,107,53,0.25); }
.boat-icon    { background: rgba(6,214,160,0.12);  border: 1px solid rgba(6,214,160,0.25); }
.dhouse-icon  { background: rgba(72,202,228,0.12); border: 1px solid rgba(72,202,228,0.25); }

.mtc-body { flex: 1; min-width: 0; }

.mtc-name {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.mtc-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
}

.mtc-time {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.mtc-price {
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 700;
}

.mtc-desc {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mtc-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(34,197,94,0.8);
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.mtc-arrow {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.2);
  transition: all 0.3s;
  flex-shrink: 0;
}

.map-trip-card:hover .mtc-arrow { color: rgba(255,255,255,0.8); transform: translateX(3px); }

/* Responsive */
@media (max-width: 768px) {
  .map-layout {
    grid-template-columns: 1fr;
  }
  #leafletMap { height: 320px; }
  .map-sidebar { flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 8px; }
  .map-trip-card { min-width: 220px; }
}

