/* ============================================
   GOLDEN CRUISING — Luxury Liveaboard Design System
   Kitesurfing & Diving Safari · Red Sea Egypt
   ============================================ */

/* --- CSS Variables --- */
:root {
  --gold: #D4AF37;
  --gold-light: #E8CC6E;
  --gold-dark: #B8941E;
  --gold-glow: rgba(212,175,55,0.25);
  --navy: #0B1426;
  --navy-light: #132040;
  --navy-mid: #1A2D55;
  --teal: #0EA5C7;
  --teal-dark: #0C7E99;
  --coral: #E85D26;
  --coral-light: #F2784B;
  --white: #FFFFFF;
  --white-10: rgba(255,255,255,0.1);
  --white-20: rgba(255,255,255,0.2);
  --white-40: rgba(255,255,255,0.4);
  --white-60: rgba(255,255,255,0.6);
  --white-80: rgba(255,255,255,0.8);
  --text: #E8E6E3;
  --text-muted: rgba(255,255,255,0.55);
  --surface: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.2);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.25);
  --shadow-xl: 0 24px 70px rgba(0,0,0,0.3);
  --shadow-gold: 0 8px 30px rgba(212,175,55,0.2);
  --shadow-gold-lg: 0 16px 50px rgba(212,175,55,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --fast: 0.2s;
  --smooth: 0.4s;
  --slow: 0.7s;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--navy);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container-max {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Particles Canvas --- */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--smooth) var(--ease);
  padding: 1.25rem 0;
}

.navbar-scrolled {
  background: rgba(11, 20, 38, 0.92);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4), 0 1px 0 rgba(212,175,55,0.15), 0 0 60px rgba(212,175,55,0.03);
  padding: 0.5rem 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1.5px solid transparent;
  color: var(--white-80);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  white-space: nowrap;
  transition: all var(--fast) var(--ease);
  position: relative;
}

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

.nav-link:hover {
  color: var(--white);
  background: var(--white-10);
}

.nav-link:hover::after {
  width: 50%;
  left: 25%;
}

.nav-link.active {
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.25);
}

.nav-link.active::after {
  width: 50%;
  left: 25%;
}

/* --- Mobile Menu --- */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  width: 36px;
  height: 36px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  margin: 5px auto;
  border-radius: 2px;
  transition: all 0.35s ease;
}

.mobile-menu {
  display: none;
  background: rgba(11, 20, 38, 0.98);
  backdrop-filter: blur(30px);
  margin-top: 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212,175,55,0.1);
  overflow: hidden;
}

.mobile-menu.open {
  display: block;
  animation: slideDown 0.3s ease-out;
}

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

.mobile-menu-content { padding: 1rem 0.75rem; }

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white-80);
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.25rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--fast) var(--ease);
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  background: rgba(212,175,55,0.1);
  color: var(--gold);
}

/* --- Dropdown --- */
.nav-dropdown { position: relative; display: inline-block; }
.dropdown-toggle { cursor: pointer; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 20, 38, 0.98);
  backdrop-filter: blur(20px);
  min-width: 200px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(212,175,55,0.1);
  z-index: 1000;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fast) var(--ease);
  margin-top: 0;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.dropdown-item {
  display: block;
  padding: 0.8rem 1.2rem;
  color: var(--white-80);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--fast) var(--ease);
}

.dropdown-item:hover {
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  padding-left: 1.5rem;
}

/* --- Language Switcher --- */
.language-switcher {
  position: relative;
  display: inline-block;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.lang-toggle {
  background: rgba(212,175,55,0.08);
  border: 1.5px solid rgba(212,175,55,0.25);
  color: var(--gold-light);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: all var(--fast) var(--ease);
  white-space: nowrap;
}

.lang-toggle:hover {
  background: rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.4);
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(11, 20, 38, 0.98);
  backdrop-filter: blur(20px);
  min-width: 155px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(212,175,55,0.1);
  z-index: 1000;
  padding: 0.5rem;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  color: var(--white-80);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--fast) var(--ease);
}

.lang-item:hover {
  background: rgba(212,175,55,0.12);
  color: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  animation: heroKenBurns 25s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11,20,38,0.7) 0%, rgba(26,45,85,0.5) 50%, rgba(11,20,38,0.8) 100%);
}

@keyframes heroKenBurns {
  0% { 
    transform: scale(1.1) translate(0, 0) rotate(0deg); 
  }
  25% { 
    transform: scale(1.15) translate(-2%, 1%) rotate(0.5deg); 
  }
  50% { 
    transform: scale(1.2) translate(1%, -1%) rotate(-0.3deg); 
  }
  75% { 
    transform: scale(1.15) translate(-1%, 2%) rotate(0.2deg); 
  }
  100% { 
    transform: scale(1.25) translate(2%, -2%) rotate(-0.5deg); 
  }
}

/* Floating overlay effect for underwater feel */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(14, 165, 199, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
  animation: overlayFloat 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes overlayFloat {
  0%, 100% { 
    opacity: 0.6; 
    transform: translateX(0) translateY(0);
  }
  33% { 
    opacity: 0.8; 
    transform: translateX(10px) translateY(-5px);
  }
  66% { 
    opacity: 0.5; 
    transform: translateX(-5px) translateY(10px);
  }
}

/* Light ray effect */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 55%,
    transparent 60%
  );
  animation: lightRay 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
  line-height: 1.08;
}

.hero-content p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--white-80);
  line-height: 1.8;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollLine {
  0% { opacity: 0; height: 0; }
  50% { opacity: 1; height: 40px; }
  100% { opacity: 0; height: 40px; }
}

/* ============================================
   PAGE HEADER (Sub-pages)
   ============================================ */
.page-header {
  color: white;
  text-align: center;
  padding: 10rem 2rem 5rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11,20,38,0.7) 0%, rgba(26,45,85,0.5) 100%);
}

.page-header > * { position: relative; z-index: 1; }

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--white-60);
  max-width: 550px;
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--smooth) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before { left: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-gold-lg), 0 0 25px rgba(212,175,55,0.3);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(212,175,55,0.4);
}

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

.btn-coral {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(232,93,38,0.3);
}

.btn-coral:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232,93,38,0.4);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.8rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ============================================
   CARDS — Glass / Dark
   ============================================ */
.gc-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--smooth) var(--ease);
  position: relative;
}

.gc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.06), transparent);
  transition: left 0.7s ease;
  z-index: 1;
  pointer-events: none;
}

.gc-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(212,175,55,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 40px rgba(212,175,55,0.08), inset 0 1px 0 rgba(212,175,55,0.1);
}

.gc-card:hover::before { left: 100%; }

.gc-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--slow) var(--ease);
}

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

.gc-card-body {
  padding: 1.75rem;
}

.gc-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.gc-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 3rem 0;
}

.service-card {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 40px rgba(212,175,55,0.08);
}
.service-card--kite:hover {
  border-color: rgba(255,107,107,0.3);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 40px rgba(255,107,107,0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.06), transparent);
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.service-card:hover::before { left: 100%; }

.service-card-visual {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,20,38,0.7) 100%);
  transition: opacity 0.5s ease;
  z-index: 1;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(180deg, rgba(212,175,55,0.08) 0%, rgba(11,20,38,0.8) 100%);
}
.service-card:hover .service-card-overlay--coral {
  background: linear-gradient(180deg, rgba(255,107,107,0.08) 0%, rgba(11,20,38,0.8) 100%);
}

.service-card-content { padding: 2rem; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
  transition: color 0.3s ease;
}
.service-card--diving:hover h3 { color: var(--gold-light); }
.service-card--kite:hover h3 { color: var(--coral-light); }

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Service Badge */
.service-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  background: var(--gold);
  z-index: 3;
  box-shadow: 0 4px 15px rgba(212,175,55,0.4);
  transition: all 0.4s ease;
}
.service-badge--coral {
  background: var(--coral);
  box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}
.service-card:hover .service-badge {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.5);
}
.service-card:hover .service-badge--coral {
  box-shadow: 0 6px 20px rgba(255,107,107,0.5);
}

/* Floating Icon */
.service-icon-float {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 56px;
  height: 56px;
  background: rgba(212,175,55,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 3;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3), inset 0 0 20px rgba(212,175,55,0.1);
}
.service-icon-float--coral {
  background: rgba(255,107,107,0.15);
  border-color: rgba(255,107,107,0.3);
  color: var(--coral-light);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3), inset 0 0 20px rgba(255,107,107,0.1);
}
.service-card:hover .service-icon-float {
  transform: translateY(-6px) scale(1.12);
  background: rgba(212,175,55,0.25);
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 12px 35px rgba(212,175,55,0.3), inset 0 0 25px rgba(212,175,55,0.15);
}
.service-card:hover .service-icon-float--coral {
  background: rgba(255,107,107,0.25);
  border-color: rgba(255,107,107,0.5);
  box-shadow: 0 12px 35px rgba(255,107,107,0.3), inset 0 0 25px rgba(255,107,107,0.15);
}

/* Animated Particles */
.service-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.service-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-particles--coral span { background: var(--coral-light); }
.service-card:hover .service-particles span { opacity: 1; }

.service-particles span:nth-child(1) {
  bottom: 20%;
  left: 15%;
  animation: floatParticle 3s ease-in-out infinite;
}
.service-particles span:nth-child(2) {
  bottom: 35%;
  left: 70%;
  animation: floatParticle 3.5s ease-in-out 0.5s infinite;
  width: 3px;
  height: 3px;
}
.service-particles span:nth-child(3) {
  bottom: 55%;
  left: 40%;
  animation: floatParticle 4s ease-in-out 1s infinite;
  width: 5px;
  height: 5px;
}
.service-particles span:nth-child(4) {
  bottom: 10%;
  left: 85%;
  animation: floatParticle 3.2s ease-in-out 0.3s infinite;
}
.service-particles span:nth-child(5) {
  bottom: 45%;
  left: 25%;
  animation: floatParticle 3.8s ease-in-out 0.8s infinite;
  width: 3px;
  height: 3px;
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 0.7; }
  50% { transform: translateY(-30px) scale(1.3); opacity: 0.4; }
  80% { opacity: 0.7; }
}

/* Service Card Links */
.service-card-link {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}
.service-card-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  transition: width 0.3s ease;
}
.service-card-link--gold {
  color: var(--gold);
}
.service-card-link--gold::after {
  background: var(--gold);
}
.service-card-link--coral {
  color: var(--coral-light);
}
.service-card-link--coral::after {
  background: var(--coral-light);
}
.service-card-link:hover::after { width: 100%; }
.service-card-link:hover { gap: 0.75rem; }

/* --- Enhanced Feature Cards (About & Why Us) --- */
.feature-card {
  position: relative;
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.05), transparent);
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 0;
}
.feature-card:hover::before { left: 100%; }
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3), 0 0 30px rgba(212,175,55,0.06);
}
.feature-card--teal:hover {
  border-color: rgba(0,188,212,0.3);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3), 0 0 30px rgba(0,188,212,0.06);
}
.feature-card--coral:hover {
  border-color: rgba(255,107,107,0.3);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3), 0 0 30px rgba(255,107,107,0.06);
}
.feature-card--purple:hover {
  border-color: rgba(124,92,191,0.3);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3), 0 0 30px rgba(124,92,191,0.06);
}

/* Feature Card Top Border */
.feature-card-border { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.feature-card-border--gold { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.feature-card-border--teal { background: linear-gradient(90deg, var(--teal), var(--teal-dark)); }
.feature-card-border--coral { background: linear-gradient(90deg, var(--coral), var(--coral-light)); }
.feature-card-border--purple { background: linear-gradient(90deg, #7C5CBF, #9B7FD4); }
.feature-card:hover .feature-card-border { height: 4px; }

/* Feature Icon */
.feature-icon {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}
.feature-icon--gold {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 4px 15px rgba(212,175,55,0.1);
}
.feature-icon--teal {
  background: linear-gradient(135deg, rgba(0,188,212,0.15), rgba(0,188,212,0.05));
  border: 1px solid rgba(0,188,212,0.2);
  box-shadow: 0 4px 15px rgba(0,188,212,0.1);
}
.feature-icon--coral {
  background: linear-gradient(135deg, rgba(255,107,107,0.15), rgba(255,107,107,0.05));
  border: 1px solid rgba(255,107,107,0.2);
  box-shadow: 0 4px 15px rgba(255,107,107,0.1);
}
.feature-icon--purple {
  background: linear-gradient(135deg, rgba(124,92,191,0.15), rgba(124,92,191,0.05));
  border: 1px solid rgba(124,92,191,0.2);
  box-shadow: 0 4px 15px rgba(124,92,191,0.1);
}
.feature-card:hover .feature-icon {
  transform: translateY(-4px) scale(1.08);
}
.feature-card:hover .feature-icon--gold {
  background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(212,175,55,0.1));
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 8px 25px rgba(212,175,55,0.2), inset 0 0 15px rgba(212,175,55,0.1);
}
.feature-card:hover .feature-icon--teal {
  background: linear-gradient(135deg, rgba(0,188,212,0.25), rgba(0,188,212,0.1));
  border-color: rgba(0,188,212,0.4);
  box-shadow: 0 8px 25px rgba(0,188,212,0.2), inset 0 0 15px rgba(0,188,212,0.1);
}
.feature-card:hover .feature-icon--coral {
  background: linear-gradient(135deg, rgba(255,107,107,0.25), rgba(255,107,107,0.1));
  border-color: rgba(255,107,107,0.4);
  box-shadow: 0 8px 25px rgba(255,107,107,0.2), inset 0 0 15px rgba(255,107,107,0.1);
}
.feature-card:hover .feature-icon--purple {
  background: linear-gradient(135deg, rgba(124,92,191,0.25), rgba(124,92,191,0.1));
  border-color: rgba(124,92,191,0.4);
  box-shadow: 0 8px 25px rgba(124,92,191,0.2), inset 0 0 15px rgba(124,92,191,0.1);
}

/* Feature Card Title */
.feature-card h3, .feature-card h4 {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.feature-card:hover h3, .feature-card:hover h4 { color: var(--gold-light); }
.feature-card--teal:hover h3, .feature-card--teal:hover h4 { color: var(--teal); }
.feature-card--coral:hover h3, .feature-card--coral:hover h4 { color: var(--coral-light); }
.feature-card--purple:hover h3, .feature-card--purple:hover h4 { color: #B8A2E0; }

/* Feature Particles */
.feature-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.feature-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-particles--teal span { background: var(--teal); }
.feature-particles--coral span { background: var(--coral-light); }
.feature-particles--purple span { background: #9B7FD4; }
.feature-card:hover .feature-particles span { opacity: 1; }

.feature-particles span:nth-child(1) {
  top: 15%;
  right: 10%;
  animation: featureFloat 3s ease-in-out infinite;
}
.feature-particles span:nth-child(2) {
  bottom: 20%;
  right: 25%;
  animation: featureFloat 3.5s ease-in-out 0.6s infinite;
  width: 3px;
  height: 3px;
}
.feature-particles span:nth-child(3) {
  top: 50%;
  right: 15%;
  animation: featureFloat 4s ease-in-out 1.2s infinite;
  width: 5px;
  height: 5px;
}

@keyframes featureFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
  25% { opacity: 0.6; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 0.3; }
  75% { opacity: 0.6; }
}

/* Feature Card Corner Glow */
.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.feature-card:hover::after { opacity: 1; }
.feature-card--teal::after { background: radial-gradient(circle, rgba(0,188,212,0.04) 0%, transparent 70%); }
.feature-card--coral::after { background: radial-gradient(circle, rgba(255,107,107,0.04) 0%, transparent 70%); }
.feature-card--purple::after { background: radial-gradient(circle, rgba(124,92,191,0.04) 0%, transparent 70%); }

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
  padding: 6rem 2rem;
  position: relative;
}

/* ============================================
   FORMS (Dark theme)
   ============================================ */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--white-60);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.15rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--white);
  background: rgba(255,255,255,0.04);
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease), background var(--fast) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
  background: rgba(255,255,255,0.06);
}

.form-select option {
  background: var(--navy-light);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* --- Radio Options --- */
.radio-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--fast) var(--ease);
  background: var(--surface);
}

.radio-option:hover {
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.04);
}

.radio-option.selected {
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.radio-option input { display: none; }

/* --- Booking Form --- */
.booking-form {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.success-message {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(212,175,55,0.2);
}

.success-icon {
  color: var(--gold);
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white-80);
  padding: 5rem 0 1.5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: left;
}

.footer-section h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.footer-section p,
.footer-section a {
  color: var(--white-60);
  text-decoration: none;
  margin-bottom: 0.6rem;
  display: block;
  font-size: 0.9rem;
  line-height: 1.6;
  transition: color var(--fast) var(--ease);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Newsletter --- */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
}

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

.newsletter-form button {
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--fast) var(--ease);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

/* --- Social Links --- */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  font-size: 1rem;
  transition: all var(--fast) var(--ease);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all var(--smooth) var(--ease);
  cursor: pointer;
  text-decoration: none;
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  0% { transform: translateX(-60px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

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

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

@keyframes windSway {
  0%, 100% { transform: translateX(0px) rotate(0deg); }
  50% { transform: translateX(6px) rotate(1deg); }
}

@keyframes goldGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.25);
  }
  50% {
    box-shadow: 0 0 30px rgba(212,175,55,0.3);
    border-color: rgba(212,175,55,0.45);
  }
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

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

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

/* --- Utility Classes --- */
.glass-effect {
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }

.slide-in-left {
  animation: slideInLeft 0.9s var(--ease) forwards;
  opacity: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #fff5d4, var(--gold-light), var(--gold));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s ease infinite;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.15));
}

.text-gradient-coral {
  background: linear-gradient(135deg, var(--coral), var(--coral-light), var(--coral));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease infinite;
}

.hover-lift {
  transition: all var(--smooth) var(--ease);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.float-icon { animation: float 4s ease-in-out infinite; }
.wave-icon { animation: wave 3s ease-in-out infinite; }
.wind-effect { animation: windSway 4s ease-in-out infinite; }
.glow-card { animation: goldGlow 5s ease-in-out infinite; }
.pulse-button { animation: pulse 3s ease-in-out infinite; }
.bounce-icon { display: inline-block; animation: bounce 1.5s ease-in-out infinite; }

/* --- Gold decorative elements --- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  margin: 1.5rem 0;
}

.gold-divider-center {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  margin: 1.5rem auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.76rem;
  }

  .logo img { height: 50px !important; }

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .language-switcher { display: none; }

  .hero-content h1 { font-size: 2.5rem !important; }
  .hero-content p { font-size: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .radio-group { grid-template-columns: 1fr; }

  .page-header { padding: 8rem 1.5rem 3rem; }
  .page-header h1 { font-size: 2rem; }
  .content-section { padding: 3.5rem 1.25rem; }
  .section-title { font-size: 1.8rem !important; }

  .hero, .page-header { padding: 0 1.5rem !important; }
  .wind-effect { animation-delay: 0s !important; }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links { justify-content: center; }
  .newsletter-form { flex-direction: column; }

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

  .dropdown-menu {
    position: static;
    display: block;
    background: rgba(11, 20, 38, 0.95);
    box-shadow: none;
    margin: 0.5rem 0;
    border-radius: var(--radius-sm);
    transform: none;
  }

  .nav-dropdown:hover .dropdown-menu { display: block; }

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .container-max { padding: 0 1rem; }
  .hero h1, .page-header h1 { font-size: 1.8rem !important; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* ============================================
   LOGO STYLING
   ============================================ */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.logo:hover::after {
  opacity: 1;
}

.logo img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(212,175,55,0.15));
  transition: all 0.3s ease;
}

.logo:hover img {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.25));
}

@media (max-width: 768px) {
  .logo img { height: 48px; }
}

@media (max-width: 480px) {
  .logo img { height: 42px; }
}

/* ============================================
   ENHANCED MOBILE RESPONSIVENESS
   ============================================ */

/* Prevent horizontal scroll */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ---- Tablet: 768px ---- */
@media (max-width: 768px) {

  /* ===== FORCE ALL INLINE GRIDS TO SINGLE COLUMN =====
     Uses attribute selectors to override inline style="" grids */
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns: 1.2fr"],
  [style*="grid-template-columns: repeat(auto-fit"],
  .trip-grid,
  .form-2col,
  .form-3col,
  .contact-grid,
  .booking-grid,
  .trips-grid,
  .itinerary-list,
  .quick-contact-grid,
  .maps-grid,
  .radio-group {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* 2-column grids → single column */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: repeat(2"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Large gaps → smaller on mobile */
  [style*="gap: 5rem"] {
    gap: 2rem !important;
  }
  [style*="gap: 4rem"] {
    gap: 1.5rem !important;
  }
  [style*="gap: 3rem"] {
    gap: 1.25rem !important;
  }

  /* Flex rows that should stack */
  [style*="display: flex"][style*="gap"] {
    flex-wrap: wrap !important;
  }

  /* ===== HOME PAGE — services grid minmax fix ===== */
  .services-grid,
  .services-grid[style] {
    grid-template-columns: 1fr !important;
  }

  /* Home about section */
  .home-about-grid,
  .home-about-grid[style] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Stats bar */
  .stats-bar,
  .stats-bar[style] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    padding: 2rem 0 !important;
  }

  /* ===== TOUCH TARGETS ===== */
  .btn, .mobile-menu-link, .gc-card {
    min-height: 44px;
  }

  input, select, textarea {
    font-size: 16px !important;
    min-height: 44px;
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 60vh !important;
    padding-top: 80px !important;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    line-height: 1.2 !important;
  }

  .hero-content p {
    font-size: 0.95rem !important;
    line-height: 1.6;
  }

  /* ===== SECTIONS ===== */
  .content-section {
    padding: 2.5rem 1rem !important;
  }

  .section-title {
    font-size: 1.5rem !important;
  }

  h2 { font-size: 1.4rem !important; }
  h3 { font-size: 1.1rem !important; }

  /* ===== NAVBAR & MOBILE MENU ===== */
  .nav-links { display: none !important; }
  .mobile-menu-btn { display: block !important; }

  .mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 20, 38, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    overflow-y: auto;
  }

  .mobile-menu-content {
    padding: 1.5rem 1rem;
  }

  .mobile-menu-link {
    font-size: 1.1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
  }

  /* ===== FORMS ===== */
  .contact-form-wrapper {
    padding: 1.5rem !important;
  }

  /* ===== TABLES — horizontal scroll ===== */
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  /* ===== CARDS ===== */
  .gc-card-body {
    padding: 1.25rem !important;
  }

  /* ===== IMAGES ===== */
  img[style*="height: 420px"],
  img[style*="height: 400px"],
  img[style*="height: 380px"] {
    height: 220px !important;
  }

  img[style*="height: 280px"],
  img[style*="height: 300px"] {
    height: 200px !important;
  }

  /* ===== FOOTER ===== */
  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2rem;
  }

  .social-links { justify-content: center; }
  .newsletter-form { flex-direction: column; }
  .gold-divider { margin-left: auto; margin-right: auto; }

  /* ===== STATS ===== */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
    padding: 1rem;
  }

  /* ===== WHATSAPP FLOAT ===== */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }

  /* ===== HERO BUTTON GROUPS ===== */
  .hero-content > [style*="display: flex"] {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.75rem !important;
  }

  .hero-content .btn {
    flex: 1 1 auto;
    min-width: 140px;
    text-align: center;
  }

  /* ===== BOOKING PAGE SPECIFICS ===== */
  .booking-trip-card {
    min-height: auto !important;
  }

  .trust-badge {
    font-size: 0.75rem;
  }

  /* ===== ITINERARY TABLES ===== */
  [style*="overflow-x: auto"] {
    -webkit-overflow-scrolling: touch;
  }

  /* ===== CONTACT PAGE SPECIFICS ===== */
  .contact-card {
    padding: 1.25rem !important;
  }

  /* ===== FAQ ===== */
  .faq-item {
    padding: 1rem;
  }

  /* ===== MISC SPACING ===== */
  [style*="padding: 5rem"],
  [style*="padding: 4rem"] {
    padding: 2.5rem 1rem !important;
  }

  [style*="margin-top: 4rem"] {
    margin-top: 2rem !important;
  }

  [style*="margin-bottom: 4rem"],
  [style*="margin-bottom: 5rem"] {
    margin-bottom: 2rem !important;
  }

  /* ===== FONT CLAMP FIXES ===== */
  [style*="font-size: clamp(2"],
  [style*="font-size: clamp(3"] {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
  }

  [style*="font-size: 2.5rem"],
  [style*="font-size: 2rem"],
  [style*="font-size: 3rem"] {
    font-size: 1.5rem !important;
  }
}

/* ---- Small phones: 480px ---- */
@media (max-width: 480px) {
  .container-max {
    padding: 0 0.75rem;
  }

  .hero {
    min-height: 55vh !important;
  }

  .hero-content h1 {
    font-size: 1.5rem !important;
  }

  .content-section {
    padding: 2rem 0.75rem !important;
  }

  .navbar-container {
    padding: 0.5rem 0.75rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
  }

  .gc-card-body {
    padding: 1rem !important;
  }

  /* About page min-width fix */
  [style*="minmax(380px"] {
    grid-template-columns: 1fr !important;
  }
}

/* ---- Landscape on short screens ---- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto !important;
    padding: 90px 1rem 2rem !important;
  }

  .mobile-menu {
    top: 60px;
  }
}

/* ---- Safe area for notched devices ---- */
@supports (padding-top: env(safe-area-inset-top)) {
  .navbar {
    padding-top: env(safe-area-inset-top);
  }

  .mobile-menu {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ---- Touch device tweaks ---- */
@media (pointer: coarse) {
  .btn, .nav-link, .mobile-menu-link, .gc-card, a {
    touch-action: manipulation;
  }
}

/* ============================================
   TEAM PROFILE — Lisa Card
   ============================================ */
.team-profile-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.team-profile-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--smooth) var(--ease);
  position: relative;
}

.team-profile-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
  background-size: 200% 100%;
  animation: shimmer 4s ease infinite;
}

.team-profile-card:hover {
  border-color: rgba(212,175,55,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 40px rgba(212,175,55,0.08);
}

.team-profile-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.team-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s ease;
}

.team-profile-card:hover .team-profile-photo img {
  transform: scale(0.95);
}

.team-profile-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(11,20,38,0.95) 0%, rgba(11,20,38,0.6) 60%, transparent 100%);
}

.team-profile-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.35rem;
}

.team-profile-role {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
}

.team-profile-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-profile-greeting {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.team-profile-greeting span:first-child {
  font-weight: 700;
  color: white;
  font-size: 1.15rem;
  font-family: var(--font-heading);
}

.team-profile-emoji {
  font-size: 1.2rem;
}

.team-profile-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.team-profile-quote {
  background: rgba(212,175,55,0.06);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 1rem 0;
}

.team-profile-quote p {
  color: var(--white-80) !important;
  font-style: italic;
  margin: 0 !important;
  line-height: 1.7;
  font-size: 0.95rem;
}

.team-profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.team-badge {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.team-badge-teal {
  background: rgba(14,165,199,0.12);
  color: var(--teal);
  border: 1px solid rgba(14,165,199,0.3);
}

.team-badge-gold {
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
}

.team-badge-coral {
  background: rgba(230,100,80,0.12);
  color: var(--coral-light);
  border: 1px solid rgba(230,100,80,0.3);
}

.team-badge-purple {
  background: rgba(124,92,191,0.12);
  color: #a78bfa;
  border: 1px solid rgba(124,92,191,0.3);
}

.team-profile-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.team-profile-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== TEAM PROFILE MOBILE ===== */
@media (max-width: 768px) {
  .team-profile-card {
    grid-template-columns: 1fr !important;
  }

  .team-profile-photo {
    min-height: 320px;
  }

  .team-profile-content {
    padding: 1.75rem 1.25rem;
  }

  .team-profile-greeting {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .team-profile-greeting span:first-child {
    font-size: 1.05rem;
  }

  .team-profile-actions {
    flex-direction: column;
  }

  .team-profile-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .team-profile-name {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .team-profile-photo {
    min-height: 280px;
  }

  .team-profile-content {
    padding: 1.5rem 1rem;
  }

  .team-profile-content p {
    font-size: 0.9rem;
  }

  .team-badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.7rem;
  }
}

/* ============================================
   ADDITIONAL MOBILE FIXES — Inline style overrides
   ============================================ */
@media (max-width: 768px) {

  /* ===== WEATHER WIDGET ===== */
  .weather-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1.25rem !important;
    width: 100%;
  }

  .weather-card > div:last-child {
    padding-left: 0 !important;
    border-left: none !important;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    width: 100%;
  }

  .weather-bar {
    padding: 1rem 0 !important;
  }

  /* ===== GALLERY SCROLL IMAGES ===== */
  .gallery-scroll img {
    width: 240px !important;
    height: 165px !important;
  }

  /* ===== ABOUT PAGE ===== */
  blockquote {
    font-size: 1rem !important;
    padding-left: 1rem !important;
    margin: 1.5rem auto !important;
  }

  /* About section image */
  .home-about-grid .float-icon img,
  img[style*="max-height: 420px"] {
    max-height: 280px !important;
  }

  .float-icon {
    animation: none !important;
  }

  /* ===== CTA SECTIONS ===== */
  section[style*="padding: 6rem"] {
    padding: 3rem 1.25rem !important;
  }

  /* Hero description text */
  p[style*="font-size: 1.3rem"] {
    font-size: 1rem !important;
  }

  p[style*="font-size: 1.05rem"] {
    font-size: 0.95rem !important;
  }

  /* ===== CARDS WITH INLINE PADDING ===== */
  .gc-card[style*="padding: 3rem"],
  .gc-card[style*="padding: 2.5rem"] {
    padding: 1.5rem !important;
  }

  .gc-card[style*="padding: 1.75rem"] {
    padding: 1.25rem !important;
  }

  .gc-card[style*="padding: 1.5rem"] {
    padding: 1.25rem !important;
  }

  /* ===== TRIP CARDS — keep images edge-to-edge ===== */
  .gc-card[style*="flex-direction: column"] {
    padding: 0 !important;
  }

  .gc-card[style*="flex-direction: column"] > div[style*="padding: 1.75rem"] {
    padding: 1.25rem !important;
  }

  /* ===== SERVICE CARDS ===== */
  .service-card-content {
    padding: 1.25rem !important;
  }

  /* ===== MAX-WIDTH CONTAINERS ===== */
  [style*="max-width: 900px"],
  [style*="max-width: 800px"],
  [style*="max-width: 700px"],
  [style*="max-width: 680px"],
  [style*="max-width: 1000px"],
  [style*="max-width: 1100px"] {
    max-width: 100% !important;
  }

  /* ===== SECTION MIN-HEIGHTS ===== */
  section[style*="min-height: 80vh"] {
    min-height: 55vh !important;
  }

  section[style*="min-height: 70vh"] {
    min-height: 50vh !important;
  }

  section[style*="min-height: 55vh"] {
    min-height: 45vh !important;
  }

  section[style*="min-height: 50vh"] {
    min-height: 40vh !important;
  }

  /* ===== INLINE FONT SIZES ===== */
  [style*="font-size: 1.75rem"] {
    font-size: 1.25rem !important;
  }

  [style*="font-size: 1.6rem"] {
    font-size: 1.2rem !important;
  }

  /* ===== TEAM PROFILE ===== */
  .team-profile-card {
    padding: 0 !important;
  }

  /* ===== FAQ ===== */
  .faq-quick-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .faq-stat {
    min-width: unset !important;
  }

  .faq-tabs {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  /* ===== REVIEWS GRID ===== */
  .gc-card[style*="text-align: left"] {
    padding: 1.25rem !important;
  }

  /* ===== CONTACT CARD GRID ===== */
  .quick-contact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .contact-card {
    padding: 1.25rem !important;
  }

  /* ===== ITINERARY TIMELINE ===== */
  [style*="padding-left: 2.5rem"] {
    padding-left: 2rem !important;
  }

  /* ===== CONTACT STRIP (Booking page bottom) ===== */
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    margin-top: 2rem !important;
  }

  /* Booking page contact cards */
  .gc-card[style*="padding: 1.75rem"][style*="text-align: center"] {
    padding: 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    text-align: left !important;
  }

  .gc-card[style*="padding: 1.75rem"][style*="text-align: center"] > div:first-child {
    margin: 0 !important;
    flex-shrink: 0;
  }

  .gc-card[style*="padding: 1.75rem"][style*="text-align: center"] h3 {
    margin-bottom: 0.15rem !important;
    font-size: 0.85rem !important;
  }

  .gc-card[style*="padding: 1.75rem"][style*="text-align: center"] p {
    font-size: 0.8rem !important;
  }

  /* ===== CTA BUTTON ROWS (not in hero) ===== */
  section > div > [style*="display: flex"][style*="justify-content: center"][style*="flex-wrap: wrap"] {
    gap: 0.75rem !important;
  }

  /* ===== HIDE REVIEWS & BOOKING CONTACT ON MOBILE ===== */
  .reviews-section,
  .booking-contact-strip {
    display: none !important;
  }

  /* ===== LIGHTBOX ===== */
  .lightbox-overlay img {
    max-width: 95vw !important;
    max-height: 70vh !important;
  }

  .lightbox-close {
    top: 1rem !important;
    right: 1rem !important;
  }

  /* ===== INLINE MARGIN BOTTOM ===== */
  [style*="margin-bottom: 4rem"] {
    margin-bottom: 2rem !important;
  }

  [style*="margin-bottom: 5rem"] {
    margin-bottom: 2rem !important;
  }

  /* ===== SCROLL INDICATOR ===== */
  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  /* Gallery scroll images smaller on phones */
  .gallery-scroll img {
    width: 200px !important;
    height: 140px !important;
  }

  /* Value cards */
  .gc-card[style*="border: 1px solid rgba(212,175,55,0.1)"] {
    padding: 1.25rem !important;
  }

  /* FAQ stat value size */
  .faq-stat-value {
    font-size: 1.5rem !important;
  }

  /* Contact cards single column on small phones */
  .quick-contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* Weather temp size */
  #home-weather-temp {
    font-size: 1.5rem !important;
  }

  /* Review cards */
  .gc-card[style*="text-align: left"] p {
    font-size: 0.85rem !important;
  }

  /* Trip card inner padding */
  .gc-card[style*="flex-direction: column"] > div[style*="padding: 1.75rem"] {
    padding: 1rem !important;
  }
}

/* ============================================
   MICRO-INTERACTIONS — Premium Feel
   ============================================ */

/* ===== CARD HOVER LIFT with SHADOW EXPANSION ===== */
.gc-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease !important;
}

.gc-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 
              0 0 30px rgba(212,175,55,0.15) !important;
  border-color: rgba(212,175,55,0.25) !important;
}

/* ===== STAGGERED FADE-IN on SCROLL ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for cards in a grid */
.gc-card:nth-child(1).visible { transition-delay: 0s; }
.gc-card:nth-child(2).visible { transition-delay: 0.1s; }
.gc-card:nth-child(3).visible { transition-delay: 0.2s; }
.gc-card:nth-child(4).visible { transition-delay: 0.3s; }

/* ===== SMOOTH NUMBER COUNTING ===== */
.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ===== BUTTON RIPPLE EFFECT ===== */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Pulse animation for attention elements */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
  50% { box-shadow: 0 0 0 15px rgba(212,175,55,0); }
}

.pulse-gold {
  animation: pulse 2s ease-in-out infinite;
}

/* ===== SUBTLE SECTION REVEALS ===== */
section {
  opacity: 0.95;
  transition: opacity 0.5s ease;
}

section:hover {
  opacity: 1;
}

/* ===== GOLD ACCENT GLOW on HOVER ===== */
.hover-glow {
  transition: filter 0.3s ease;
}

.hover-glow:hover {
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.5));
}

/* ===== TEXT REVEAL ANIMATION ===== */
@keyframes textReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

.text-reveal {
  animation: textReveal 0.8s ease forwards;
}

/* ===== FLOATING ANIMATION for HERO ICONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* ===== GRADIENT SHIMMER on CARDS ===== */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.card-shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212,175,55,0.05) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* ============================================
   PAGE LOADING OVERLAY
   ============================================ */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(212,175,55,0.15);
  border-top: 3px solid var(--gold);
  border-radius: 50%;
  animation: loaderSpin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

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

.loader-text {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* ============================================
   PAGE TRANSITIONS
   ============================================ */
body {
  animation: pageFadeIn 0.4s ease forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body.page-leaving {
  animation: pageFadeOut 0.25s ease forwards;
}

@keyframes pageFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  color: var(--gold);
  text-decoration: none;
}

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

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.3);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 42px;
    height: 42px;
  }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-text {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--gold);
  color: var(--navy-dark);
}

.cookie-btn-accept:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

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

.cookie-btn-decline:hover {
  border-color: rgba(255,255,255,0.3);
  color: white;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-text {
    font-size: 0.82rem;
    min-width: unset;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ============================================
   STICKY BOOK NOW BAR
   ============================================ */
.sticky-book-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  border-bottom: 1px solid rgba(212,175,55,0.25);
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.sticky-book-bar.visible {
  transform: translateY(0);
}
.sticky-book-bar-text {
  color: var(--white-80);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}
.sticky-book-bar-text strong {
  color: var(--gold-light);
  font-weight: 700;
}
.sticky-book-bar .btn {
  padding: 0.45rem 1.25rem;
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .sticky-book-bar {
    padding: 0.5rem 1rem;
  }
  .sticky-book-bar-text span.hide-mobile {
    display: none;
  }
}

/* ============================================
   MARINE LIFE CARDS
   ============================================ */
.marine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) {
  .marine-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .marine-grid { grid-template-columns: repeat(2, 1fr); }
}
.marine-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: default;
  border: 1px solid var(--border);
  background: var(--navy-light);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
  text-align: center;
  padding: 1.5rem 1rem;
}
.marine-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(212,175,55,0.06);
}
.marine-card-emoji {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: transform 0.4s var(--ease-bounce);
}
.marine-card:hover .marine-card-emoji {
  transform: scale(1.15) rotate(-5deg);
}
.marine-card-name {
  color: white;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}
.marine-card-spot {
  color: var(--gold-light);
  font-size: 0.75rem;
  font-family: var(--font-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 995;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(11, 20, 38, 0.95);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-family: var(--font-accent);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(212,175,55,0.2);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@media (max-width: 768px) {
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float .whatsapp-tooltip { display: none; }
}

/* ============================================
   GOLD PROGRESS BAR (PAGE TRANSITIONS)
   ============================================ */
.page-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 99999;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(212,175,55,0.5);
}
.page-progress-bar.loading { width: 85%; transition: width 8s cubic-bezier(0.1, 0.05, 0, 1); }
.page-progress-bar.done { width: 100%; transition: width 0.2s ease; opacity: 0; transition: width 0.2s ease, opacity 0.3s ease 0.2s; }

/* ============================================
   MICRO-INTERACTIONS
   ============================================ */
/* Button press effect */
.btn:active {
  transform: translateY(0) scale(0.97) !important;
  transition-duration: 0.1s;
}

/* Input focus glow */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15), 0 0 20px rgba(212,175,55,0.08) !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Card subtle hover glow */
.gc-card:hover {
  box-shadow: 0 16px 50px rgba(0,0,0,0.3), 0 0 30px rgba(212,175,55,0.05);
}

/* Link underline animation for footer */
.footer-section a {
  position: relative;
}
.footer-section a::after {
  content: ;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.footer-section a:hover::after {
  width: 100%;
}

/* Newsletter form polish */
.newsletter-form input:focus {
  background: rgba(255,255,255,0.08);
}
.newsletter-form button:active {
  transform: scale(0.95);
}
.newsletter-success {
  color: #25D366;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: fadeSlideUp 0.4s ease;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   GALLERY LIGHTBOX SWIPE HINT
   ============================================ */
@media (pointer: coarse) {
  .lightbox-nav { opacity: 0.5; width: 45px; height: 45px; }
  .lightbox-content { touch-action: pan-y pinch-zoom; }
}
