/* ═══════════════════════════════════════════════════
   VQuint Expeditions — Sun-Drenched Luxury Theme
   ═══════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-pearl: #FDFCF0;
  --bg-pearl-warm: #FBF8EE;

  /* Text */
  --text-navy: #1A2B3C;
  --text-muted: #5A6B7C;
  --text-light: #8A96A3;

  /* Accents */
  --accent-blue: #005B96;
  --accent-blue-light: #0077C2;
  --accent-terracotta: #E27D60;
  --accent-terracotta-dark: #C96A50;
  --accent-green: #4CAF82;
  --accent-gold: #E8B84B;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-blur: 24px;

  /* Shadows */
  --shadow-soft: 0 20px 40px rgba(0, 91, 150, 0.08);
  --shadow-card: 0 12px 32px rgba(0, 91, 150, 0.07);
  --shadow-nav: 0 4px 30px rgba(0, 91, 150, 0.08);
  --shadow-hover: 0 24px 48px rgba(0, 91, 150, 0.13);

  /* Radii */
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Poppins', 'Segoe UI', Tahoma, sans-serif;

  /* Transitions */
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

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

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

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* ── Typography ─────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ══════════════════════════════════════════════════
   1. NAVIGATION — Floating Pill Bar
   ══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1280px;
  z-index: 1000;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-nav);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 40px rgba(0, 91, 150, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-navy);
  transition: color var(--transition-fast);
}

.nav-logo:hover {
  color: var(--accent-blue);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-terracotta);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--text-navy);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 26px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-white);
  background: var(--accent-terracotta);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(226, 125, 96, 0.3);
}

.nav-cta:hover {
  background: var(--accent-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 125, 96, 0.4);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-navy);
  border-radius: 4px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════
   2. HERO — Breathtaking Full-Screen
   ══════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero:hover .hero-bg img {
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 40%,
    rgba(26, 43, 60, 0.35) 100%
  );
}

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

.hero-tag {
  display: inline-block;
  padding: 8px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--bg-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  max-width: 900px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-gold);
}

/* Glassmorphism Search Card */
.hero-search-card {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  width: calc(100% - 48px);
  max-width: 820px;
}

.search-group {
  flex: 1;
  padding: 8px 18px;
}

.search-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 4px;
}

.search-group select,
.search-group input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-navy);
  cursor: pointer;
}

.search-group select option {
  background: var(--bg-white);
}

.search-divider {
  width: 1px;
  height: 44px;
  background: rgba(0, 91, 150, 0.12);
  flex-shrink: 0;
}

.search-btn {
  flex-shrink: 0;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg-white);
  background: var(--accent-blue);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(0, 91, 150, 0.3);
}

.search-btn:hover {
  background: var(--accent-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 91, 150, 0.35);
}

/* ══════════════════════════════════════════════════
   SECTION SHARED STYLES
   ══════════════════════════════════════════════════ */
.section {
  padding: 120px 24px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-terracotta);
  background: rgba(226, 125, 96, 0.08);
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════
   3. DESTINATIONS — Curated Palettes Grid
   ══════════════════════════════════════════════════ */
.destinations {
  background: var(--bg-white);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.dest-card--large {
  grid-column: span 2;
}

.dest-card__img {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.dest-card--large .dest-card__img {
  height: 340px;
}

.dest-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

/* Floating Tags */
.dest-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.dest-tag--coastal {
  color: var(--accent-blue);
}

.dest-tag--wellness {
  color: var(--accent-green);
}

.dest-tag--adventure {
  color: var(--accent-terracotta);
}

.dest-card__info {
  padding: 24px 28px;
}

.dest-card__info h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--text-navy);
}

.dest-card__info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.dest-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-terracotta);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════
   4. EXPERIENCES — Horizontal Scroll
   ══════════════════════════════════════════════════ */
.experiences {
  background: var(--bg-pearl);
}

.exp-track-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  cursor: grab;
  padding: 20px 0;
}

.exp-track-wrapper:active {
  cursor: grabbing;
}

.exp-track {
  display: flex;
  gap: 28px;
  padding: 0 24px;
  transition: none;
  user-select: none;
  will-change: transform;
}

.exp-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

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

.exp-card__img {
  height: 220px;
  overflow: hidden;
}

.exp-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.exp-card__body {
  padding: 24px;
}

.exp-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(0, 91, 150, 0.06);
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.exp-card__body h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-navy);
}

.exp-card__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   5. INQUIRE — Start the Journey
   ══════════════════════════════════════════════════ */
.inquire {
  background: var(--bg-white);
}

.inquire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.inquire-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 580px;
}

.inquire-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inquire-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-navy);
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(0, 91, 150, 0.12);
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent-blue);
}

.form-submit {
  align-self: flex-start;
  padding: 16px 44px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg-white);
  background: var(--accent-terracotta);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(226, 125, 96, 0.3);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--accent-terracotta-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(226, 125, 96, 0.4);
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  background: var(--bg-pearl-warm);
  padding: 80px 24px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0, 91, 150, 0.08);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-navy);
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.7;
}

.footer-links h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-navy);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-terracotta);
}

.footer-bottom {
  padding: 28px 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ══════════════════════════════════════════════════
   ANIMATIONS — Scroll Reveal
   ══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════
   RESPONSIVE — Tablet & Mobile
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dest-card--large {
    grid-column: span 2;
  }

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

  .inquire-image {
    height: 360px;
  }

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

@media (max-width: 768px) {
  .navbar {
    top: 12px;
    width: calc(100% - 32px);
  }

  .nav-inner {
    padding: 12px 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  /* Mobile Nav Open */
  .navbar.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 12px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    gap: 16px;
  }

  .navbar.nav-open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: calc(100% + 160px);
    left: 24px;
    right: 24px;
    justify-content: center;
    background: var(--accent-terracotta);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
  }

  .hero {
    min-height: 600px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-search-card {
    flex-direction: column;
    gap: 0;
    bottom: 24px;
    padding: 20px;
    width: calc(100% - 32px);
  }

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

  .search-btn {
    width: 100%;
    margin-top: 8px;
  }

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

  .dest-card--large {
    grid-column: span 1;
  }

  .section {
    padding: 80px 16px;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

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

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

  .exp-card {
    width: 280px;
  }
}

/* ── Scrollbar Styling ──────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-pearl);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 91, 150, 0.15);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 91, 150, 0.3);
}

/* ── Selection color ────────────────────────────── */
::selection {
  background: rgba(0, 91, 150, 0.15);
  color: var(--text-navy);
}
