/* =====================================================
   Andaman Lavish Tour & Travels — Main Stylesheet
   Design: Premium Light Glassmorphism + Ocean Blue + Coral Gold
   ===================================================== */

/* Google Fonts are now loaded from <head> in index.html (preload + async swap)
   instead of @import here — @import always blocks rendering and cannot
   be deferred, which was causing the "render-blocking requests" warning. */

/* ---- CSS Variables ---- */
:root {
  --ocean-deep: #061121;
  --ocean-mid:  #0F2444;
  --ocean-blue: #0B3D91; /* Primary brand color */
  --sky-blue:   #1E40AF;
  --turquoise:  #0284C7;
  --teal:       #0D9488;
  --gold: #D97706; /* Premium amber gold legible on light background */
  --gold-light: #F59E0B;
  --coral:      #EF4444;
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --text-dark:  #0F172A; /* Main Headings */
  --text-light: #334155; /* Body Text */
  --text-muted: #64748B; /* Captions & Subtitles */
  --card-bg:    #FFFFFF; /* Solid clean white instead of heavy glass */
  --card-border: rgba(15, 23, 42, 0.05);
  --dark-bg:    #F8FAFC; /* Lighter, cleaner page background */
  --nav-height: 80px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 10px rgba(0, 0, 0, 0.03);
  --shadow-md:  0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg:  0 20px 40px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-gutter: stable;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }
p {
  margin-bottom: 1em;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--ocean-blue); border-radius: 3px; }

/* ====================================================
   NAVIGATION
   ==================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: var(--transition);
  background: #FFFFFF;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo .logo-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.2);
  border: 2px solid rgba(2, 132, 199, 0.12);
}
/* ============================================
   BRAND LOGO — Premium Typography
   ============================================ */
.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  line-height: 1;
}

/* ---- Top row: ANDAMAN LAVISH ---- */
.brand-title {
  font-family: 'Playfair Display', 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* "Andaman" — elegant serif with dark navy */
.brand-title .brand-andaman {
  color: #0C1F3D;
  font-weight: 700;
}

/* "Lavish" — luxurious gradient with script accent */
.brand-title .brand-lavish {
  font-family: 'Great Vibes', 'Pacifico', cursive;
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 25%, #FFA500 50%, #D4AF37 75%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
  position: relative;
  text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

/* Subtle shimmer sweep on hover */
.nav-logo:hover .brand-lavish {
  background: linear-gradient(135deg, #FFD700 0%, #FFED4E 20%, #fff8dc 40%, #FFD700 60%, #D4AF37 80%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 1.2s ease infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ---- Bottom row: TOUR & TRAVEL with decorative lines ---- */
.brand-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}

.brand-subtitle .text {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: #2C4A7A;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 1;
}

.brand-subtitle .line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, #FFD700, #D4AF37, transparent);
  min-width: 12px;
  opacity: 1;
}

/* ---- Footer dark version ---- */
footer .brand-title .brand-andaman {
  color: #e2e8f0;
}
footer .brand-title .brand-lavish {
  background: linear-gradient(135deg, #FFD700 0%, #FFED4E 25%, #FFD700 50%, #D4AF37 75%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
footer .brand-subtitle .text {
  color: rgba(200, 220, 255, 0.9);
}
footer .brand-subtitle .line {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), rgba(255, 215, 0, 0.9), rgba(212, 175, 55, 0.8), transparent);
}

.nav-logo .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}
.nav-logo .logo-name .highlight-logo {
  color: var(--gold);
}
.nav-logo .logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active {
  color: var(--ocean-blue);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-book-btn {
  background: linear-gradient(135deg, var(--gold-light), #F5A623);
  color: var(--ocean-deep);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
  letter-spacing: 0.5px;
}
.nav-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 166, 35, 0.45);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/andaman-night-beach-hero.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 28, 49, 0.34) 0%,
    rgba(6, 28, 49, 0.14) 55%,
    rgba(6, 28, 49, 0.08) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.6), transparent);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  color: #ffffff;
  text-shadow: 0 3px 14px rgba(3, 20, 35, 0.72);
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -1px;
}
.hero-title .highlight {
  font-family: 'Great Vibes', 'Pacifico', cursive;
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 30%, #FFA500 50%, #D4AF37 70%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 400;
  letter-spacing: 2px;
  filter: drop-shadow(0 3px 8px rgba(3, 20, 35, 0.6));
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 8px rgba(3, 20, 35, 0.72);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
  background: rgba(3, 20, 35, 0.2);
  text-shadow: 0 1px 4px rgba(3, 20, 35, 0.55);
}
.hero .btn-outline:hover { border-color: #ffffff; color: #ffffff; background: rgba(3, 20, 35, 0.45); }
.btn-primary {
  background: var(--ocean-blue);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(11, 61, 145, 0.2);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--sky-blue); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11, 61, 145, 0.3); }
.btn-outline {
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--ocean-blue); color: var(--ocean-blue); background: rgba(11, 61, 145, 0.05); }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(3, 20, 35, 0.68);
}
.hero-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.92); letter-spacing: 0.5px; margin-top: 2px; text-shadow: 0 2px 8px rgba(3, 20, 35, 0.68); }
.hero-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); align-self: center; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -8px); }
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollDot 1.5s infinite;
}
@keyframes scrollDot { 0%{top:6px;opacity:1} 100%{top:18px;opacity:0} }

/* ====================================================
   SECTION COMMONS
   ==================================================== */
section { padding: 90px 5%; }
.container { max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--turquoise);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.gold-line {
  display: inline-block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--turquoise));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ====================================================
   CARDS (Light Glassmorphism)
   ==================================================== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 61, 145, 0.15);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(11, 61, 145, 0.05);
}

/* ====================================================
   DESTINATIONS / PLACES GRID
   ==================================================== */
.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.place-card { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.place-card-img {
  width: 100%; height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.place-card:hover .place-card-img { transform: scale(1.06); }
.place-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 17, 33, 0.9) 0%, rgba(6, 17, 33, 0.25) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.place-card-tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--ocean-deep);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
  width: fit-content;
}
.place-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.place-card-desc { font-size: 0.84rem; color: rgba(255, 255, 255, 0.8); line-height: 1.5; }
.place-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}
.place-card-meta span { display: flex; align-items: center; gap: 4px; }

/* ====================================================
   PACKAGES
   ==================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.pkg-card { border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.pkg-card-img-wrap { position: relative; height: 220px; overflow: hidden; }
.pkg-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pkg-card:hover .pkg-card-img { transform: scale(1.06); }
.pkg-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pkg-card-body { padding: 24px; }
.pkg-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.pkg-card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.pkg-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pkg-feature {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.78rem;
  color: var(--text-light);
  background: rgba(15, 23, 42, 0.05);
  padding: 4px 12px;
  border-radius: 50px;
}
.pkg-feature .icon { color: var(--turquoise); font-size: 0.85rem; }
.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
}
.pkg-price .amount {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ocean-blue);
}
.pkg-price .per { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: -2px; }
.pkg-price .original {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.btn-book-pkg {
  background: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue));
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(11, 61, 145, 0.2);
}
.btn-book-pkg:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11, 61, 145, 0.35); }

/* ====================================================
   WHY CHOOSE US
   ==================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.feature-card { padding: 32px 28px; text-align: center; background: var(--white); }
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  background: rgba(11, 61, 145, 0.05);
  position: relative;
}
.feature-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--gold), var(--turquoise)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover .feature-icon::after { opacity: 1; }
.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.feature-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ====================================================
   GALLERY
   ==================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item.wide  { grid-column: span 2; }
.gallery-item.tall  { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 61, 145, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 1.8rem;
  color: var(--white);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img { max-height: 85vh; max-width: 90vw; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold-light); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--gold-light); color: var(--ocean-deep); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card { padding: 28px; background: var(--white); }
.testimonial-stars { color: var(--gold-light); font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-loc { font-size: 0.78rem; color: var(--text-muted); }

/* ====================================================
   SERVICES
   ==================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card { padding: 32px; background: var(--white); transition: var(--transition); }
.service-card { cursor: pointer; }
.service-card:hover { border-color: var(--turquoise); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(2, 132, 199, 0.06);
  border: 1px solid rgba(2, 132, 199, 0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(2, 132, 199, 0.12);
  border-color: var(--turquoise);
}
.service-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.service-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ====================================================
   CONTACT SECTION
   ==================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(11, 61, 145, 0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-title { font-weight: 700; color: var(--text-dark); margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-detail { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }

/* ====================================================
   FORM STYLES
   ==================================================== */
.contact-form-card { padding: 40px; background: var(--white); }
.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.contact-form-intro { font-size: 0.95rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.6; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-light); margin-bottom: 6px; letter-spacing: 0.3px; }
.form-control {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--turquoise);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control option { background: var(--white); color: var(--text-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.2);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(217, 119, 6, 0.35); }

/* ====================================================
   ABOUT PAGE
   ==================================================== */
.about-hero { 
  min-height: 60vh; 
  display: flex; 
  align-items: center; 
  padding: 120px 5% 80px; 
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(11, 61, 145, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(2, 132, 199, 0.05) 0%, transparent 60%);
}
.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 80px;
  box-shadow: var(--shadow-sm);
}
.stat-item {
  background: var(--white);
  padding: 40px 20px;
  text-align: center;
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ocean-blue);
  display: block;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.5px; }

/* ====================================================
   BOOKING FORM (Multi-step)
   ==================================================== */
.booking-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  background: var(--white);
}
.step-item.active .step-circle { border-color: var(--gold); color: var(--gold); background: rgba(217, 119, 6, 0.08); }
.step-item.done  .step-circle { border-color: var(--turquoise); background: var(--turquoise); color: var(--white); }
.step-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.step-item.active .step-label { color: var(--gold); }
.step-line { flex: 1; height: 2px; background: var(--card-border); margin: 0 8px; min-width: 40px; }
.step-line.done { background: var(--turquoise); }
.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeInUp 0.4s ease; }
.step-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
}
.btn-next, .btn-prev {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-next { background: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue)); color: var(--white); box-shadow: 0 4px 12px rgba(11, 61, 145, 0.2); }
.btn-next:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11, 61, 145, 0.35); }
.btn-prev { border: 1.5px solid var(--card-border); color: var(--text-light); background: transparent; }
.btn-prev:hover { border-color: var(--gold); color: var(--gold); }

/* ====================================================
   PAGE HERO (for inner pages)
   ==================================================== */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 60px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=80') center/cover no-repeat;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 17, 33, 0.9) 0%, rgba(11, 61, 145, 0.5) 70%, rgba(0, 0, 0, 0.3) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; width: 100%; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--gold-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.5); }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
}
.page-hero-sub { font-size: 1.05rem; color: rgba(255, 255, 255, 0.85); margin-top: 10px; }

/* ====================================================
   MAP EMBED
   ==================================================== */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ====================================================
   FOOTER (Dark contrasting theme for professional look)
   ==================================================== */
footer {
  background: var(--ocean-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 5% 30px;
  color: rgba(255, 255, 255, 0.7);
}
footer h1, footer h2, footer h3, footer h4 {
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto 50px;
}
.footer-brand .logo-name { font-size: 1.3rem; color: var(--white) !important; }
.footer-brand .logo-name .highlight-logo { color: var(--gold-light) !important; }
.footer-brand .logo-sub { color: rgba(255, 255, 255, 0.6) !important; }
.footer-about {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 14px 0 20px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  color: var(--white);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 18px; letter-spacing: 0.5px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }

/* FIX (contrast + "links rely on color"): footer nav links now get a
   faint underline so they're identifiable without relying on color
   alone, and brighten to gold with a solid underline on hover/focus. */
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
}
.footer-links a:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
  padding-left: 4px;
}

/* FIX (contrast): plain footer text (address/hours spans) no longer
   uses --text-muted (#64748B), which fails contrast on this dark
   background. Scoped to the footer only — --text-muted is untouched
   everywhere else on the site. */
footer .footer-links span {
  color: #94A3B8;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--gold-light); }

/* ====================================================
   ANIMATIONS
   ==================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================
   CTA BANNER
   ==================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--turquoise) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  animation: rotateBG 20s linear infinite;
}
@keyframes rotateBG { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 30px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--ocean-blue);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

/* ====================================================
   TOAST NOTIFICATION
   ==================================================== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--white);
  border: 1px solid var(--turquoise);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 9000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  font-size: 0.9rem;
  color: var(--text-dark);
  min-width: 280px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .toast-icon { font-size: 1.3rem; }
.toast .toast-msg { flex: 1; }
.toast.success { border-color: #4CAF50; }
.toast.error   { border-color: var(--coral); }

/* ====================================================
   MOBILE RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-banner { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  section { padding: 70px 5%; }
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 5%;
    gap: 20px;
    border-bottom: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
  }
  .navbar.scrolled .nav-menu {
    background: rgba(255,255,255,0.98);
  }
  .nav-menu.open { display: flex; }
  .nav-link {
    color: var(--text-light);
  }
  .navbar.scrolled .nav-link {
    color: var(--text-light);
  }
  .hamburger { display: flex; }
  .hero-stats { gap: 20px; }
  .hero-divider { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-banner { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .booking-steps { gap: 4px; }
  .step-line { min-width: 20px; }
  .step-label { display: none; }
}

/* ---- Hero Quick Search Bar ---- */
.search-widget {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  max-width: 900px;
  width: 100%;
  box-shadow: var(--shadow-md);
  margin: 30px 0 45px 0;
}
.search-form {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
.search-field {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.search-field label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.search-field select, .search-field input {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
  padding: 6px 0;
  outline: none;
  width: 100%;
  cursor: pointer;
}
.search-field select:focus, .search-field input:focus {
  color: var(--ocean-blue);
}
.search-divider {
  width: 1px;
  height: 40px;
  background: var(--card-border);
}
.btn-search-submit {
  background: var(--ocean-blue);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(11, 61, 145, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-search-submit:hover {
  transform: translateY(-2px);
  background: var(--sky-blue);
  box-shadow: 0 6px 20px rgba(11, 61, 145, 0.25);
}
.field-icon-svg {
  width: 15px;
  height: 15px;
  color: var(--turquoise);
}
@media (max-width: 768px) {
  .search-form {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .search-divider {
    display: none;
  }
  .btn-search-submit {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
  .search-field {
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 10px;
  }
}

/* ====================================================
   FREE QUOTE POPUP
   ==================================================== */
.quote-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 16px;
}
.quote-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.quote-popup {
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  max-width: 400px;
  width: 100%;
  max-height: 90vh;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.quote-popup-overlay.active .quote-popup {
  transform: translateY(0) scale(1);
}
.quote-popup-header {
  background: linear-gradient(135deg, #0b3d91 0%, #0284c7 50%, #0891b2 100%);
  color: white;
  padding: 22px 24px 18px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.quote-popup-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.quote-popup-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.quote-popup-header-content {
  position: relative;
  z-index: 1;
}
.quote-popup-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.quote-popup-icon-wrapper svg {
  width: 32px;
  height: 32px;
  fill: white;
}
.quote-popup-header h3 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 6px;
  padding-right: 50px;
}
.quote-popup-header p {
  opacity: 0.92;
  font-size: 0.9rem;
  padding-right: 50px;
}
.quote-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.quote-popup-close:hover {
  background: rgba(255,255,255,0.35);
  transform: rotate(90deg);
}
.quote-popup-body {
  padding: 20px 22px;
  overflow-y: auto;
  flex: 1;
}
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quote-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.quote-form .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.quote-form .input-icon {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 20px;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.2s;
}
.quote-form input, .quote-form textarea, .quote-form select {
  width: 100%;
  padding: 10px 12px 10px 40px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.2s;
  background: #f8fafc;
}
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus {
  outline: none;
  border-color: var(--ocean-blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(11,61,145,0.08);
}
.quote-form input:focus ~ .input-icon,
.quote-form textarea:focus ~ .input-icon,
.quote-form select:focus ~ .input-icon {
  color: var(--ocean-blue);
}
.quote-form textarea {
  resize: vertical;
  min-height: 70px;
  padding-top: 12px;
}
.quote-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quote-popup-footer {
  display: flex;
  gap: 10px;
  padding: 0 22px 22px;
  flex-shrink: 0;
}
.quote-btn-submit {
  flex: 1;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(11,61,145,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.quote-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11,61,145,0.4);
}
.quote-btn-submit:active {
  transform: translateY(0);
}
.quote-btn-cancel {
  padding: 12px 18px;
  background: #f1f5f9;
  color: #64748b;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.quote-btn-cancel:hover {
  background: #e2e8f0;
  color: #475569;
}
@media (max-width: 576px) {
  .quote-popup-overlay {
    padding: 12px;
  }
  .quote-popup {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 20px;
  }
  .quote-popup-header {
    padding: 18px 20px 14px;
  }
  .quote-popup-header h3 {
    font-size: 1.35rem;
  }
  .quote-popup-body {
    padding: 18px 18px;
  }
  .quote-popup-footer {
    padding: 0 18px 18px;
  }
  .quote-form-row {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
   FLOATING CONTACT BUTTONS (Phone + WhatsApp)
   ==================================================== */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
  position: relative;
}
.float-btn:hover {
  transform: scale(1.14) rotate(4deg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.float-btn-phone {
  background: linear-gradient(145deg, #ff6600, #ff4500);
}
.float-btn-whatsapp {
  background: linear-gradient(145deg, #25D366, #128C7E);
}
.float-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* Tooltip label */
.float-btn::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,23,42,0.85);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.float-btn:hover::before { opacity: 1; }

/* Pulse ring animation on phone button */
.float-btn-phone::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(255,102,0,0.5);
  animation: phoneRing 1.8s ease-in-out infinite;
}
@keyframes phoneRing {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

@media (max-width: 576px) {
  .floating-contact { right: 14px; bottom: 20px; gap: 10px; }
  .float-btn { width: 50px; height: 50px; }
  .float-btn svg { width: 22px; height: 22px; }
  .float-btn::before { display: none; }
}

/* ====================================================
   DESTINATION DIRECTORY SECTION
   ==================================================== */
.dest-directory-section {
  background: #f1f5f9;
  padding: 70px 5%;
}
.dest-directory-section .section-header {
  margin-bottom: 44px;
}
.dest-directory-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.dest-directory-col {
  padding: 28px 22px;
  border-right: 1px solid #e2e8f0;
}
.dest-directory-col:last-child {
  border-right: none;
}
.dest-directory-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
  line-height: 1.3;
}
.dest-dir-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dest-dir-list li a {
  font-size: 0.83rem;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  line-height: 1.4;
}
.dest-dir-list li a:hover {
  color: var(--ocean-blue);
}

/* FIX (contrast + "links rely on color"): #0284C7 on white was only
   ~4.09:1, below the 4.5:1 AA minimum. Darkened, and underlined so the
   link is identifiable without relying on color alone. Scoped to this
   selector only — --turquoise itself is untouched everywhere else. */
.dest-dir-list li.more-link a {
  color: #0369A1;
  font-weight: 600;
  text-decoration: underline;
}
.dest-dir-subhead {
  font-size: 0.83rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 16px;
  margin-bottom: 8px;
  display: block;
}
.dest-dir-subhead:first-of-type {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .dest-directory-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dest-directory-col:nth-child(3) { border-right: none; }
  .dest-directory-col:nth-child(4) { border-top: 1px solid #e2e8f0; }
  .dest-directory-col:nth-child(5) { border-top: 1px solid #e2e8f0; }
  .dest-directory-col:nth-child(6) { border-top: 1px solid #e2e8f0; border-right: none; }
}
@media (max-width: 700px) {
  .dest-directory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-directory-col { border-right: 1px solid #e2e8f0 !important; border-top: 1px solid #e2e8f0 !important; }
  .dest-directory-col:nth-child(2n) { border-right: none !important; }
  .dest-directory-col:nth-child(1), .dest-directory-col:nth-child(2) { border-top: none !important; }
}
@media (max-width: 480px) {
  .dest-directory-grid { grid-template-columns: 1fr; }
  .dest-directory-col { border-right: none !important; }
}

/* =========================================================
   NAVBAR DROPDOWN — Premium Book Services Menu
   ========================================================= */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.6em;
  display: inline-block;
  transition: transform 0.3s ease;
  color: var(--gold, #e8a838);
  vertical-align: middle;
}

/* Rotate arrow on hover/active */
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

/* ---- Dropdown Panel ---- */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: linear-gradient(145deg, rgba(8, 20, 42, 0.98), rgba(5, 15, 35, 0.99));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232, 168, 56, 0.25);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.05);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1000;
  pointer-events: none;
}

/* Small triangle pointer on top */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(232, 168, 56, 0.3);
}

/* Show on hover or JS-toggled .open class */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ---- Dropdown Items ---- */
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}

.nav-dropdown-item:hover {
  background: linear-gradient(135deg, rgba(232, 168, 56, 0.18), rgba(0, 150, 255, 0.12));
  color: var(--gold, #e8a838);
  transform: translateX(4px);
  padding-left: 20px;
}

.drop-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s;
}

.nav-dropdown-item:hover .drop-icon {
  background: rgba(232, 168, 56, 0.2);
}

/* Divider line between items */
.nav-dropdown-item + .nav-dropdown-item {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---- Mobile adjustments ---- */
@media (max-width: 992px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    left: auto;
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
    padding: 4px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease, visibility 0.3s;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    transform: none;
    pointer-events: auto;
  }

  .nav-dropdown-item {
    padding: 10px 12px;
    font-size: 0.85rem;
    color: #1e293b;
    font-weight: 600;
  }

  .nav-dropdown-item + .nav-dropdown-item {
    border-top-color: #e2e8f0;
  }

  .nav-dropdown-item:hover,
  .nav-dropdown-item:focus-visible {
    background: #eaf3ff;
    color: #0f4aa8;
  }

  .nav-dropdown-item .drop-icon {
    background: #e8f0ff;
  }
}

/* =========================================================
   ULTRA-PREMIUM ANIMATION SYSTEM — Cards, Photos, Pages, & Micro-Interactions
   ========================================================= */

/* ---- Page Load & Hero Animations ---- */
@keyframes pageFadeIn {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoom {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.page-hero {
  animation: pageFadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.page-hero-bg, .hero-bg {
  animation: heroZoom 10s ease-out forwards;
}

.page-hero-title, .page-hero-sub, .breadcrumb {
  animation: pageFadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.page-hero-sub { animation-delay: 0.15s; }
.breadcrumb { animation-delay: 0.05s; }

/* ---- Card Hover Lift, 3D Glow & Shine Sweep ---- */
.card, .place-card, .package-card, .activity-card, .service-card, .contact-info-card, .contact-form-card, .place-card-detailed {
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.45s ease !important;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.card:hover, .place-card:hover, .package-card:hover, .activity-card:hover, .service-card:hover, .contact-info-card:hover, .place-card-detailed:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 45px rgba(11, 61, 145, 0.12), 0 0 25px rgba(217, 119, 6, 0.15) !important;
  border-color: rgba(217, 119, 6, 0.4) !important;
}

/* Light Sweep / Shine effect on card hover */
.card::before, .place-card::before, .package-card::before, .activity-card::before, .service-card::before, .place-card-detailed::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 5;
  transition: none;
}

.card:hover::before, .place-card:hover::before, .package-card:hover::before, .activity-card:hover::before, .service-card:hover::before, .place-card-detailed:hover::before {
  left: 200%;
  transition: left 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Photo & Image Animations ---- */
.card img, .place-card-img img, .package-card-img img, .activity-card-img img, .gallery-item img, .place-hero-img img, .package-detail-img img {
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), filter 0.65s ease !important;
  will-change: transform;
}

.card:hover img, .place-card:hover .place-card-img img, .package-card:hover .package-card-img img, .activity-card:hover .activity-card-img img, .gallery-item:hover img {
  transform: scale(1.08) rotate(0.6deg) !important;
  filter: brightness(1.05) contrast(1.03) !important;
}

/* Gallery Hover Overlay & Reveal */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22) !important;
}

.gallery-item::after {
  content: '🔍 View Photo';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 17, 33, 0.6), rgba(11, 61, 145, 0.6));
  backdrop-filter: blur(3px);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: scale(0.95);
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* ---- Enhanced Scroll Reveal Directions ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.animate-left { transform: translateX(-40px); }
.animate-on-scroll.animate-right { transform: translateX(40px); }
.animate-on-scroll.animate-scale { transform: scale(0.88); }
.animate-on-scroll.animate-rotate { transform: translateY(30px) rotate(-2deg); }

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotate(0deg);
}

/* Staggered entry for grid items */
.places-grid > *:nth-child(1), .packages-grid > *:nth-child(1), .gallery-grid > *:nth-child(1), .activities-grid > *:nth-child(1), .grid > *:nth-child(1) { transition-delay: 0.05s; }
.places-grid > *:nth-child(2), .packages-grid > *:nth-child(2), .gallery-grid > *:nth-child(2), .activities-grid > *:nth-child(2), .grid > *:nth-child(2) { transition-delay: 0.12s; }
.places-grid > *:nth-child(3), .packages-grid > *:nth-child(3), .gallery-grid > *:nth-child(3), .activities-grid > *:nth-child(3), .grid > *:nth-child(3) { transition-delay: 0.19s; }
.places-grid > *:nth-child(4), .packages-grid > *:nth-child(4), .gallery-grid > *:nth-child(4), .activities-grid > *:nth-child(4), .grid > *:nth-child(4) { transition-delay: 0.26s; }
.places-grid > *:nth-child(5), .packages-grid > *:nth-child(5), .gallery-grid > *:nth-child(5), .activities-grid > *:nth-child(5), .grid > *:nth-child(5) { transition-delay: 0.33s; }
.places-grid > *:nth-child(6), .packages-grid > *:nth-child(6), .gallery-grid > *:nth-child(6), .activities-grid > *:nth-child(6), .grid > *:nth-child(6) { transition-delay: 0.40s; }

/* ---- Badge & Floating Tag Animations ---- */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.section-tag {
  animation: floatBadge 3.5s ease-in-out infinite;
}

/* Gold line expanding animation */
.gold-line {
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.animate-on-scroll.visible .gold-line {
  animation: expandLine 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes expandLine {
  0% { width: 0px; }
  100% { width: 70px; }
}

/* ---- Button Hover Shimmer & Ripple ---- */
.btn-primary, .nav-book-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary:hover, .nav-book-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(11, 61, 145, 0.35) !important;
}

.btn-primary::after, .nav-book-btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 10%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}

.btn-primary:hover::after, .nav-book-btn:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Floating Contact Pulse Ring — hover/transition values merged into the
   original .float-btn rule above; no duplicate rule or !important needed. */