
.telemetry-bar {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 0.35rem 0;
}
.telemetry-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.telemetry-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ti-icon { filter: grayscale(0.5); }
.ti-label { text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.6; }
.navbar { top: 1.85rem; }
@media (max-width: 768px) {
  .telemetry-inner { gap: 1rem; }
  .telemetry-item:nth-child(4) { display: none; }
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Raleway:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');
:root {
  --teal-900: #003d35;
  --teal-800: #075E54;
  --teal-700: #0b7060;
  --teal-600: #128C7E;
  --teal-400: #1EB5A0;
  --teal-300: #25D366;
  --teal-100: rgba(37,211,102,0.1);
  --gold-900: #7a5c00;
  --gold: #D4AF37;
  --gold-light: #F5D060;
  --gold-pale: rgba(212,175,55,0.15);
  --bg: #080e0c;
  --bg2: #0d1510;
  --surface: #111a16;
  --surface2: #172118;
  --surface3: #1d2a20;
  --glass: rgba(17,26,22,0.8);
  --text: #eef7f2;
  --text-muted: rgba(238,247,242,0.55);
  --text-faint: rgba(238,247,242,0.3);
  --border: rgba(37,211,102,0.1);
  --border-hover: rgba(37,211,102,0.3);
  --border-gold: rgba(212,175,55,0.2);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --glow-teal: 0 0 40px rgba(37,211,102,0.15);
  --glow-gold: 0 0 40px rgba(212,175,55,0.15);
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --section-pad: 3rem 1.5rem;
  --container: 1240px;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  letter-spacing: 0.01em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: rgba(37,211,102,0.3); color: var(--text); }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--section-pad); }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-300);
  background: var(--teal-100);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.4;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.shimmer {
  background: linear-gradient(90deg,
    var(--gold) 0%,
    var(--gold-light) 30%,
    #fff9c4 50%,
    var(--gold-light) 70%,
    var(--gold) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerAnim 4s linear infinite;
}
@keyframes shimmerAnim {
  to { background-position: 300% center; }
}
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: #25D366;
  color: #000;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
}
.btn-gold {
  background: #f4c542;
  color: #000;
  box-shadow: 0 4px 15px rgba(244,197,66,0.3);
}
.btn-gold:hover {
  background: #ffcf4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244,197,66,0.4);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.btn-lg {
  font-size: 1rem;
  padding: 1rem 2.25rem;
}
.btn-wa {
  background: linear-gradient(135deg, #075E54, #128C7E, #25D366);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-wa:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.badge-teal {
  background: rgba(37,211,102,0.15);
  color: var(--teal-300);
  border: 1px solid rgba(37,211,102,0.25);
}
.badge-gold {
  background: rgba(212,175,55,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(212,175,55,0.25);
}
.badge-red {
  background: rgba(239,68,68,0.15);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,0.25);
}
.badge-amber {
  background: rgba(245,158,11,0.15);
  color: #fcd34d;
  border: 1px solid rgba(245,158,11,0.25);
}
.badge-egypt {
  background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(245,208,96,0.18));
  color: var(--gold-light);
  border: 1px solid rgba(212,175,55,0.4);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(212,175,55,0.18);
  animation: egyptGlow 2.5s ease-in-out infinite !important;
}
@keyframes egyptGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(212,175,55,0.15); }
  50%  { box-shadow: 0 0 28px rgba(212,175,55,0.45); }
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.badge-urgent {
  background: rgba(239,68,68,0.9);
  color: #fff;
  animation: urgencyPulse 2s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(0.97); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.reveal-scale.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s, padding 0.3s;
  padding: 0.75rem 0;
  background: rgba(8,14,12,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: visible !important;
}
.navbar.scrolled {
  background: rgba(4,8,6,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 0 0 1px var(--border);
  padding: 0.5rem 0;
  overflow: visible !important;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow: visible !important;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-600), var(--teal-300));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem; color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo-text .tagline {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -2px;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-link.active {
  color: var(--teal-300);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(5px);
  min-width: 220px;
  background: #0d1510;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  visibility: hidden;
  z-index: 2001;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: calc(var(--radius) - 0.25rem);
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-dropdown-menu a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav-dropdown-menu .menu-icon {
  width: 32px; height: 32px;
  border-radius: 0.5rem;
  background: var(--teal-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.navbar-phone:hover { color: var(--teal-300); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  gap: 5px;
  transition: var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.06); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(380px, 100vw);
  height: 100vh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-menu .nav-link {
  font-size: 1rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  display: block;
}
.mobile-menu .mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}
.mobile-close:hover { background: rgba(255,255,255,0.12); }
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(3,20,15,0.9) 0%, rgba(3,20,15,0.4) 60%, transparent 100%),
    linear-gradient(to top, rgba(8,14,12,0.95) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 30%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 1.5rem 2.5rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-300);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 760px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.hero-slogan-wrap {
  height: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  margin-bottom: 2.5rem;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slogan {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
}
.hero-slogan.exit {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
}
.hero-slogan.enter {
  opacity: 0;
  transform: translateY(20px) scale(1.05);
}
.hero-slogan.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-live-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-stat .val {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-mouse-dot {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 999px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(18px); opacity: 0; }
}
.hero-controls {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  width: 8px;
  height: 24px;
  border-radius: 4px;
}
.lang-switcher {
  position: relative;
  margin-right: 1.5rem;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--gold);
  transition: var(--transition);
}
.lang-btn:hover {
  border-color: var(--gold);
  background: var(--surface3);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
  width: 240px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  animation: slideUp 0.3s ease;
}
.lang-menu.show { display: grid; }
.lang-menu button {
  padding: 0.5rem;
  text-align: left;
  font-size: 0.75rem;
  border-radius: 0.4rem;
  transition: var(--transition);
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lang-menu button:hover {
  background: var(--teal-100);
  color: var(--teal-300);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  overflow: hidden;
}
.trust-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: var(--transition);
}
.trust-item:hover { color: var(--text); }
.trust-item .ti-icon {
  font-size: 1.3rem;
}
.trust-item strong {
  color: var(--teal-300);
}
.slider-section {
  background: var(--bg2);
  padding: 5rem 0;
  overflow: hidden;
}
.slider-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.slider-track-wrapper {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 1.5rem 2rem;
  overflow-x: auto;
  scroll-behavior: auto;
  -ms-overflow-style: none;  
  scrollbar-width: none;  
  cursor: grab;
  user-select: none;
}
.slider-track::-webkit-scrollbar {
  display: none; 
}
.slider-track:active { cursor: grabbing; }
.slider-nav {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}
.slider-nav-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.slider-nav-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.slider-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }
.tour-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  will-change: transform;
  flex-shrink: 0;
  width: 320px;
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px var(--border-hover);
  border-color: var(--border-hover);
}
.tour-card.tilt { transform-style: preserve-3d; }
.tour-img-wrap {
  height: 210px;
  min-height: 210px;
  max-height: 210px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
}
.tour-img-wrap .slide,
.la-img-wrap .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.tour-img-wrap .slide.active,
.la-img-wrap .slide.active {
  opacity: 1;
}
.tour-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 4;
}
.tour-card:hover .tour-video {
  opacity: 1;
}
.tour-img-overlay,
.la-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  transition: opacity var(--transition);
  z-index: 3;
}
.tour-card:hover .tour-img-wrap .slide,
.liveaboard-card:hover .la-img-wrap .slide { transform: scale(1.1); }
.tour-card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 5;
}
.badge-category {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.badge-price {
  font-size: 1.1rem;
  font-weight: 800;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  background: var(--gold);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  border: 1px solid rgba(255,255,255,0.2);
}
.tour-was-price {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.was-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-decoration: line-through;
}
.discount-chip {
  background: #EF4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.tour-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.tour-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
.tour-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  padding-top: 0.15rem;
}
.star { color: #F59E0B; }
.rating-val { font-size: 0.85rem; font-weight: 700; }
.rating-cnt { font-size: 0.72rem; color: var(--text-muted); }
.tour-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.tour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.tag {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(37,211,102,0.07);
  color: var(--teal-400);
  border: 1px solid rgba(37,211,102,0.15);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
}
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
  gap: 0.75rem;
}
.tour-price .was {
  font-size: 0.9rem;
  color: var(--text-faint);
  text-decoration: line-through;
  margin-right: 0.5rem;
}
.tour-price .current {
  font-family: 'Syne', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.tour-price .per {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tours-grid .tour-card { width: auto; }
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: var(--transition);
}
.filter-btn:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.04);
}
.filter-btn.active {
  background: var(--teal-300);
  color: #000;
  border-color: var(--teal-300);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.features-section {
  background: var(--surface);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.feature-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-800), var(--teal-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--glow-teal);
  border-color: var(--border-hover);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal-100), rgba(37,211,102,0.05));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(37,211,102,0.2), rgba(37,211,102,0.1));
  box-shadow: 0 0 20px rgba(37,211,102,0.15);
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.about-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--bg);
  box-shadow: var(--shadow-md);
}
.about-badge-float {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--surface2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-float .big-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-badge-float .small-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}
.about-value .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.liveaboard-section { background: var(--surface); }
.liveaboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.liveaboard-card {
  background: var(--surface2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 260px 1fr;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}
.liveaboard-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px -15px rgba(212, 175, 55, 0.15);
}
.la-img-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.la-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.liveaboard-card:hover .la-img-wrap img {
  transform: scale(1.1);
}
.la-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(8,14,12,0.6));
}
.la-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.liveaboard-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.la-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.la-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.la-tag {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.la-routes {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.route-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.82rem;
  transition: var(--transition);
}
.route-row:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold-light);
}
.route-name {
  color: var(--text-muted);
  font-weight: 500;
}
.route-price {
  color: var(--gold);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.la-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.la-footer-price-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.2rem;
}
.la-footer-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
@media (max-width: 768px) {
  .liveaboard-card {
    grid-template-columns: 1fr;
  }
  .la-img-wrap {
    height: 200px;
  }
  .la-img-overlay {
    background: linear-gradient(to bottom, transparent, rgba(8,14,12,0.6));
  }
}
.deal-banner {
  background: linear-gradient(135deg, var(--teal-900) 0%, #0d2018 40%, var(--gold-900) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 3.5rem 1.5rem;
  overflow: hidden;
  position: relative;
}
.deal-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(37,211,102,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
}
.deal-banner-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.deal-text .deal-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.deal-text .deal-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.deal-text .deal-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}
.deal-package {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}
.deal-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.deal-item .di-icon { font-size: 1.3rem; }
.deal-price-wrap {
  text-align: center;
}
.deal-original {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}
.deal-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.deal-per {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.reviews-section { background: var(--bg2); }
.reviews-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.overall-rating {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--surface2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
}
.rating-big-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.rating-detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stars-lg {
  display: flex;
  gap: 0.2rem;
  font-size: 1.4rem;
  color: #F59E0B;
}
.rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.platform-ratings {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.platform-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
}
.platform-name {
  font-weight: 600;
  width: 110px;
  white-space: nowrap;
}
.platform-stars {
  display: flex;
  gap: 0.1rem;
  color: #F59E0B;
  font-size: 0.8rem;
}
.platform-score {
  color: var(--text-muted);
}
.reviews-grid {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  overflow-x: auto;
  scroll-behavior: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.reviews-grid::-webkit-scrollbar {
  display: none;
}
.reviews-grid:active { cursor: grabbing; }
.review-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-width: calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  flex-shrink: 0;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(37,211,102,0.07);
  line-height: 1;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(37,211,102,0.1);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
}
.reviewer-country {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.review-stars {
  display: flex;
  gap: 0.1rem;
  color: #F59E0B;
  font-size: 0.85rem;
  margin-left: auto;
}
.review-text {
  font-size: 0.875rem;
  color: rgba(238,247,242,0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-faint);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.review-tour-tag {
  background: rgba(37,211,102,0.08);
  color: var(--teal-400);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}
.planner-section { background: var(--surface); }
.planner-wrap {
  max-width: 760px;
  margin: 3rem auto 0;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.planner-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}
.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
.step-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 2px solid var(--border);
  color: var(--text-muted);
  background: var(--surface2);
}
.step-circle.active {
  background: var(--teal-300);
  border-color: var(--teal-300);
  color: #000;
  box-shadow: 0 0 0 5px rgba(37,211,102,0.15);
}
.step-circle.done {
  background: var(--teal-800);
  border-color: var(--teal-800);
  color: #fff;
}
.step-node .step-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.step-node .step-lbl.active { color: var(--text); }
.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-bottom: 1.5rem;
  position: relative;
  top: -0.75rem;
  transition: background 0.4s;
}
.step-line.done { background: var(--teal-800); }
.planner-panel { display: none; }
.planner-panel.active { display: block; }
.planner-heading {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.75rem;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}
.option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.02em;
  min-width: 0;
}
.option-card:hover {
  transform: translateY(-5px);
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}
.option-card.selected {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25), inset 0 0 15px rgba(212, 175, 55, 0.1);
}
.option-emoji {
  font-size: 2rem;
  transition: transform 0.3s ease;
}
.option-card:hover .option-emoji {
  transform: scale(1.2) rotate(8deg);
}
.planner-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.btn-planner-back {
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-planner-back:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.planner-result {
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: none;
}
.planner-result.show { display: block; }
.result-heading {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal-300);
  margin-bottom: 1rem;
}
.result-list { display: flex; flex-direction: column; gap: 0.6rem; }
.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}
.result-row-name { font-weight: 600; font-size: 0.9rem; }
.result-row-price { font-weight: 700; color: var(--gold); }
.gallery-section { background: var(--bg); padding: 5rem 0; }
.gallery-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-bottom: 2.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 0.75rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-item:hover {
  transform: scale(1.05) translateY(-4px);
  z-index: 10;
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.g-lg { grid-column: span 6; height: 360px; }
.gallery-item.g-sm { grid-column: span 3; height: 175px; }
.gallery-item.g-med { grid-column: span 4; height: 260px; }
.contact-section { background: var(--bg2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 3rem auto 0;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  transition: var(--transition);
  text-decoration: none;
}
.contact-info-item:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}
.ci-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: var(--teal-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.ci-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.ci-value {
  font-weight: 700;
  font-size: 0.95rem;
}
.contact-form-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.form-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  margin-bottom: 1rem;
}
.form-field:focus {
  border-color: var(--teal-300);
  box-shadow: 0 0 0 4px rgba(37,211,102,0.1);
  background: rgba(37,211,102,0.03);
}
.form-field::placeholder { color: var(--text-faint); }
select.form-field option { background: var(--surface2); color: var(--text); }
textarea.form-field { resize: vertical; min-height: 110px; }
.form-row-2 .form-field,
.form-row-3 .form-field { margin-bottom: 0; }
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem 0;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
  max-width: 340px;
}
.footer-socials {
  display: flex;
  gap: 0.65rem;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--teal-300);
  border-color: var(--teal-300);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col a:hover {
  color: var(--teal-300);
  padding-left: 4px;
}
.footer-col li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.6;
}
.newsletter-input-wrap {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.newsletter-input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.newsletter-input:focus { border-color: var(--teal-300); }
.newsletter-input::placeholder { color: var(--text-faint); }
.newsletter-btn {
  padding: 0.7rem 1.1rem;
  background: var(--teal-300);
  color: #000;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--teal-400); transform: scale(1.02); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: var(--text-faint);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: var(--text-faint);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--teal-300); }
.wa-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
}
.wa-fab-btn {
  position: relative;
  width: 66px; height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-600), var(--teal-300));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-fab-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(37,211,102,0.6);
}
.wa-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2.5px solid rgba(37,211,102,0.3);
  animation: waRing 2.5s linear infinite;
}
.wa-ring2 {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1.5px solid rgba(37,211,102,0.15);
  animation: waRing 2.5s linear infinite 0.8s;
}
@keyframes waRing {
  to { transform: scale(1.5); opacity: 0; }
}
.wa-badge {
  position: absolute;
  top: -5px; right: -5px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #EF4444;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  animation: waBounce 2s ease-in-out infinite;
  border: 2px solid var(--bg);
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.wa-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 1rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  box-shadow: var(--shadow-md);
}
.wa-fab:hover .wa-tooltip { opacity: 1; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.toast-container {
  position: fixed;
  bottom: 6rem;
  left: 2rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
}
.toast {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 300px;
}
.toast.show { transform: translateX(0); }
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .liveaboard-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { min-width: calc(50% - 0.75rem); max-width: calc(50% - 0.75rem); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-main { height: 340px; }
  .about-img-float { display: none; }
  .about-badge-float { right: 1rem; top: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .deal-banner-inner { flex-direction: column; }
  .liveaboard-card { grid-template-columns: 1fr; }
  .liveaboard-img { height: 200px; }
  .hero-stat-divider { display: none; }
  .gallery-item.g-lg { grid-column: span 12; height: 280px; }
  .gallery-item.g-sm { grid-column: span 6; height: 170px; }
  .gallery-item.g-med { grid-column: span 6; height: 220px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.5rem; }
  .navbar-links { display: none; }
  .navbar-phone { display: none; }
  .navbar-right .btn-gold { display: none; }
  .hamburger { display: flex; }
  .tours-grid { grid-template-columns: 1fr; }
  .review-card { min-width: 85vw; max-width: 85vw; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .form-row-2 .form-field, .form-row-3 .form-field { margin-bottom: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .deal-package { flex-direction: column; align-items: flex-start; }
  .option-grid { grid-template-columns: 1fr 1fr; }
  .planner-wrap { padding: 1.75rem 1.25rem; }
  .trust-bar-inner { gap: 1rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .option-grid { grid-template-columns: 1fr; }
  .wa-fab { bottom: 1.25rem; right: 1.25rem; }
  .gallery-item.g-sm { grid-column: span 12; }
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(37,211,102,0.6);
  animation: particleFloat var(--dur, 8s) linear infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) translateX(var(--dx, 50px)); opacity: 0; }
}
.gradient-text {
  background: linear-gradient(135deg, var(--teal-300), var(--teal-400), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(37,211,102,0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(37,211,102,0.35); }
.skeleton {
  background: linear-gradient(90deg, var(--surface2) 25%, var(--surface3) 50%, var(--surface2) 75%);
  background-size: 400% 100%;
  animation: skeletonLoad 1.5s ease-in-out infinite;
}
@keyframes skeletonLoad {
  to { background-position: -400% 0; }
}
.map-section {
  padding: 5rem 0;
  background: var(--bg2);
}
.map-section .container {
  max-width: 100%;
  padding: 0;
}
.map-section .section-header {
  text-align: center;
  padding: 0 1.5rem 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.map-wrap {
  position: relative;
  height: 600px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
  .map-wrap { height: 400px; }
}
#stmMap {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.leaflet-container {
  background: #0d1a14 !important;
  font-family: 'Raleway', sans-serif !important;
}
.leaflet-tile {
  filter: brightness(0.9) saturate(0.8);
}
.stm-map-marker {
  background: none;
  border: none;
}
.map-pin {
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg) translateY(-4px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.map-pin:hover {
  transform: rotate(-45deg) translateY(-8px) scale(1.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.map-pin-inner {
  transform: rotate(45deg);
  font-size: 1.2rem;
  line-height: 1;
}
.map-pin.boat   { background: linear-gradient(135deg, #0284c7, #0ea5e9); }
.map-pin.diving { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.map-pin.safari { background: linear-gradient(135deg, #b45309, #d97706); }
.map-pin.historical { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.map-pin.deals  { background: linear-gradient(135deg, #dc2626, #f87171); }
.map-tooltip-card {
  position: absolute;
  background: rgba(11,20,16,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 0;
  width: 280px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212,175,55,0.1);
  pointer-events: auto;
  overflow: hidden;
  z-index: 9999;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.map-tooltip-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.map-tc-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}
.map-tc-body {
  padding: 1rem;
}
.map-tc-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  margin-bottom: 0.4rem;
}
.map-tc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.map-tc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
}
.map-tc-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.map-tc-rating {
  color: var(--gold);
  font-size: 0.78rem;
}
.map-tc-actions {
  display: flex;
  gap: 0.5rem;
}
.map-tc-btn {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}
.map-tc-btn.wa {
  background: linear-gradient(135deg, #075E54, #25D366);
  color: #fff;
}
.map-tc-btn.wa:hover { opacity: 0.9; transform: translateY(-1px); }
.map-tc-btn.view {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.map-tc-btn.view:hover { border-color: var(--gold); color: var(--gold); }
.map-legend {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 500;
  background: rgba(8,14,12,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.05em;
}
.ml-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ml-dot.boat { background: #0ea5e9; }
.ml-dot.diving { background: #14b8a6; }
.ml-dot.safari { background: #d97706; }
.ml-dot.historical { background: #a78bfa; }
.planner-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.planner-result-card {
  background: var(--surface2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.planner-result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(212,175,55,0.2);
}
.prc-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.prc-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.prc-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
}
.prc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.prc-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.prc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.prc-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}
.prc-book {
  background: linear-gradient(135deg, #075E54, #25D366);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  transition: var(--transition);
}
.prc-book:hover { transform: scale(1.04); opacity: 0.9; }
.trip-page {
  min-height: 100vh;
  background: var(--bg);
}
.trip-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
}
.trip-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.trip-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.trip-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.trip-hero-video.loaded {
  opacity: 1;
}
.trip-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,14,12,0.35) 0%, rgba(8,14,12,0.85) 100%),
    linear-gradient(to right, rgba(8,14,12,0.6) 0%, transparent 60%);
}
.trip-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  max-width: var(--container);
  margin: 0 auto;
}
.trip-hero-cat {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  display: block;
}
.trip-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
  max-width: 900px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.trip-hero-slogan {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  color: var(--gold-light);
  font-style: italic;
  margin-top: 0;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  animation: fadeInDown 0.8s ease backwards;
  font-weight: 500;
}
.trip-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.trip-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  font-family: 'Raleway', sans-serif;
}
.trip-breadcrumb {
  padding: 1rem clamp(1.5rem, 5vw, 4rem);
  max-width: var(--container);
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
}
.trip-breadcrumb a {
  color: var(--teal-300);
  transition: var(--transition);
}
.trip-breadcrumb a:hover { color: var(--text); }
.trip-breadcrumb span { opacity: 0.4; }
.trip-body {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .trip-body { grid-template-columns: 1fr; }
}
.trip-gallery-strip {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem;
}
.trip-gallery-strip::-webkit-scrollbar { display: none; }
.trip-gallery-thumb {
  flex-shrink: 0;
  width: 140px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
}
.trip-gallery-thumb:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}
.trip-gallery-thumb.active {
  opacity: 1;
  border-color: var(--teal-300);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.25);
}
.trip-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.trip-gallery-thumb:hover img { transform: scale(1.08); }
.trip-main-img-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  margin: 0 auto 2rem;
  height: 450px; 
  width: 100%;
  max-width: 800px; 
  box-shadow: 
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.08);
  background: #080e0c;
  border: 1px solid rgba(255,255,255,0.05);
}
.trip-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.trip-gallery-strip {
  display: flex;
  gap: 1rem;
  margin: 0 auto 3rem;
  width: 100%;
  max-width: 800px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0;
  justify-content: center;
}
.trip-gallery-strip::-webkit-scrollbar { display: none; }
.trip-gallery-thumb {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.trip-gallery-thumb:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}
.trip-gallery-thumb.active {
  opacity: 1;
  border-color: var(--teal-300);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.25);
}
.trip-hero-slogan {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  font-style: italic;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  animation: fadeInDown 0.8s ease backwards;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.trip-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}
.trip-section-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.trip-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.trip-description {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  white-space: pre-line;
}
.trip-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 640px) {
  .trip-includes-grid { grid-template-columns: 1fr; }
}
.trip-inc-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
}
.trip-inc-item.inc .inc-icon { color: var(--teal-300); }
.trip-inc-item.exc .inc-icon { color: #ef4444; }
.trip-itinerary {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}
.trip-itinerary::before {
  content: '';
  position: absolute;
  left: 3.25rem;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--teal-300), var(--gold), transparent);
  opacity: 0.3;
}
.itin-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.itin-time {
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 3.5rem;
  text-align: center;
  background: var(--surface2);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  padding: 0.3rem 0.5rem;
  flex-shrink: 0;
}
.itin-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal-300);
  flex-shrink: 0;
  margin-top: 0.45rem;
  box-shadow: 0 0 8px rgba(37,211,102,0.4);
}
.itin-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 0.25rem;
}
.trip-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.trip-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.trip-highlight-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.trip-booking-sidebar {
  position: sticky;
  top: 90px;
}
.booking-card {
  background: var(--surface2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(212,175,55,0.05);
}
.booking-card-header {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-800));
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-gold);
}
.bc-price-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.bc-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.bc-price-was {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.bc-price-per {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.booking-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.bc-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
}
.bc-stars { color: var(--gold); }
.bc-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.bc-feature-icon { font-size: 1rem; flex-shrink: 0; }
.bc-book-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #075E54, #128C7E, #25D366);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.bc-book-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.bc-enquire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}
.bc-enquire:hover { border-color: var(--gold); color: var(--gold); }
.bc-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(37,211,102,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 0.5rem;
}
.bc-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.bc-trust-item svg, .bc-trust-item span:first-child { color: var(--teal-300); flex-shrink: 0; }
.related-trips-section {
  padding: 4rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.related-trips-section .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .related-grid { grid-template-columns: 1fr; }
}
.tour-name {
  font-family: 'Playfair Display', serif !important;
  font-weight: 600 !important;
}
.nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.planner-heading {
  font-family: 'Playfair Display', serif;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
.liveaboard-name {
  font-family: 'Playfair Display', serif;
}
.reviewer-name {
  font-family: 'Playfair Display', serif;
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
}
.about-badge-float .big-num {
  font-family: 'Playfair Display', serif;
}
.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.12em;
}
.tour-meta {
  display: flex;
  gap: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'Raleway', sans-serif;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.tour-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ai-concierge-wrap {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
}
.ai-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #db2777);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ai-trigger:hover {
  transform: scale(1.1) rotate(5deg);
}
.ai-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #7c3aed;
  opacity: 0;
  animation: aiPulse 2s infinite;
}
@keyframes aiPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.ai-window {
  position: absolute;
  bottom: calc(100% + 1.5rem);
  left: 0;
  width: 320px;
  max-height: 480px;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom left;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.ai-window.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.ai-header {
  padding: 1.25rem;
  background: rgba(124, 58, 237, 0.15);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ai-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #db2777);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.ai-name {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.ai-status {
  font-size: 0.7rem;
  color: var(--teal-300);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.ai-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}
.ai-close {
  margin-left: auto;
  font-size: 1.1rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.ai-close:hover { opacity: 1; }
.ai-chat {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 260px;
  scrollbar-width: thin;
}
.ai-msg {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  max-width: 85%;
  line-height: 1.5;
}
.ai-msg.bot {
  background: var(--surface2);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 0.2rem;
}
.ai-msg.user {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 0.2rem;
}
.ai-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1.25rem 1rem;
}
.ai-chip {
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  transition: all 0.2s;
}
.ai-chip:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: #7c3aed;
  transform: translateY(-1px);
}
.ai-input-wrap {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
}
.ai-input-wrap input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: #fff;
  outline: none;
}
.ai-input-wrap input:focus {
  border-color: #7c3aed;
  background: rgba(255, 255, 255, 0.08);
}
.ai-input-wrap button {
  width: 36px;
  height: 36px;
  background: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.ai-input-wrap button:hover {
  transform: scale(1.1);
  background: #6d28d9;
}
@media (max-width: 480px) {
  .ai-window {
    width: calc(100vw - 3rem);
    left: -0.75rem;
    bottom: calc(100% + 1.25rem);
    transform-origin: bottom center;
  }
}
.ai-mic-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 50%;
}
.ai-mic-btn:hover { color: var(--gold); background: rgba(212, 175, 55, 0.1); }
.ai-mic-btn.active { color: #f87171; animation: micPulse 1.5s infinite; }
@keyframes micPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.ai-voice-indicator {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(212, 175, 55, 0.1);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
}
.ai-voice-indicator.active { display: flex; }
.voice-wave {
  width: 3px;
  height: 12px;
  background: var(--gold);
  border-radius: 3px;
  animation: waveAnim 1s ease-in-out infinite;
}
.voice-wave:nth-child(2) { animation-delay: 0.2s; }
.voice-wave:nth-child(3) { animation-delay: 0.4s; }
@keyframes waveAnim {
  0%, 100% { height: 6px; }
  50% { height: 16px; }
}
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-300), var(--gold), var(--gold-light));
  z-index: 2000;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}
.widgets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}
.widget-card {
  background: rgba(17, 26, 22, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2.5rem;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.widget-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(37, 211, 102, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.widget-card:hover {
  transform: translateY(-12px) scale(1.01);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(212, 175, 55, 0.1);
}
.widget-card:hover::after {
  opacity: 1;
}
.premium-weather {
  background: linear-gradient(165deg, rgba(13, 21, 16, 0.9), rgba(8, 14, 12, 0.98));
}
.premium-weather.day-theme {
  background: linear-gradient(165deg, rgba(14, 45, 80, 0.85), rgba(8, 14, 12, 0.98));
}
.premium-weather.night-theme {
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.98));
}
.weather-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 1rem;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--teal-300);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--teal-300);
  animation: dotPulse 2s infinite;
}
.weather-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2.5rem 0;
}
.temp-val {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 800;
  line-height: 0.8;
  background: linear-gradient(to bottom, #fff, #aaa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}
.weather-stats-premium {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stat-box {
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.stat-box:hover { transform: translateY(-8px); }
.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.currency-widget {
  background: linear-gradient(165deg, rgba(17, 26, 22, 0.9), rgba(8, 14, 12, 0.98));
}
.currency-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.c-input-row {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.c-input-row:focus-within {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}
.c-amount-input {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  outline: none;
  width: 100%;
}
.c-select-styled {
  background: var(--surface3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.c-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -0.5rem 0;
  position: relative;
  z-index: 2;
}
.c-swap-btn {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.4s;
}
.c-swap-btn:hover {
  transform: rotate(180deg) scale(1.1);
  background: #fff;
}
.c-result-display {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin: 1.5rem 0;
  line-height: 1;
}
.c-footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-faint);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@keyframes sunSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes dotPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }
@media (max-width: 992px) {
  .widgets-grid { grid-template-columns: 1fr; }
  .widget-card { padding: 2.5rem; }
}
.romero-credit {
  display: inline-block;
  cursor: pointer;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2px 4px;
  position: relative;
}
.romero-credit .credit-hover {
  display: none;
}
.romero-credit:hover {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.6));
}
.romero-credit:hover .credit-text {
  display: none;
}
.romero-credit:hover .credit-hover {
  display: inline;
  color: var(--teal-300);
  background: linear-gradient(90deg, #fff, var(--teal-300), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2px 4px;
  position: relative;
}
.romero-credit .credit-hover {
  display: none;
}
.romero-credit:hover {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.6));
}
.romero-credit:hover .credit-text {
  display: none;
}
.romero-credit:hover .credit-hover {
  display: inline;
  color: var(--teal-300);
  background: linear-gradient(90deg, #fff, var(--teal-300), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.jump-up-btn {
  position: fixed;
  bottom: 7.5rem;
  right: 2.3rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.jump-up-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.jump-up-btn:hover {
  background: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}
.jump-up-btn svg {
  transition: transform 0.3s ease;
}
.jump-up-btn:hover svg {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .trip-main-img-wrap {
    height: 300px;
    margin-bottom: 1.25rem;
  }
  .trip-gallery-thumb {
    width: 110px;
    height: 70px;
  }
}
@media (max-width: 768px) {
  .jump-up-btn {
    bottom: 6rem;
    right: 1.8rem;
    width: 48px;
    height: 48px;
  }
}
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }
.goog-te-gadget { display: none !important; }
.goog-tooltip { display: none !important; }
.goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background-color: transparent !important; box-shadow: none !important; }
#google_translate_element { display: none !important; }
.goog-te-spinner-pos { display: none !important; }
.hero h1 { text-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.3) !important; }
.hero-sub { text-shadow: 0 2px 8px rgba(0,0,0,0.4) !important; }
.hero-slogan { text-shadow: 0 4px 20px rgba(212,175,55,0.3), 0 2px 4px rgba(0,0,0,0.4) !important; }
.hero-content { perspective: 1000px; }
.hero-title span { display: inline-block; background: linear-gradient(120deg, #fff 0%, #fff 40%, var(--gold) 50%, #fff 60%, #fff 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: title-float 6s ease-in-out infinite, shimmer 8s linear infinite; }
@keyframes shimmer { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }
@keyframes title-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  .preloader-logo span {
    display: inline-block;
    opacity: 0;
    transform: translate(var(--dx, -120vw), var(--dy, 0)) scale(0.5);
    filter: blur(10px);
    animation: letter-race 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  @keyframes letter-race {
    0% { transform: translate(var(--dx, -120vw), var(--dy, 0)) scale(0.5); filter: blur(10px); opacity: 0; }
    40% { opacity: 1; }
    100% { transform: translate(0, 0) scale(1); filter: blur(0); opacity: 1; }
  }
  .preloader-logo span:nth-child(1) { --dx: -150vw; --dy: -20vh; animation-delay: 0.1s; }
  .preloader-logo span:nth-child(2) { --dx: 150vw;  --dy: 30vh;  animation-delay: 0.2s; }
  .preloader-logo span:nth-child(3) { --dx: -150vw; --dy: 50vh;  animation-delay: 0.3s; }
  .preloader-logo span:nth-child(4) { --dx: 0;      --dy: -100vh; animation-delay: 0.4s; }
  .preloader-logo span:nth-child(5) { --dx: 150vw;  --dy: -50vh; animation-delay: 0.5s; }
  .preloader-logo span:nth-child(6) { --dx: -150vw; --dy: 20vh;  animation-delay: 0.6s; }
  .preloader-logo span:nth-child(7) { --dx: 150vw;  --dy: -20vh; animation-delay: 0.7s; }
  .preloader-logo span:nth-child(8) { --dx: -150vw; --dy: -50vh; animation-delay: 0.8s; }
  .preloader-logo span:nth-child(9) { --dx: 0;      --dy: 100vh;  animation-delay: 0.9s; }
  .preloader-logo span:nth-child(10){ --dx: 150vw;  --dy: 50vh;  animation-delay: 1.0s; }
.btn-gold { box-shadow: 0 10px 20px rgba(212,175,55,0.2), inset 0 0 0 1px rgba(255,255,255,0.1); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.btn-gold:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 30px rgba(212,175,55,0.3); }
.widget-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.widget-card:hover { transform: translateY(-8px); border-color: var(--gold-pale); }
.widget-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.widget-title { font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; }
.widget-status { font-size: 0.85rem; color: var(--text-muted); }
.weather-main { display: flex; align-items: center; gap: 2rem; margin-bottom: 2rem; }
.weather-temp { font-size: 4rem; font-family: 'Playfair Display', serif; font-weight: 800; display: flex; align-items: baseline; }
.weather-temp .unit { font-size: 1.5rem; color: var(--gold); margin-left: 0.2rem; }
.weather-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid var(--border); }
.w-stat-item { font-size: 0.9rem; color: var(--text-muted); }
.w-stat-item strong { color: var(--text); margin-left: 0.4rem; }
.weather-footer { margin-top: 1rem; font-size: 0.85rem; font-weight: 600; color: var(--teal-300); }
.currency-body { display: flex; flex-direction: column; gap: 1rem; }
.c-input-group { display: flex; gap: 0.5rem; }
.c-field { background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 0.75rem; color: var(--text); padding: 0.8rem 1rem; font-size: 1rem; flex: 1; outline: none; transition: border-color 0.3s ease; }
.c-field:focus { border-color: var(--gold); }
.c-result-box { background: rgba(212,175,55,0.1); border: 1px solid var(--gold-pale); border-radius: 0.75rem; color: var(--gold); padding: 0.8rem 1rem; font-size: 1.25rem; font-weight: 700; flex: 1; display: flex; align-items: center; }
.c-swap { align-self: center; cursor: pointer; color: var(--gold); font-size: 1.5rem; transition: transform 0.3s ease; }
.c-swap:hover { transform: rotate(180deg); }
.currency-footer { margin-top: 1.5rem; font-size: 0.75rem; color: var(--text-faint); text-align: center; }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 0 2rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.gallery-col:nth-child(1) .gallery-item:nth-child(1) { aspect-ratio: 3/4; }
.gallery-col:nth-child(1) .gallery-item:nth-child(2) { aspect-ratio: 4/3; }
.gallery-col:nth-child(1) .gallery-item:nth-child(3) { aspect-ratio: 1/1; }
.gallery-col:nth-child(2) .gallery-item:nth-child(1) { aspect-ratio: 4/3; }
.gallery-col:nth-child(2) .gallery-item:nth-child(2) { aspect-ratio: 1/1; }
.gallery-col:nth-child(2) .gallery-item:nth-child(3) { aspect-ratio: 3/4; }
.gallery-col:nth-child(3) .gallery-item:nth-child(1) { aspect-ratio: 1/1; }
.gallery-col:nth-child(3) .gallery-item:nth-child(2) { aspect-ratio: 3/4; }
.gallery-col:nth-child(3) .gallery-item:nth-child(3) { aspect-ratio: 4/3; }
.gallery-col:nth-child(4) .gallery-item:nth-child(1) { aspect-ratio: 4/3; }
.gallery-col:nth-child(4) .gallery-item:nth-child(2) { aspect-ratio: 3/4; }
.gallery-col:nth-child(4) .gallery-item:nth-child(3) { aspect-ratio: 4/3; }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  background: var(--surface);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 10001;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover { background: var(--gold); transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { background: var(--gold); transform: translateY(-50%) scale(1.1); }
#lightboxImg { transition: opacity 0.2s ease; }
@media (max-width: 1024px) {
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  .gallery-col:nth-child(4) { display: none; }
}
@media (max-width: 768px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); padding: 0 1rem 2rem; }
  .gallery-col:nth-child(3), .gallery-col:nth-child(4) { display: none; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}
@media (max-width: 480px) {
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-col:nth-child(2), .gallery-col:nth-child(3), .gallery-col:nth-child(4) { display: none; }
}
.essentials-section { padding: 5rem 0; }
#weatherCard.day-theme { background: linear-gradient(135deg, rgba(8,22,14,0.8), rgba(14,30,20,0.8)) !important; }
#weatherCard.night-theme { background: linear-gradient(135deg, rgba(5,10,18,0.85), rgba(8,14,30,0.85)) !important; }
.c-footer { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; }
.live-refresh-tag { font-size: 0.68rem; color: var(--teal-300); letter-spacing: 0.05em; text-transform: uppercase; }
.hero-live-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2rem;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}
.live-strip-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}
.live-strip-sep { opacity: 0.4; }
#liveVisitors { font-weight: 700; color: #d4af37; }
@keyframes pulse-update {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.25); color: #22c55e; }
}
.pulse-update { animation: pulse-update 0.4s ease; }
.hot-deal-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(239,68,68,0.12));
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  margin: 0 auto 2rem;
  max-width: 900px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  position: relative;
}
.hot-deal-flame { font-size: 1.4rem; }
.hot-deal-banner strong { color: #d4af37; }
.hot-deal-btn {
  margin-left: auto;
  background: #d4af37;
  color: #0a0a0a;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.hot-deal-btn:hover { background: #f0cc60; transform: scale(1.04); }
.hot-deal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem;
  margin-left: 0.5rem;
  transition: color 0.2s;
}
.hot-deal-close:hover { color: #ef4444; }
.toast-proof {
  background: rgba(10, 16, 12, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 0.75rem;
  padding: 0;
  overflow: hidden;
  min-width: 260px;
  max-width: 300px;
}
.toast-proof-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
}
.toast-flag { font-size: 1.5rem; flex-shrink: 0; }
.toast-proof-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.8rem;
}
.toast-proof-text strong { color: rgba(255,255,255,0.95); font-size: 0.85rem; }
.toast-proof-text span { color: rgba(255,255,255,0.6); }
.toast-proof-text em { color: #d4af37; font-style: normal; font-weight: 600; }
.toast-mins { color: rgba(255,255,255,0.4); font-size: 0.72rem; }
#exitPopup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
#exitPopup.show {
  opacity: 1;
  pointer-events: all;
}
.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.exit-popup-box {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #0f1e15 0%, #0a1410 100%);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90vw;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#exitPopup.show .exit-popup-box { transform: scale(1); }
.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s;
}
.exit-popup-close:hover { color: #ef4444; }
.exit-popup-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.exit-popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 0.5rem;
}
.exit-popup-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.exit-popup-sub strong { color: #fff; }
.exit-popup-countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.exit-countdown {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ef4444;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}
.exit-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.exit-popup-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,0.4); }
.exit-popup-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}
.urgency-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: #ef4444;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.urgency-timer::before { content: '⏱'; font-size: 0.9rem; }
[data-urgency] {
  font-size: 0.75rem;
  font-weight: 600;
  transition: color 0.5s ease;
}
.essentials-section {
  padding: 4rem 0 !important;
}
.widgets-grid {
  grid-template-columns: 1fr !important;
  gap: 1.5rem !important;
  margin-top: 2rem !important;
}
.widget-card {
  padding: 1.5rem 2.5rem !important;
  border-radius: 1.25rem !important;
  background: rgba(12, 18, 14, 0.7) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}
.widget-card:hover {
  border-color: rgba(212, 175, 55, 0.4) !important;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1) !important;
}
.premium-weather {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 3rem !important;
}
.premium-weather .weather-badge {
  position: absolute;
  top: 1rem;
  left: 2.5rem;
  background: rgba(212, 175, 55, 0.15) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: var(--gold) !important;
}
.premium-weather .weather-hero {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 !important;
}
.premium-weather .weather-icon-container {
  width: 70px !important;
  height: 70px !important;
}
.premium-weather .weather-temp-wrap {
  display: flex;
  align-items: baseline;
}
.premium-weather .temp-val {
  font-size: 3.5rem !important;
  line-height: 1 !important;
}
.premium-weather .weather-info {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}
.premium-weather .weather-info h3 {
  margin: 0 !important;
  font-size: 1.8rem !important;
  color: var(--gold) !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}
.premium-weather .weather-stats-premium {
  display: flex;
  gap: 1.5rem;
}
.premium-weather .stat-box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  background: rgba(255,255,255,0.03);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.premium-weather > div:last-child {
  margin: 0 !important; 
}
.sea-status-pill {
  background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(18,140,126,0.1)) !important;
  border-color: rgba(37,211,102,0.3) !important;
}
.currency-widget {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem;
  flex-wrap: nowrap;
}
.currency-widget .currency-title {
  margin: 0 !important;
  white-space: nowrap;
  font-size: 1.3rem !important;
  color: var(--gold) !important;
}
.currency-widget .c-input-row {
  margin: 0 !important;
  flex: 1;
  max-width: 350px;
}
.currency-widget .c-divider {
  margin: 0 !important;
}
.currency-widget .c-footer {
  position: absolute;
  bottom: 0.6rem;
  right: 2.5rem;
  width: auto !important;
  margin: 0 !important;
}
@media (max-width: 992px) {
  .currency-widget {
    flex-wrap: wrap;
  }
  .currency-widget .c-input-row {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .premium-weather {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 2rem !important;
  }
  .premium-weather .weather-info {
    flex-direction: column;
    gap: 1.5rem;
  }
  .premium-weather .weather-stats-premium {
    justify-content: space-between;
    width: 100%;
  }
  .currency-widget {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .currency-widget .c-footer {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1rem !important;
    width: 100% !important;
  }
}
  .site-video-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
  }
  .site-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.75;
  }
  .site-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 10, 0.45);
  }
  .hero {
    position: relative;
    z-index: 1;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  body > *:not(.site-video-bg):not(.hero) section,
  .trust-bar, .deal-banner, .section,
  footer, .footer {
    position: relative;
    z-index: 1;
  }
  .tour-card, .widget-card, .la-card, .liveaboard-card,
  .about-card, .contact-form-card, .review-card,
  .planner-wrap, .map-wrap {
    background: rgba(8, 22, 14, 0.65) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(37, 211, 102, 0.15);
  }
  .trust-bar {
    background: rgba(5, 14, 9, 0.55) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .deal-banner {
    background: rgba(15, 12, 3, 0.60) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .tours-section, .why-section, .about-section,
  .liveaboard-section, .gallery-section, .planner-section,
  .reviews-section, .contact-section, .la-section,
  .essentials-section, .map-section, .section {
    background: transparent !important;
  }
  body > section, body > div:not(.site-video-bg):not(.scroll-progress) {
    background: transparent !important;
  }
  .footer {
    background: rgba(4, 10, 7, 0.75) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  #preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
  }
  .preloader-logo {
    display: flex;
    gap: 0.15em;
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.02em;
    perspective: 1000px;
  }
  .preloader-line {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin-top: 1.5rem;
    animation: line-grow 2s ease-in-out forwards;
  }
  @keyframes line-grow {
    0% { width: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { width: clamp(200px, 40vw, 400px); opacity: 0.8; }
  }
  #preloader.hidden { opacity: 0; visibility: hidden; }
  .skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--gold);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    z-index: 99999;
    transition: top 0.3s;
    text-decoration: none;
  }
  .skip-link:focus {
    top: 0;
  }

/* ── Quick Book Mobile Button ─────────────────────────── */
.quick-book-mobile {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 5rem; /* Leave space for WA FAB */
  background: var(--gold);
  color: #000;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
  z-index: 850;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  text-decoration: none;
  display: none;
  animation: slideUp 0.5s ease-out;
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .quick-book-mobile.visible { display: block; }
}

@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ── RTL Support Basics ───────────────────────────────── */
[dir="rtl"] {
  text-align: right;
  direction: rtl;
}
[dir="rtl"] .navbar-logo { flex-direction: row-reverse; }
[dir="rtl"] .navbar-links { flex-direction: row-reverse; }
[dir="rtl"] .tour-card-badges { left: auto; right: 0.75rem; }
[dir="rtl"] .badge-price { margin-right: 0; margin-left: 0.5rem; }
.visitor-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 40, 20, 0.6);
  border: 1px solid #14b8a6;
  padding: 0.2rem 1.25rem;
  border-radius: 30px;
  font-size: 0.65rem;
  font-weight: 800;
  color: #14b8a6;
  text-transform: lowercase;
  line-height: 1.1;
  margin-right: 0.5rem;
}
.visitor-badge .live-dot {
  width: 8px;
  height: 8px;
  background: var(--teal-400);
  border-radius: 50%;
  position: relative;
}
.visitor-badge .live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--teal-400);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse 2s infinite;
}
@media (max-width: 992px) {
  .visitor-badge { display: none; }
}
