/* ===================================================
   HOLIDAY WIZARD – Main Stylesheet
   =================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy: #0d1f3c;
  --navy-mid: #1a3a5c;
  --navy-light: #1e4976;
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --gold-dark: #9e7a30;
  --cream: #fdf8f0;
  --white: #ffffff;
  --text-primary: #1a2332;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(13, 31, 60, 0.12);
  --shadow-lg: 0 20px 60px rgba(13, 31, 60, 0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

ul { list-style: none; }

button { border: none; background: none; cursor: pointer; font-family: var(--font); }

/* ===================================================
   UTILITIES
   =================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head.left { text-align: left; margin-bottom: 28px; }

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-badge.intl {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.cta-center { text-align: center; margin-top: 56px; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.btn-primary.btn-lg { padding: 18px 48px; font-size: 1.05rem; }

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  color: white;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  transition: var(--transition);
  font-size: 0.9rem;
}

.btn-outline:hover {
  background: var(--navy);
  color: white;
}

.btn-nav {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  transition: var(--transition);
}

.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.4); }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 31, 60, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: 200px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.logo-text-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 1.6rem;
  display: block;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.logo-gold { color: var(--gold-light); }

/* ---- Inline SVG Logo ---- */
.logo-globe-svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.55));
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-wordmark {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.logo-holiday {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.logo-wizard {
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.logo-tagline {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
  padding-top: 3px;
  border-top: 1px solid rgba(201, 168, 76, 0.55);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active { opacity: 1; }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 31, 60, 0.78) 0%,
    rgba(13, 31, 60, 0.4) 60%,
    rgba(13, 31, 60, 0.1) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 0 0 10%;
  max-width: 700px;
  animation: slideIn 0.8s ease forwards;
}

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

.slide-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
}

.slide-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  font-weight: 300;
}

.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: rgba(201,168,76,0.4);
  border-color: var(--gold-light);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 180px; left: 10%;
  display: flex; gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--gold-light);
  width: 28px;
  border-radius: 5px;
}

/* Hero Search */
.hero-search {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  z-index: 10;
  padding: 0 24px;
}

.search-form {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 8px;
  display: flex;
  align-items: stretch;
  box-shadow: 0 20px 70px rgba(0,0,0,0.3);
}

.search-field {
  flex: 1;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-field label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.search-field input,
.search-field select {
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: transparent;
  font-weight: 500;
}

.search-field select option { background: white; }

.search-divider {
  width: 1px;
  background: var(--border);
  margin: 12px 0;
  flex-shrink: 0;
}

.search-btn {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 32px;
  border-radius: 10px;
  margin: 4px;
  transition: var(--transition);
  white-space: nowrap;
}

.search-btn:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  transform: translateY(-1px);
}

/* ===================================================
   WHY STRIP
   =================================================== */
.why-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 20px 0;
}

.why-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

.why-icon { font-size: 1.2rem; }

/* ===================================================
   DESTINATIONS SECTION
   =================================================== */
.destinations-section { background: var(--cream); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.dest-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dest-card.large .dest-img-wrap { height: 280px; }

.dest-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dest-img-wrap img {
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-img-wrap img { transform: scale(1.07); }

.dest-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(201, 168, 76, 0.9);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.dest-badge.beach { background: rgba(6, 182, 212, 0.88); color: white; }
.dest-badge.heritage { background: rgba(180, 100, 20, 0.88); color: white; }
.dest-badge.adventure { background: rgba(37, 99, 235, 0.88); color: white; }
.dest-badge.intl-badge { background: rgba(13, 31, 60, 0.88); color: var(--gold-light); }

.dest-info {
  padding: 20px;
}

.dest-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.dest-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.dest-duration {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials-section { background: white; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }

.testimonial-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--navy); }
.testimonial-author span { font-size: 0.82rem; color: var(--text-muted); }

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 70%);
}

.cta-banner-content { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* ===================================================
   PAGE HERO (Inner Pages)
   =================================================== */
.page-hero {
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 0;
}

.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(13,31,60,0.65), rgba(13,31,60,0.75));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 0;
}

.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  margin: 12px 0 16px;
}

.page-hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
}

/* ===================================================
   FILTER BAR
   =================================================== */
.filter-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 66px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.filter-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-scroll::-webkit-scrollbar { display: none; }

.filter-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 2px solid var(--border);
  white-space: nowrap;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ===================================================
   PACKAGES SECTION
   =================================================== */
.packages-section { background: var(--cream); }

.category-head {
  margin-bottom: 40px;
}

.category-head .section-badge { margin-bottom: 12px; }

.category-head .section-title { text-align: left; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pkg-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pkg-card.featured { grid-column: span 1; }

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pkg-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

.pkg-img-wrap img { transition: transform 0.6s ease; }
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.06); }

.pkg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.pkg-card:hover .pkg-overlay { opacity: 1; }

.pkg-highlights {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pkg-highlights span {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.pkg-badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; gap: 6px; flex-wrap: wrap;
}

.pkg-tag {
  background: rgba(201,168,76,0.9);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.pkg-tag.teal { background: rgba(6,182,212,0.88); color: white; }
.pkg-tag.orange { background: rgba(234,88,12,0.88); color: white; }
.pkg-tag.gold { background: rgba(201,168,76,0.95); color: var(--navy); }
.pkg-tag.blue { background: rgba(37,99,235,0.88); color: white; }
.pkg-tag.green { background: rgba(5,150,105,0.88); color: white; }

.pkg-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.pkg-location, .pkg-duration {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pkg-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pkg-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pkg-includes {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.pkg-includes li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.btn-pkg { padding: 12px 24px; font-size: 0.88rem; }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-story { background: white; }

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

.about-img-stack {
  position: relative;
  padding-bottom: 80px;
}

.about-img-main {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-img-secondary {
  position: absolute;
  bottom: 0; right: -30px;
  width: 55%;
  height: 200px;
  border-radius: var(--radius);
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
}

.about-badge-float {
  position: absolute;
  bottom: 20px; left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.about-badge-float .big-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.about-badge-float span:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-para {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.about-values {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.value-chip {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* Stats */
.stats-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item { color: white; }

.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold-light);
  display: inline-block;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  vertical-align: top;
  line-height: 1.3;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}

/* Why Cards */
.why-section { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.why-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Team */
.team-section { background: white; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--cream);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: white;
}

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  display: block;
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.form-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: white;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(13,31,60,0.08);
}

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

.phone-input-wrap {
  display: flex;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.phone-input-wrap:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(13,31,60,0.08);
}

.phone-prefix {
  background: var(--cream);
  padding: 13px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-right: 2px solid var(--border);
  flex-shrink: 0;
}

.phone-input-wrap input {
  flex: 1;
  border: none;
  border-radius: 0;
  padding: 13px 14px;
}

.phone-input-wrap input:focus {
  box-shadow: none;
}

.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 2px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.radio-label:hover { border-color: var(--navy); }

.radio-label input[type="radio"] { accent-color: var(--navy); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.form-check input { margin-top: 2px; accent-color: var(--navy); flex-shrink: 0; }

.btn-form {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  text-align: center;
  border-radius: var(--radius-sm);
  border: none;
  font-family: var(--font);
}

/* Success Card */
.success-card {
  background: white;
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.success-icon { font-size: 3.5rem; margin-bottom: 20px; }

.success-card h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.success-card p { color: var(--text-secondary); margin-bottom: 12px; }

.success-email { font-size: 0.9rem; }

.success-card .btn-primary { margin-top: 24px; }

/* Contact Info Sidebar */
.contact-info-col { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item strong { display: block; font-size: 0.88rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-info-item a { display: block; color: var(--navy); font-weight: 600; font-size: 0.95rem; }
.contact-info-item a:hover { color: var(--gold-dark); }
.contact-info-item span { display: block; font-size: 0.82rem; color: var(--text-muted); }

/* Quick Packages Card */
.quick-packages-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.quick-packages-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.quick-packages-card > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.quick-pkg-list { display: flex; flex-direction: column; gap: 10px; }

.quick-pkg-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--cream);
}

.quick-pkg-item:hover {
  border-color: var(--navy);
  background: white;
}

.quick-pkg-item img {
  width: 48px; height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.quick-pkg-item span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

/* ===================================================
   FAQ
   =================================================== */
.faq-section { background: white; }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-q:hover { color: var(--gold-dark); }

.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.social-links { display: flex; gap: 10px; margin-top: 20px; }

.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-col li { font-size: 0.9rem; line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ===================================================
   HIDDEN / FILTERED
   =================================================== */
.pkg-card.hidden {
  display: none;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-secondary { right: 0; }
  .about-img-stack { padding-bottom: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh; width: 280px;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link { font-size: 1.1rem; padding: 14px 24px; }

  .hamburger { display: flex; }

  .btn-nav { display: none; }

  .hero { height: 100svh; }

  .slide-content { padding: 0 24px; }

  .slider-dots { bottom: 200px; left: 24px; }

  .search-form {
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius-sm);
    padding: 4px;
  }

  .search-divider { width: 100%; height: 1px; margin: 0 12px; }

  .search-field { padding: 10px 16px; }

  .search-btn {
    width: calc(100% - 8px);
    margin: 4px;
    padding: 14px;
    border-radius: 8px;
  }

  .hero-search { bottom: 16px; }

  .slider-dots { bottom: 260px; }

  .destinations-grid { grid-template-columns: 1fr; }
  .intl-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }

  .why-strip-inner { justify-content: flex-start; gap: 12px; overflow-x: auto; flex-wrap: nowrap; padding: 8px 24px; }

  .why-grid { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

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

  .page-hero { height: 340px; }

  .about-img-secondary { display: none; }

  .pkg-includes { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .radio-group { flex-direction: column; gap: 8px; }
  .slide-actions { flex-direction: column; }
  .btn-ghost, .btn-primary { text-align: center; }
  .pkg-footer { flex-direction: column; }
  .btn-outline, .btn-pkg { width: 100%; text-align: center; }
}

/* ===================================================
   HERO SLIDE FALLBACK GRADIENTS
   (used if images don't load)
   =================================================== */
.hero-slide:nth-child(1) { background-color: #1a6b3c; }
.hero-slide:nth-child(2) { background-color: #8b6914; }
.hero-slide:nth-child(3) { background-color: #0369a1; }
.hero-slide:nth-child(4) { background-color: #0d1f3c; }
.hero-slide:nth-child(5) { background-color: #064e3b; }

/* Page hero fallback */
.page-hero { background-color: var(--navy-mid); }

/* Highlight effect for scroll-to anchor */
.pkg-card.highlight {
  animation: highlightPulse 2s ease;
}

@keyframes highlightPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.6); }
  50%  { box-shadow: 0 0 0 20px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}
