/* ========== J&J TOURS — PROFESSIONAL LIGHT EDITION ========== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  /* Core Palette */
  --navy: #0B1D3A;
  --navy-mid: #162E5A;
  --navy-light: #1E3F7A;
  --gold: #B8902A;
  --gold-light: #D4A84B;
  --gold-pale: #F5EDD8;
  --gold-line: rgba(184, 144, 42, 0.25);

  /* Surface */
  --white: #FFFFFF;
  --offwhite: #F8F6F2;
  --cream: #F2EDE4;
  --stone: #E8E2D9;
  --mist: #F0EEE9;

  /* Text */
  --text-dark: #0B1D3A;
  --text-body: #2C3E60;
  --text-muted: #6B7A99;
  --text-faint: #A8B4CC;

  /* Legacy variable aliases (for backward compat) */
  --dark: var(--navy);
  --darker: var(--navy-mid);
  --mid: var(--gold);
  --light: var(--gold-light);
  --white-color: #FFFFFF;
  --text-muted-legacy: var(--text-muted);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: auto;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(184, 144, 42, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
  transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {

  .cursor,
  .cursor-follower {
    display: none;
  }

  body {
    cursor: auto;
  }
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 60px;
  border-bottom: 1px solid var(--stone);
  box-shadow: 0 2px 30px rgba(11, 29, 58, 0.07);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  margin-left: 0;
}

.logo-img {
  height: 150px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  filter: brightness(1) drop-shadow(0 2px 8px rgba(11, 29, 58, 0.12));
  transition: all 0.4s ease;
}

nav.scrolled .logo-img {
  height: 80px;
  max-width: 240px;
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin-left: 0;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

nav.scrolled .nav-links a {
  color: var(--text-body);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

nav.scrolled .nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 12px 26px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 144, 42, 0.35);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

nav.scrolled .hamburger span {
  background: var(--navy);
}

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.mobile-nav-close:hover {
  opacity: 1;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.9);
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(11, 29, 58, 0.72) 0%,
      rgba(11, 29, 58, 0.4) 50%,
      rgba(11, 29, 58, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 40px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 7.5vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  max-width: 500px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

/* ── BUTTONS ── */
.btn-primary {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(184, 144, 42, 0.3);
}

.btn-outline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 16px 40px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(0.6);
  }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 70px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number-wrap {
  position: relative;
  display: inline-block;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}

.stat-orbit {
  position: absolute;
  top: 0;
  right: -26px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(184, 144, 42, 0.4);
  border-radius: 50%;
}

.stat-orbit::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat-item:nth-child(even) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }
}

/* ── SECTION WRAPPER ── */
.section-wrapper {
  padding: 110px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.section-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.see-all {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: all 0.3s;
  cursor: pointer;
}

.see-all:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ── DESTINATION GRID ── */
.destinations-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 460px 340px;
  gap: 14px;
}

.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--stone);
  text-decoration: none;
}

.dest-card:first-child {
  grid-row: 1 / 3;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s;
  filter: brightness(0.7) saturate(1.1);
}

.dest-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.55) saturate(1.2);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 29, 58, 0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s;
}

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(0deg, rgba(11, 29, 58, 0.92) 0%, rgba(11, 29, 58, 0.2) 65%);
}

.dest-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(184, 144, 42, 0.18);
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 10px;
  width: fit-content;
  border: 1px solid rgba(184, 144, 42, 0.35);
}

.dest-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.dest-card:first-child .dest-name {
  font-size: 38px;
}

.dest-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.dest-price {
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 500;
}

.dest-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  opacity: 0;
  transition: all 0.4s;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 26px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.dest-card:hover .dest-btn {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* ── EXPERIENCES ── */
#experiences {
  background: var(--offwhite);
  padding: 110px 60px;
  border-top: 1px solid var(--stone);
}

.experiences-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 64px;
}

.exp-card {
  background: var(--white);
  border: 1px solid var(--stone);
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(11, 29, 58, 0.04);
}

.exp-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 29, 58, 0.1);
}

.exp-img-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.6s ease;
}

.exp-card:hover .exp-img-wrap img {
  transform: scale(1.07);
}

.exp-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 11px;
}

.exp-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.exp-category {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.exp-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}

.exp-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}

.exp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--stone);
}

.exp-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
}

.exp-book {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 18px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.exp-book:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 10px;
  margin-top: 64px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--stone);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  filter: saturate(0.95);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.15) brightness(0.85);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 29, 58, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 60px 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 36px;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-brand .logo-img {
  filter: brightness(0) invert(1) opacity(0.85);
  height: 60px;
}

.footer-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.85;
  margin-bottom: 26px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 2px;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.5px;
}

.footer-policies {
  display: flex;
  gap: 28px;
  margin-top: 8px;
}

.footer-policies a {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.18);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
  cursor: pointer;
}

.footer-policies a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ── BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 100px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--gold-line);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(10px);
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── LOADER ── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeIn 0.6s 0.3s forwards;
}

.loader-logo span {
  color: var(--gold);
}

.loader-bar-wrap {
  width: 180px;
  height: 1px;
  background: var(--stone);
  position: relative;
  overflow: hidden;
}

.loader-bar {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: loadBar 1.8s ease forwards;
}

.loader-num {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 3px;
  margin-top: 14px;
  font-weight: 500;
}

@keyframes loadBar {
  to {
    left: 0;
  }
}

/* ── MISSION / ABOUT ── */
#mission {
  padding: 110px 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
}

.mission-visual {
  position: relative;
}

.mission-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--stone);
  overflow: hidden;
}

.mission-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.05);
}

.mission-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 55%;
  aspect-ratio: 1;
  background: var(--offwhite);
  border: 7px solid var(--white);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11, 29, 58, 0.12);
}

.mission-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
}

.mission-badge {
  position: absolute;
  top: 28px;
  left: -18px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(11, 29, 58, 0.25);
}

.mission-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-light);
}

.mission-badge-text {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 4px;
  color: var(--white);
}

.mission-title {
  margin-bottom: 26px;
}

.mission-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 18px;
}

.mission-quote {
  border-left: 3px solid var(--gold);
  padding: 14px 0 14px 26px;
  margin: 32px 0;
}

.mission-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.6;
}

.mission-quote cite {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
  margin-top: 12px;
  display: block;
}

.mission-links {
  display: flex;
  gap: 24px;
  margin-top: 36px;
}

.link-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 4px;
  transition: all 0.3s;
  cursor: pointer;
}

.link-btn:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.link-btn-nav {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 4px;
  transition: all 0.3s;
  cursor: pointer;
}

.link-btn-nav:hover {
  color: var(--navy);
  border-color: var(--text-body);
}

/* ── VIDEO SLIDESHOW ── */
#video-slideshow {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.slide-track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.8s cubic-bezier(0.8, 0, 0.2, 1);
  width: 300%;
}

.video-slide {
  position: relative;
  width: 33.3333%;
  height: 100%;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.4s;
}

.video-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 29, 58, 0.82) 0%, transparent 65%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 90px;
}

.video-slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s 0.4s;
}

.video-slide-title em {
  font-style: italic;
  color: var(--gold-light);
}

.video-slide-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  max-width: 480px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s 0.5s;
}

.video-slide.active .video-slide-title,
.video-slide.active .video-slide-sub {
  opacity: 1;
  transform: translateY(0);
}

.video-slide.active video {
  opacity: 0.7;
}

.slider-controls {
  position: absolute;
  bottom: 36px;
  right: 70px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slide-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: var(--white);
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s;
}

.slide-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ── DISTRICT MINI SLIDER ── */
.district-mini-slider {
  margin-top: 46px;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 330px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
  background: var(--stone);
  box-shadow: 0 10px 40px rgba(11, 29, 58, 0.15);
}

.district-slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.district-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.district-slide.active {
  opacity: 1;
  z-index: 2;
}

.district-slide video,
.district-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.district-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(0deg, rgba(11, 29, 58, 0.8), transparent);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.dist-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  font-size: 14px;
}

.dist-nav:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.dist-nav-prev {
  left: 24px;
}

.dist-nav-next {
  right: 24px;
}

/* ── STICKY FLOAT BUTTONS ── */
.float-buttons {
  position: fixed;
  right: 22px;
  bottom: 30px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(11, 29, 58, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  border: none;
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.call {
  background: var(--navy);
  border: 1.5px solid var(--gold-line);
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(11, 29, 58, 0.25);
}

.float-btn .float-label {
  position: absolute;
  right: 60px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.float-btn:hover .float-label {
  opacity: 1;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin: 3rem 0;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--offwhite);
  padding: 1.4rem;
  border: 1px solid var(--stone);
  transition: 0.3s;
}

.contact-info-item:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(11, 29, 58, 0.07);
}

.contact-info-item i {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-family: 'Playfair Display', serif;
}

.contact-info-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}

.input-group label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.input-group input,
.input-group textarea,
.input-group select {
  background: var(--offwhite);
  border: 1px solid var(--stone);
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.input-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7A99' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: var(--text-faint);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: var(--gold);
  background: var(--white);
}

.map-container {
  overflow: hidden;
  border: 1px solid var(--stone);
  height: 400px;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── WHY CHOOSE US / FEATURE BLOCKS ── */
#why-us {
  background: var(--offwhite);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.why-item {
  background: var(--white);
  padding: 36px 28px;
  border: 1px solid var(--stone);
  transition: all 0.35s;
}

.why-item:hover {
  border-color: var(--gold-line);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 29, 58, 0.08);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── SERVICES PAGE SECTIONS ── */
#services {
  background: var(--offwhite);
  border-top: 1px solid var(--stone);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 36px;
  transition: all 0.35s;
}

.service-card:hover {
  border-color: var(--gold-line);
  box-shadow: 0 14px 40px rgba(11, 29, 58, 0.08);
  transform: translateY(-4px);
}

/* ── FLEET PAGE ── */
#maintenance {
  background: var(--offwhite);
  border-top: 1px solid var(--stone);
}

#maintenance .section-tag,
#maintenance .section-title {
  color: var(--navy);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav {
    padding: 18px 28px;
  }

  nav.scrolled {
    padding: 12px 28px;
  }

  .logo-img {
    height: 90px;
  }

  nav.scrolled .logo-img {
    height: 70px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-wrapper {
    padding: 72px 28px;
  }

  footer {
    padding: 56px 28px 30px;
  }

  .destinations-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .dest-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 380px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
    height: 280px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item {
    height: 200px;
  }

  #mission {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 72px 28px;
  }

  .mission-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    padding: 56px 28px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 75px;
  }

  .hero-title {
    font-size: clamp(34px, 9.5vw, 52px);
  }

  .section-title {
    font-size: 30px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .dest-card:first-child {
    grid-column: span 1;
    height: 300px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .district-mini-slider {
    height: 220px;
  }
}

/* ── IMAGE HOVER PARALLAX SMOOTHING ── */
.dest-card img,
.exp-card img,
.gallery-item img,
.mission-visual img,
.exp-img-wrap img {
  transition: transform 0.2s cubic-bezier(0.2, 0, 0.4, 1), filter 0.45s !important;
}

/* ── SERVICES PAGE SPECIFIC ── */
.services-hero-block {
  background: var(--navy);
  color: var(--white);
}

/* ── TESTIMONIALS / QUOTE STRIPS ── */
.quote-strip {
  background: var(--cream);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: 56px 60px;
  text-align: center;
}

.quote-strip blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.55;
}

.quote-strip cite {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  font-style: normal;
}

/* ── DIVIDER ── */
.section-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 36px;
}

/* ── BENTO ITEMS ── */
.bento-item {
  background: var(--offwhite);
  border: 1px solid var(--stone);
  padding: 28px;
  transition: all 0.3s;
  cursor: pointer;
}

.bento-item:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── INFO / STAT CARDS ── */
.info-card,
.stat-card,
.glowing-card,
.vehicle-card {
  background: var(--white);
  border: 1px solid var(--stone);
  box-shadow: 0 2px 12px rgba(11, 29, 58, 0.04);
  transition: all 0.3s;
}

.info-card:hover,
.stat-card:hover,
.vehicle-card:hover {
  box-shadow: 0 12px 36px rgba(11, 29, 58, 0.1);
  border-color: var(--gold-line);
}

/* ── PLAY PAGE OVERRIDE ── */
#play-section {
  background: var(--navy);
  color: var(--white);
}

/* ── INNER PAGE NAV FIX ── */
nav.inner-nav {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 60px;
  border-bottom: 1px solid var(--stone);
  box-shadow: 0 2px 30px rgba(11, 29, 58, 0.07);
}

nav.inner-nav .logo-img {
  height: 80px;
  max-width: 240px;
}

nav.inner-nav .nav-links a {
  color: var(--text-body);
}

nav.inner-nav .hamburger span {
  background: var(--navy);
}

nav.inner-nav .nav-links a:hover,
nav.inner-nav .nav-links a.active {
  color: var(--gold);
}

@media (max-width: 1024px) {
  nav.inner-nav {
    padding: 12px 28px;
  }
}