/* ============================================================
   Blue Ocean Tours — Main Stylesheet
   Theme: Deep Navy + Ocean Blue + White + Gold Accent
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy:        #0A1628;
  --navy-mid:    #0D2045;
  --blue-dark:   #1565C0;
  --blue:        #1976D2;
  --blue-light:  #42A5F5;
  --sky:         #87CEEB;
  --white:       #FFFFFF;
  --off-white:   #F4F8FF;
  --gold:        #FFB300;
  --gold-light:  #FFD54F;
  --text-dark:   #0D1B2A;
  --text-mid:    #3D5A80;
  --text-light:  #8BADC4;
  --glass-bg:    rgba(255,255,255,0.07);
  --glass-border:rgba(255,255,255,0.15);
  --shadow-blue: 0 8px 32px rgba(21,101,192,0.25);
  --shadow-navy: 0 8px 32px rgba(10,22,40,0.4);
  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --card-bg:     var(--white);
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ---------- Utilities ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 8px; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 14px;
}
.section-title p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
}
.section-title.light h2 { color: var(--white); }
.section-title.light p { color: rgba(255,255,255,0.7); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(21,101,192,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(21,101,192,0.5);
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(255,179,0,0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,179,0,0.5);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}
.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.transparent { background: transparent; }
.navbar.scrolled,
.navbar.solid {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  padding: 0 32px;
}
.navbar.scrolled .nav-logo img,
.navbar.solid .nav-logo img { height: 48px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 56px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  transition: height var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo span small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { left: 14px; right: 14px; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 16px rgba(255,179,0,0.35);
}
.nav-book:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,179,0,0.5); }
.nav-book::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav a {
  color: var(--white);
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  padding: 12px 32px;
  border-radius: 12px;
  transition: var(--transition);
  text-align: center;
  width: 260px;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.08); color: var(--gold); }
.mobile-nav .mobile-book {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700;
  font-size: 1rem !important;
  border-radius: 50px !important;
}

/* ============================================================
   HERO — HOME PAGE
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
/* Hero Slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.08);
  animation: heroZoomIn 10s ease-in-out forwards;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide.zoom-out {
  animation: heroZoomOut 10s ease-in-out forwards;
}
@keyframes heroZoomIn  { 0% { transform: scale(1.0); } 100% { transform: scale(1.1); } }
@keyframes heroZoomOut { 0% { transform: scale(1.1); } 100% { transform: scale(1.0); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,22,40,0.7) 0%,
    rgba(10,22,40,0.35) 40%,
    rgba(10,22,40,0.6) 100%);
}
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease both;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero-title .highlight {
  color: var(--blue-light);
  position: relative;
  display: inline-block;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 40px;
  font-family: 'Inter', sans-serif;
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  animation: fadeUp 0.9s ease 0.3s both;
}
.hero-scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: pulse 2s ease infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine { 0%,100% { transform: scaleY(1); opacity:1; } 50% { transform: scaleY(0.5); opacity:0.4; } }

/* ---------- Hero Stats Bar ---------- */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 4;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stats-inner {
  display: flex;
  justify-content: center;
  divide: 1px;
}
.stat-item {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
  padding: 80px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.feature-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  border: 1px solid rgba(21,101,192,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(10,22,40,0.22), 0 0 0 1px rgba(21,101,192,0.2); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--white);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  transform: rotate(8deg) scale(1.1);
}
.feature-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-mid); }

/* ============================================================
   PACKAGES SECTION / CARDS
   ============================================================ */
.packages-section { padding: 90px 0; background: var(--off-white); }
.packages-section-dark { background: var(--navy); }

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--card-bg);
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,22,40,0.25);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.pkg-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(21,101,192,0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pkg-card:hover { transform: translateY(-10px); box-shadow: 0 22px 50px rgba(10,22,40,0.24), 0 0 0 1px rgba(21,101,192,0.25); }
.pkg-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.pkg-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.08); }
.pkg-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.pkg-price-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(10,22,40,0.88);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-radius: 10px;
  padding: 8px 14px;
  text-align: center;
}
.pkg-price-badge .from { font-size: 0.65rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.pkg-price-badge .amount { font-size: 1.4rem; font-weight: 800; color: var(--gold); font-family: 'Playfair Display', serif; }
.pkg-price-badge .per { font-size: 0.65rem; color: rgba(255,255,255,0.6); }

.pkg-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pkg-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.pkg-meta span {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.pkg-meta i { color: var(--blue); font-size: 0.7rem; }
.pkg-body h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.pkg-body p { font-size: 0.88rem; color: var(--text-mid); flex: 1; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pkg-actions { display: flex; gap: 10px; }
.pkg-actions .btn { flex: 1; justify-content: center; font-size: 0.83rem; padding: 11px 16px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66,165,245,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-text .eyebrow { color: var(--gold); }
.why-text h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 20px; }
.why-text p { color: rgba(255,255,255,0.72); margin-bottom: 32px; font-size: 1.02rem; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(66,165,245,0.12);
  border: 1px solid rgba(66,165,245,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
  font-size: 1.1rem;
}
.why-feature-item h4 { color: var(--white); font-size: 0.95rem; font-family: 'Inter', sans-serif; margin-bottom: 4px; }
.why-feature-item p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin: 0; }

.why-right-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}
.why-logo-badge {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 6px;
  background: radial-gradient(circle, rgba(21,101,192,0.35) 0%, rgba(10,22,40,0.9) 100%);
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 30px rgba(255,179,0,0.35), 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  animation: whyLogoFloat 4s ease-in-out infinite alternate;
}
.why-logo-badge:hover {
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 0 45px rgba(255,179,0,0.6), 0 14px 40px rgba(0,0,0,0.6);
  border-color: var(--gold-light);
}
.why-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
@keyframes whyLogoFloat {
  0% { transform: translateY(0px); box-shadow: 0 0 25px rgba(66,165,245,0.3), 0 8px 25px rgba(0,0,0,0.4); }
  100% { transform: translateY(-8px); box-shadow: 0 0 40px rgba(255,179,0,0.5), 0 16px 35px rgba(0,0,0,0.5); }
}

.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}
.why-stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-stat-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.why-stat-card .label { font-size: 0.82rem; color: rgba(255,255,255,0.65); letter-spacing: 1px; text-transform: uppercase; }

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-section { padding: 90px 0; background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}
.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(21,101,192,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 18px;
  font-size: 8rem;
  font-family: 'Playfair Display', serif;
  color: rgba(21,101,192,0.07);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(10,22,40,0.22), 0 0 0 1px rgba(21,101,192,0.2); }
.stars { display: flex; gap: 3px; color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-mid); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info h4 { font-size: 0.92rem; font-family: 'Inter', sans-serif; font-weight: 700; color: var(--navy); }
.author-info p { font-size: 0.78rem; color: var(--text-light); }

/* ---------- Review Form ---------- */
.review-form-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 640px;
  margin: 0 auto;
}
.review-form-section h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; text-align: center; }
.review-form-section > p { color: rgba(255,255,255,0.65); text-align: center; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: var(--white);
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-light);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(66,165,245,0.2);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy); }
.star-rating { display: flex; flex-direction: row-reverse; gap: 6px; }
.star-rating input { display: none; }
.star-rating label {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  background: none; border: none; padding: 0;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--gold); }

/* ============================================================
   VEHICLES SECTION (Packages Page)
   ============================================================ */
.vehicles-section {
  padding: 90px 0;
  background: var(--white);
}
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
}
.vehicle-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(21,101,192,0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(10,22,40,0.24), 0 0 0 1px rgba(21,101,192,0.25);
}
.vehicle-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.vehicle-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.vehicle-card:hover .vehicle-img-wrap img { transform: scale(1.06); }
.vehicle-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.vehicle-badge-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.vehicle-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vehicle-name {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vehicle-name i { color: var(--blue-dark); font-size: 1.1rem; }
.vehicle-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.vehicle-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 18px 20px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(21,101,192,0.08);
}
.vehicle-specs li {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}
.vehicle-specs li i {
  color: var(--blue-dark);
  width: 16px;
  text-align: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.vehicle-specs li strong { color: var(--navy); }
.vehicle-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ============================================================
   GALLERY STRIP (home)
   ============================================================ */
.gallery-strip-section { padding: 80px 0; background: var(--navy); overflow: hidden; }
.gallery-strip-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: galleryScroll 35s linear infinite;
}
.gallery-strip-track:hover { animation-play-state: paused; }
@keyframes galleryScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.gallery-strip-item {
  width: 280px; height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.gallery-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-strip-item:hover img { transform: scale(1.08); }

/* ============================================================
   GALLERY PAGE — FULL GRID
   ============================================================ */
.gallery-page { padding: 90px 0; background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: var(--white); font-size: 2rem; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--navy) 50%, var(--blue-dark) 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  position: relative;
  overflow: hidden;
  text-align: center;
}
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 36px; position: relative; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; position: relative; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  background: var(--navy);
  overflow: hidden;
  margin-top: 72px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.06);
  opacity: 0.35;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
}
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center; justify-content: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--blue-light); }
.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 90px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-navy);
}
.about-img-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(255,179,0,0.35);
}
.about-img-accent .big-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
}
.about-img-accent p { font-size: 0.82rem; color: var(--navy); font-weight: 600; }
.about-text .eyebrow { color: var(--blue-dark); }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--navy); margin-bottom: 20px; }
.about-text p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.8; }
.owner-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid rgba(21,101,192,0.12);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  padding: 20px;
  margin-top: 28px;
  transition: var(--transition);
}
.owner-card:hover {
  box-shadow: 0 16px 36px rgba(10,22,40,0.18), 0 0 0 1px rgba(21,101,192,0.2);
  transform: translateY(-4px);
}
.owner-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  flex-shrink: 0;
}
.owner-info h4 { color: var(--navy); font-size: 1rem; margin-bottom: 2px; }
.owner-info p { color: var(--text-mid); font-size: 0.82rem; }

.values-section { padding: 80px 0; background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(21,101,192,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(10,22,40,0.22), 0 0 0 1px rgba(21,101,192,0.2); }
.value-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.value-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: var(--text-mid); }

/* ============================================================
   CONTACT PAGE (Remade & Modernized)
   ============================================================ */
.contact-section { padding: 80px 0; background: var(--off-white); }

/* Quick Contact Top Grid */
.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.quick-contact-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid rgba(21, 101, 192, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.quick-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 22, 40, 0.14);
  border-color: rgba(21, 101, 192, 0.25);
}
.quick-contact-card.wa-highlight {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.06), rgba(18, 140, 126, 0.12));
  border-color: rgba(37, 211, 102, 0.35);
}
.quick-contact-card.wa-highlight:hover {
  border-color: #25D366;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.2);
}
.quick-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}
.quick-contact-icon.wa-icon { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }
.quick-contact-icon.phone-icon { background: linear-gradient(135deg, var(--blue-dark), var(--blue-light)); box-shadow: 0 4px 14px rgba(21, 101, 192, 0.3); }
.quick-contact-icon.email-icon { background: linear-gradient(135deg, var(--navy), var(--blue-dark)); box-shadow: 0 4px 14px rgba(10, 22, 40, 0.3); }
.quick-contact-icon.map-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); box-shadow: 0 4px 14px rgba(255, 179, 0, 0.35); }

.quick-contact-body { display: flex; flex-direction: column; gap: 2px; }
.quick-contact-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); font-weight: 600; }
.quick-contact-body h4 { font-size: 1rem; color: var(--navy); margin: 0; font-family: 'Inter', sans-serif; font-weight: 700; }
.quick-contact-action { font-size: 0.82rem; color: var(--blue-dark); font-weight: 600; margin-top: 2px; display: inline-flex; align-items: center; gap: 4px; }
.quick-contact-card:hover .quick-contact-action { color: var(--blue); }
.quick-phone-links { display: flex; flex-direction: column; gap: 2px; }
.quick-phone-links a { color: var(--navy); font-weight: 700; font-size: 0.92rem; text-decoration: none; transition: var(--transition); }
.quick-phone-links a:hover { color: var(--blue-dark); }
.quick-contact-note, .quick-contact-sub { font-size: 0.78rem; color: var(--text-mid); }

/* Main Contact 2-Column Grid */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

/* Contact Form Card */
.contact-form-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(21, 101, 192, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.form-header { margin-bottom: 28px; }
.form-header h2 { font-size: 1.8rem; color: var(--navy); margin-bottom: 6px; }
.form-header p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .form-group {
  margin-bottom: 18px;
}
.contact-form .form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.contact-form .form-group label i { font-size: 0.8rem; color: var(--blue-dark); }
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--off-white);
  border: 1.5px solid rgba(21, 101, 192, 0.15);
  color: var(--text-dark);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder { color: var(--text-light); }
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.form-btn-main { flex: 1.2; justify-content: center; padding: 14px 20px; font-size: 0.95rem; }
.form-btn-sub { flex: 1; justify-content: center; padding: 14px 20px; font-size: 0.92rem; border-color: var(--blue-dark); color: var(--blue-dark); }
.form-btn-sub:hover { background: var(--blue-dark); color: var(--white); }
.form-footnote {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Info Column Side Cards */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-owner-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.owner-badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 179, 0, 0.4);
}
.owner-badge-text h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 2px;
}
.owner-role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.owner-quote {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 14px;
}
.owner-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.owner-contacts a {
  font-size: 0.82rem;
  color: var(--sky);
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.owner-contacts a:hover {
  background: var(--blue-dark);
  color: var(--white);
}

/* Coverage Card */
.contact-coverage-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border: 1px solid rgba(21, 101, 192, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.coverage-header h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.coverage-header h4 i { color: var(--blue-dark); }
.coverage-header p { font-size: 0.84rem; color: var(--text-mid); margin-bottom: 16px; }
.dest-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dest-tags-grid span {
  background: var(--off-white);
  border: 1px solid rgba(21, 101, 192, 0.12);
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.dest-tags-grid span i { color: var(--blue); font-size: 0.7rem; }

/* Assurances */
.contact-assurances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.assurance-item {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  border: 1px solid rgba(21, 101, 192, 0.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.assurance-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(21, 101, 192, 0.1);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.assurance-item h5 { font-size: 0.88rem; color: var(--navy); margin-bottom: 2px; }
.assurance-item p { font-size: 0.78rem; color: var(--text-mid); line-height: 1.45; margin: 0; }

/* ============================================================
   BOOK NOW PAGE
   ============================================================ */
.book-section { padding: 90px 0; background: var(--off-white); }
.book-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.book-wrap h2 { color: var(--navy); font-size: 2rem; margin-bottom: 8px; }
.book-wrap > p { color: var(--text-mid); margin-bottom: 32px; }
.book-form .form-group label { color: var(--text-mid); }
.book-form .form-group input,
.book-form .form-group select,
.book-form .form-group textarea {
  background: var(--off-white);
  border: 1.5px solid rgba(21,101,192,0.15);
  color: var(--text-dark);
}
.book-form .form-group input:focus,
.book-form .form-group select:focus,
.book-form .form-group textarea:focus {
  border-color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}

/* ============================================================
   PACKAGE DETAIL PAGE
   ============================================================ */
.pkg-detail-hero {
  height: 55vh;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}
.pkg-detail-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pkg-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.85) 100%);
  display: flex; align-items: flex-end;
  padding: 48px;
}
.pkg-detail-hero-content h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 10px; }
.pkg-detail-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.pkg-detail-meta span { color: rgba(255,255,255,0.75); font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
.pkg-detail-meta i { color: var(--gold); }

.pkg-detail-content { padding: 60px 0 90px; background: var(--off-white); }
.pkg-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.pkg-main h2 { color: var(--navy); font-size: 1.4rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid rgba(21,101,192,0.12); }
.pkg-description { color: var(--text-mid); line-height: 1.8; margin-bottom: 40px; }
.highlights-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.highlight-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--card-bg);
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(21,101,192,0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: var(--transition);
}
.highlight-item:hover {
  box-shadow: 0 8px 24px rgba(10,22,40,0.12), 0 0 0 1px rgba(21,101,192,0.18);
  transform: translateY(-2px);
}
.highlight-item i { color: var(--blue-dark); margin-top: 2px; flex-shrink: 0; }
.highlight-item span { font-size: 0.92rem; color: var(--text-mid); }

.itinerary-accordion { display: flex; flex-direction: column; gap: 12px; }
.itinerary-item {
  background: var(--card-bg);
  border: 1px solid rgba(21,101,192,0.1);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: var(--transition);
}
.itinerary-item:hover {
  box-shadow: 0 8px 25px rgba(10,22,40,0.14), 0 0 0 1px rgba(21,101,192,0.18);
}
.itinerary-header {
  display: flex; gap: 16px; align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  transition: var(--transition);
}
.itinerary-header:hover { background: var(--off-white); }
.itinerary-day-badge {
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.itinerary-header h4 { flex: 1; font-size: 0.95rem; color: var(--navy); font-family: 'Inter', sans-serif; font-weight: 600; }
.itinerary-chevron { color: var(--text-light); transition: var(--transition); }
.itinerary-item.open .itinerary-chevron { transform: rotate(180deg); color: var(--blue-dark); }
.itinerary-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.itinerary-item.open .itinerary-body { max-height: 300px; padding: 0 20px 20px; }
.itinerary-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }

/* Sidebar */
.pkg-sidebar {
  position: sticky;
  top: 88px;
}
.pkg-sidebar-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(21,101,192,0.1);
}
.sidebar-price-header {
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  padding: 24px;
  text-align: center;
}
.sidebar-from { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.sidebar-price { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--gold); }
.sidebar-per { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.sidebar-body { padding: 24px; }
.sidebar-info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.sidebar-info-item { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--text-mid); }
.sidebar-info-item i { color: var(--blue-dark); width: 18px; text-align: center; }
.sidebar-body .btn { width: 100%; justify-content: center; margin-bottom: 12px; }

/* Transfer pricing table */
.transfer-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.transfer-table th { background: var(--navy); color: var(--white); padding: 12px 16px; font-size: 0.82rem; text-align: left; letter-spacing: 1px; text-transform: uppercase; }
.transfer-table td { padding: 12px 16px; border-bottom: 1px solid rgba(21,101,192,0.08); font-size: 0.9rem; }
.transfer-table tr:nth-child(even) td { background: var(--off-white); }
.transfer-table tr:hover td { background: rgba(66,165,245,0.06); }
.transfer-price { font-weight: 700; color: var(--blue-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img {
  height: 72px;
  width: auto;
  border-radius: 50%;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-3px); }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul a::before { content: '→'; font-size: 0.75rem; opacity: 0; transform: translateX(-4px); transition: var(--transition); }
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }
.footer-col ul a:hover::before { opacity: 1; transform: translateX(0); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.88rem; }
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: waPulse 2.5s ease infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 35px rgba(37,211,102,0.65); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0.12); }
}

/* Floating Review button (above WhatsApp) */
.review-float {
  position: fixed;
  bottom: 104px; right: 32px;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #B89628);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.45);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
  animation: reviewPulse 3s ease infinite;
}
.review-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.65);
}
@keyframes reviewPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(212, 175, 55, 0.45); }
  50% { box-shadow: 0 6px 24px rgba(212, 175, 55, 0.45), 0 0 0 12px rgba(212, 175, 55, 0.15); }
}

/* Tooltip on hover */
.float-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.review-float:hover .float-tooltip,
.wa-float:hover .float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

/* ============================================================
   BOT REVIEW MODAL POPUP
   ============================================================ */
.bot-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.bot-modal.active {
  opacity: 1;
  visibility: visible;
}

.bot-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 30, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.bot-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  max-height: 90vh;
  overflow-y: auto;
}
.bot-modal.active .bot-modal-dialog {
  transform: scale(1) translateY(0);
}

.bot-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.bot-modal-close:hover {
  background: #fee2e2;
  color: #ef4444;
  transform: rotate(90deg);
}

.bot-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-star-icon {
  width: 54px; height: 54px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
}

.bot-modal-header h3 {
  font-size: 1.45rem;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  margin-bottom: 6px;
}

.bot-modal-header p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.modal-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-alert.success {
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
}
.modal-alert.error {
  background: #fef2f2;
  border: 1px solid #ef4444;
  color: #991b1b;
}

.bot-modal-form .modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bot-modal-form .modal-form-group {
  margin-bottom: 16px;
}

.bot-modal-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.bot-modal-form label .required {
  color: #ef4444;
}

.bot-modal-form input[type="text"],
.bot-modal-form input[type="email"],
.bot-modal-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.bot-modal-form input:focus,
.bot-modal-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.modal-star-picker {
  background: var(--off-white);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.star-rating-icons {
  display: flex;
  gap: 6px;
}

.star-btn {
  font-size: 1.5rem;
  color: #cbd5e1;
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
}
.star-btn.active,
.star-btn.hover {
  color: #f59e0b;
}
.star-btn:hover {
  transform: scale(1.18);
}

.rating-text-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.btn-submit-review {
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--gold), #b89628);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  margin-top: 8px;
}

.btn-submit-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
.btn-submit-review:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.footer-admin-link {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-admin-link:hover {
  color: var(--gold) !important;
}

/* ============================================================
   AOS overrides
   ============================================================ */
[data-aos] { transition-duration: 0.7s !important; }

/* ============================================================
   ALERT / FLASH MESSAGES
   ============================================================ */
.alert {
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.alert-success { background: rgba(37,211,102,0.12); color: #1a7a3c; border: 1px solid rgba(37,211,102,0.3); }
.alert-error { background: rgba(220,53,69,0.1); color: #842029; border: 1px solid rgba(220,53,69,0.25); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 0.6; transform: translateX(-50%) translateY(0); } 50% { opacity: 1; transform: translateX(-50%) translateY(6px); } }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { gap: 40px; }
  .pkg-detail-grid { grid-template-columns: 1fr; }
  .pkg-sidebar { position: static; }
}
@media (max-width: 768px) {
  .navbar.solid,
  .navbar.scrolled {
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar.transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
  }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats-inner { flex-wrap: wrap; }
  .stat-item { min-width: 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .why-grid { grid-template-columns: 1fr; }
  .why-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-accent { position: static; width: 100%; margin-top: 16px; }
  .contact-main-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
  .contact-assurances { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .review-form-section { padding: 32px 24px; }
  .pkg-detail-hero-overlay { padding: 28px; }
  .pkg-detail-hero-content h1 { font-size: 1.6rem; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
  .review-float { bottom: 82px; right: 20px; width: 52px; height: 52px; font-size: 1.3rem; }
  .float-tooltip { display: none; }
  .bot-modal-dialog { padding: 28px 20px 24px; }
  .bot-modal-form .modal-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .why-stats-grid { grid-template-columns: 1fr; }
  .navbar { padding: 0 16px; }
  .bot-modal { padding: 12px; }
}
