/* ============================================
   SEVEN HEAVENS TRAVEL — CSS
   Brand Colors:
   --navy:   #191F2B
   --steel:  #93A4C2
   --mist:   #D7DFF4
   --silver: #E3E4E8
   --warm:   #B1B2AD
   ============================================ */

/* ---- FONTS ---- */
@font-face {
  font-family: 'Berold';
  src: url('Berold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-002F, U+003A-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Sloop Script';
  src: url('sloop-scriptthree.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-002F, U+003A-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- RESET & ROOT ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --navy:    #191F2B;
  --navy-80: rgba(25,31,43,0.80);
  --navy-50: rgba(25,31,43,0.50);
  --steel:   #93A4C2;
  --mist:    #D7DFF4;
  --silver:  #E3E4E8;
  --warm:    #B1B2AD;
  --white:   #FFFFFF;
  --cream:   #F9F9FB;

  --font-serif: 'Berold', 'Bodoni Moda', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-script:'Sloop Script', 'Great Vibes', cursive;

  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.64, 0, 0.78, 0);
  --trans-med: 0.45s var(--ease-out);
  --trans-fast:0.25s var(--ease-out);

  --container: 1200px;
  --radius:    12px;
  --radius-lg: 24px;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.site-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

/* ---- SCROLLBAR ---- */
/* Removed custom scrollbar to fix the white line issue on the right edge */

/* ---- CONTAINER ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---- TYPOGRAPHY ---- */
em { font-family: var(--font-serif); font-style: italic; color: var(--steel); }
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.15; }

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  border-bottom: 1px solid var(--mist);
  padding-bottom: 4px;
  margin-bottom: 20px;
}
.section-tag--light { color: var(--mist); border-color: rgba(215,223,244,0.3); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 24px;
  color: var(--navy);
}
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--mist); }

.section-desc { color: var(--warm); font-size: 1.05rem; max-width: 520px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header--light { color: var(--white); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--trans-fast);
  position: relative;
  overflow: hidden;
}
.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover { background: #252d42; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(25,31,43,0.25); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover { background: var(--mist); transform: translateY(-2px); }

.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--trans-med), padding var(--trans-med), box-shadow var(--trans-med);
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(25,31,43,0.06), 0 8px 32px rgba(25,31,43,0.08);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  position: relative;
  height: 60px;
  width: 250px;
}
.nav__logo-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left center;
  transform: scale(2.2);
  transform-origin: left center;
  transition: opacity var(--trans-med);
}
.nav__logo-img--light {
  opacity: 1;
}
.nav__logo-img--dark {
  opacity: 0;
}
.nav.scrolled .nav__logo-img--light {
  opacity: 0;
}
.nav.scrolled .nav__logo-img--dark {
  opacity: 1;
}
/* Hide old SVG/text logo elements */
.nav__logo-svg { display: none; }
.nav__logo-text { display: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__link {
  font-family: var(--font-serif);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  position: relative;
  transition: color var(--trans-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width var(--trans-fast);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav.scrolled .nav__link { color: var(--navy); }
.nav.scrolled .nav__link:hover { color: var(--steel); }

.nav__link--cta {
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 0; /* sharper edges for premium feel */
  color: var(--white) !important;
}
.nav.scrolled .nav__link--cta {
  border-color: var(--navy);
  color: var(--navy) !important;
}
.nav__link--cta:hover { background: rgba(255,255,255,0.1); }
.nav.scrolled .nav__link--cta:hover { background: var(--navy); color: var(--white) !important; }
.nav__link--cta::after { display: none; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 100;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all var(--trans-fast);
}
.nav.scrolled .nav__burger span { background: var(--navy); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 12s var(--ease-out) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(25,31,43,0.75) 0%,
    rgba(25,31,43,0.45) 50%,
    rgba(25,31,43,0.30) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero__tagline {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--mist);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}
.hero__title em { color: var(--mist); }

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}

/* Scroll indicator — bottom left, aligned with hero text */
.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 2.2s forwards;
}
.hero__scroll-mouse {
  filter: drop-shadow(0 0 8px rgba(215,223,244,0.5));
}
.hero__scroll-wheel {
  animation: scrollWheel 1.8s ease-in-out infinite;
  transform-origin: center;
}
.hero__scroll-indicator span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@keyframes scrollWheel {
  0%   { transform: translateY(0);  opacity: 1; }
  60%  { transform: translateY(12px); opacity: 0; }
  61%  { transform: translateY(0);  opacity: 0; }
  100% { transform: translateY(0);  opacity: 1; }
}

.mobile-only { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s; }
.desktop-only { opacity: 1; visibility: visible; transition: opacity 0.3s; }
@media (max-width: 768px) {
  .mobile-only { opacity: 1; visibility: visible; pointer-events: auto; }
  .desktop-only { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* Flight path lines */
.hero__lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.flight-line {
  fill: none;
  stroke: rgba(215,223,244,0.2);
  stroke-width: 1;
  stroke-dasharray: 8 12;
  stroke-dashoffset: 0;
  animation: flightPath 20s linear infinite;
}
.flight-line--2 {
  stroke: rgba(147,164,194,0.15);
  animation-duration: 28s;
  animation-direction: reverse;
}
@keyframes flightPath {
  to { stroke-dashoffset: -500; }
}

/* Animated airplanes on flight paths */
.hero-plane {
  opacity: 0.85;
  filter: drop-shadow(0 0 6px rgba(215,223,244,0.8)) drop-shadow(0 0 12px rgba(215,223,244,0.4));
}
.hero-plane--2 {
  opacity: 0.55;
  filter: drop-shadow(0 0 4px rgba(147,164,194,0.7));
}
.hero-plane--3 {
  opacity: 0.4;
  filter: drop-shadow(0 0 3px rgba(215,223,244,0.5));
}


/* ============================================
   STATS
   ============================================ */
.stats {
  background: var(--navy);
  padding: 48px 0;
}
.stats__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.stats__item {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.stats__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stats__plus {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--steel);
}
.stats__label {
  font-size: 0.8rem;
  color: var(--warm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.stats__divider {
  width: 1px;
  height: 60px;
  background: rgba(147,164,194,0.2);
  flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__desc {
  color: #555;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}
.about__values { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.about__value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about__value-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--mist);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
}
.about__value-icon svg { width: 18px; height: 18px; }
.about__value strong { display: block; font-weight: 500; color: var(--navy); }
.about__value p { font-size: 0.88rem; color: var(--warm); }

.about__visual { position: relative; }
.about__img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px rgba(25,31,43,0.15);
}
.about__img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.about__img-frame:hover img { transform: scale(1.04); }

.about__img-badge {
  position: absolute;
  bottom: 28px; right: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(25,31,43,0.25);
  white-space: nowrap;
}
.about__img-badge-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--mist);
}
.about__img-badge-text { font-size: 0.8rem; line-height: 1.4; color: var(--silver); }

.about__dots {
  position: absolute;
  top: -30px; left: -30px;
  width: 160px; height: 160px;
  background-image: radial-gradient(var(--mist) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.6;
  z-index: -1;
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations {
  padding: 120px 0;
  background: var(--white);
}
.destinations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform var(--trans-med);
}
.dest-card--large {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: auto;
}
.dest-card--wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.dest-card:hover { transform: translateY(-6px); }

.dest-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.dest-card:hover .dest-card__img { transform: scale(1.07); }

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25,31,43,0.85) 0%, transparent 55%);
  transition: opacity var(--trans-med);
}
.dest-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  color: var(--white);
  transform: translateY(0);
  transition: transform var(--trans-med);
}
.dest-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 8px;
  border: 1px solid rgba(215,223,244,0.4);
  padding: 3px 10px;
  border-radius: 20px;
}
.dest-card__title {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 4px;
}
.dest-card__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.dest-card__price {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.dest-card__price strong { color: var(--white); font-size: 1.1rem; }
.dest-card__btn {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--mist);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--trans-fast), transform var(--trans-fast), color var(--trans-fast);
}
.dest-card:hover .dest-card__btn { opacity: 1; transform: translateY(0); }
.dest-card__btn:hover { color: var(--white); }

/* ============================================
   TOURS
   ============================================ */
.tours {
  padding: 120px 0;
  background: var(--cream);
}
.tours__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--silver);
  transition: box-shadow var(--trans-med), transform var(--trans-med);
}
.tour-card:hover {
  box-shadow: 0 24px 60px rgba(25,31,43,0.12);
  transform: translateY(-8px);
}
.tour-card__header {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.tour-card__header img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.tour-card:hover .tour-card__header img { transform: scale(1.05); }

.tour-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 20px;
}
.tour-card__badge--gold {
  background: linear-gradient(135deg, #c9a227, #e8c56a);
  color: var(--navy);
}

.tour-card__body { padding: 24px; }
.tour-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--warm);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.tour-card__title {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 16px;
}
.tour-card__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.tour-card__includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #555;
}
.tour-card__includes li svg {
  width: 16px; height: 16px;
  color: var(--steel);
  flex-shrink: 0;
}
.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--silver);
  padding-top: 20px;
}
.tour-card__price {
  font-size: 0.88rem;
  color: var(--warm);
}
.tour-card__price strong { display: block; font-size: 1.3rem; color: var(--navy); font-weight: 600; }

/* ============================================
   WHY US
   ============================================ */
.why {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(147,164,194,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(215,223,244,0.05) 0%, transparent 40%);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(147,164,194,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background var(--trans-fast), border-color var(--trans-fast), transform var(--trans-fast);
}
.why__card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(215,223,244,0.3);
  transform: translateY(-6px);
}
.why__icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(215,223,244,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mist);
  margin-bottom: 20px;
}
.why__icon svg { width: 24px; height: 24px; }
.why__card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.why__card p { font-size: 0.88rem; color: var(--warm); line-height: 1.7; }

/* ============================================
   REVIEWS
   ============================================ */
/* ============================================
   LIVE ANIMATED BACKGROUND (floating icons)
   ============================================ */
.section--live-bg {
  position: relative;
  overflow: hidden;
}
.section--live-bg::before {
  content: '';
  position: absolute;
  top: -100%; left: -100%; right: -100%; bottom: -100%; /* large overflow to pan without cropping */
  background-image: url('pattern.svg');
  background-size: 400px auto;
  background-repeat: repeat;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  animation: panLiveBg 60s linear infinite;
  transform: rotate(-15deg); /* Optional slight tilt for dynamism, common for such patterns */
}
@keyframes panLiveBg {
  from { transform: rotate(-15deg) translate(0, 0); }
  to { transform: rotate(-15deg) translate(-400px, -400px); }
}
.section--live-bg > .container { position: relative; z-index: 1; }
.section--live-bg > .section-header { position: relative; z-index: 1; }

.reviews {
  padding: 120px 0;
  background: var(--white);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(147,164,194,0.18);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow var(--trans-fast), transform var(--trans-fast);
  position: relative;
  z-index: 1;
}
.review-card:hover {
  box-shadow: 0 16px 40px rgba(25,31,43,0.08);
  transform: translateY(-4px);
}
.review-card__stars {
  color: #c9a227;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card__text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 24px;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mist);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.review-card__author span { font-size: 0.78rem; color: var(--warm); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
}
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25,31,43,0.82), rgba(25,31,43,0.65));
}
.cta-banner__content {
  position: relative;
  z-index: 2;
}
.cta-banner__content .hero__tagline {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--mist);
  opacity: 1;
  transform: none;
  animation: none;
  margin-bottom: 12px;
}
.cta-banner__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.cta-banner__title em { color: var(--mist); }
.cta-banner__content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--white);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__info .section-title { margin-top: 8px; }
.contact__info > p {
  color: var(--warm);
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.7;
}
.contact__details { display: flex; flex-direction: column; gap: 20px; }
.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--navy);
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast), transform var(--trans-fast);
}
.contact__item:hover {
  border-color: var(--steel);
  box-shadow: 0 8px 24px rgba(25,31,43,0.08);
  transform: translateX(4px);
}
.contact__item-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mist);
  flex-shrink: 0;
}
.contact__item-icon svg { width: 18px; height: 18px; }
.contact__item span { font-size: 0.75rem; color: var(--warm); display: block; }
.contact__item strong { display: block; font-size: 0.95rem; }

/* Form */
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(25,31,43,0.07);
}
.contact__form h3 {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--silver);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--cream);
  outline: none;
  transition: border-color var(--trans-fast), background var(--trans-fast);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--steel);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--warm); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group label {
  position: absolute;
  top: -10px; left: 12px;
  background: var(--white);
  padding: 0 4px;
  font-size: 0.72rem;
  color: var(--steel);
  letter-spacing: 0.06em;
  display: none;
}
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(147,164,194,0.15);
}
.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.footer__logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
  margin-bottom: 20px;
}
.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer__logo-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: lowercase;
}
.footer__logo-sub {
  font-family: var(--font-script);
  font-size: 0.85rem;
  color: var(--mist);
}
.footer__brand p {
  font-size: 0.88rem;
  color: var(--warm);
  line-height: 1.7;
  max-width: 260px;
}
.footer__slogan {
  margin-top: 16px;
  color: var(--mist) !important;
  font-family: var(--font-script);
  font-size: 1.1rem !important;
}
.footer__links h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: 0.88rem;
  color: var(--warm);
  text-decoration: none;
  transition: color var(--trans-fast);
}
.footer__links a:hover { color: var(--white); }
.footer__contact h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.footer__contact p { margin-bottom: 8px; }
.footer__contact a {
  font-size: 0.88rem;
  color: var(--warm);
  text-decoration: none;
  transition: color var(--trans-fast);
}
.footer__contact a:hover { color: var(--white); }
.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(147,164,194,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm);
  transition: all var(--trans-fast);
}
.footer__socials a:hover { border-color: var(--steel); color: var(--white); background: rgba(255,255,255,0.05); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(177,178,173,0.6); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  box-shadow: 0 20px 40px rgba(25,31,43,0.25);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--trans-med);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 20px; height: 20px; color: #4ade80; flex-shrink: 0; }

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grids */
.why__card:nth-child(2) { transition-delay: 0.1s; }
.why__card:nth-child(3) { transition-delay: 0.2s; }
.why__card:nth-child(4) { transition-delay: 0.3s; }

.tour-card:nth-child(2) { transition-delay: 0.15s; }
.tour-card:nth-child(3) { transition-delay: 0.3s; }

.review-card:nth-child(2) { transition-delay: 0.1s; }
.review-card:nth-child(3) { transition-delay: 0.2s; }

.dest-card:nth-child(2) { transition-delay: 0.1s; }
.dest-card:nth-child(3) { transition-delay: 0.15s; }
.dest-card:nth-child(4) { transition-delay: 0.2s; }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { max-width: 480px; }
  .about__img-badge { right: 0; }
  .destinations__grid { grid-template-columns: 1fr 1fr; }
  .dest-card--large { grid-row: span 1; }
  .dest-card--wide { grid-column: span 2; }
  .tours__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { flex-wrap: wrap; justify-content: center; gap: 40px; }
  .stats__divider { display: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
    background-color: var(--navy);
  }
  .nav__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav__burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
    background-color: var(--navy);
  }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-top: 1px solid var(--silver);
    box-shadow: 0 20px 40px rgba(25,31,43,0.1);
  }
  .nav__links.open .nav__link { color: var(--navy); }

  .destinations__grid { grid-template-columns: 1fr; }
  .dest-card--wide { grid-column: span 1; aspect-ratio: 3/2; }
  .tours__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .contact__form-wrap { padding: 24px; }
  .about__img-badge { right: 0; }
  .cta-banner { padding: 80px 24px; }
}
