*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --mountain: #1f4546;
  --mountain-deep: #162f30;
  --sun: #f88613;
  --sun-glow: #ffa940;
  --earth: #66422a;
  --cream: #faf6f1;
  --cream-warm: #f5ede2;
  --peach: #fef3e2;
  --dark-footer: #132e2f;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--earth);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============ GRAIN OVERLAY ============ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
  background: rgba(31, 69, 70, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 46px;
  height: 46px;
  transition: transform 0.3s;
}

.nav-logo:hover .nav-logo-icon { transform: scale(1.05); }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: -2px;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sun);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--sun) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  transition: all 0.3s !important;
  box-shadow: 0 2px 15px rgba(248, 134, 19, 0.3);
}

.nav-cta:hover {
  background: var(--sun-glow) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(248, 134, 19, 0.4) !important;
}

.nav-cta::after { display: none !important; }

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* Mobile menu dropdown */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links.open {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 69, 70, 0.98);
  backdrop-filter: blur(12px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 999;
  padding: 80px 24px;
}

.nav-links.open a {
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--white);
}

.nav-links.open .nav-cta {
  margin-top: 16px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(19, 46, 47, 0.3) 0%,
      rgba(19, 46, 47, 0.1) 40%,
      rgba(19, 46, 47, 0.5) 100%
    ),
    url('../images/hero.jpg') center/cover no-repeat;
}

/* Animated jungle-mountain scene */
.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mountain-layer {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
}

.mist {
  position: absolute;
  width: 200%;
  height: 120px;
  opacity: 0.15;
  animation: drift 25s linear infinite;
}

.mist-1 { bottom: 25%; left: -50%; animation-delay: 0s; }
.mist-2 { bottom: 40%; left: -80%; animation-delay: -8s; opacity: 0.1; }
.mist-3 { bottom: 15%; left: -30%; animation-delay: -15s; opacity: 0.08; }

@keyframes drift {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

.sun-orb {
  position: absolute;
  top: 18%;
  right: 22%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #f88613 0%, rgba(248, 134, 19, 0.4) 50%, transparent 70%);
  animation: sunPulse 4s ease-in-out infinite;
  filter: blur(1px);
}

.sun-orb::after {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 169, 64, 0.15) 0%, transparent 70%);
  animation: sunGlow 6s ease-in-out infinite;
}

@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes sunGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Fireflies */
.firefly {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 200, 80, 0.8);
  animation: firefly 8s ease-in-out infinite;
}

.firefly:nth-child(1) { top: 40%; left: 15%; animation-delay: 0s; animation-duration: 7s; }
.firefly:nth-child(2) { top: 55%; left: 75%; animation-delay: -2s; animation-duration: 9s; }
.firefly:nth-child(3) { top: 35%; left: 55%; animation-delay: -4s; animation-duration: 6s; }
.firefly:nth-child(4) { top: 60%; left: 30%; animation-delay: -6s; animation-duration: 10s; }
.firefly:nth-child(5) { top: 45%; left: 85%; animation-delay: -1s; animation-duration: 8s; }

@keyframes firefly {
  0%, 100% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  20% { opacity: 1; transform: translate(10px, -15px) scale(1); }
  40% { opacity: 0.6; transform: translate(-5px, -25px) scale(0.8); }
  60% { opacity: 1; transform: translate(15px, -10px) scale(1.1); }
  80% { opacity: 0.4; transform: translate(-10px, -20px) scale(0.7); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes heroReveal {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 20px;
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 12px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  opacity: 0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: var(--sun);
  color: var(--white);
  border: 2px solid var(--sun);
  box-shadow: 0 4px 25px rgba(248, 134, 19, 0.35);
}

.btn-primary:hover {
  background: var(--sun-glow);
  border-color: var(--sun-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(248, 134, 19, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

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

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
  opacity: 0;
}

.scroll-hint span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
}

/* ============ SECTION UTILITIES ============ */
section {
  position: relative;
}

.section-pad {
  padding: 120px 48px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--mountain);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--earth);
  max-width: 600px;
  opacity: 0.85;
}

/* Reveal animation */
.reveal {
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

/* ============ MOUNTAIN DIVIDER SVG ============ */
.mountain-divider {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -1px;
}

/* ============ WELCOME ============ */
.welcome {
  background: var(--cream);
  text-align: center;
}

.welcome .section-desc {
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 17px;
}

.welcome-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.welcome-feature {
  text-align: center;
  padding: 32px 24px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--sun);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.welcome-feature h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--mountain);
  margin-bottom: 10px;
}

.welcome-feature p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.75;
}

/* ============ EXPERIENCES ============ */
.experiences {
  background: var(--cream-warm);
  overflow: hidden;
}

.experiences-header {
  text-align: center;
  margin-bottom: 64px;
}

.experiences-header .section-desc {
  margin: 0 auto;
}

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

.exp-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-card:hover { transform: translateY(-6px); }

.exp-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-card:hover .exp-card-bg { transform: scale(1.08); }

.exp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,46,47,0.05) 0%, rgba(19,46,47,0.75) 100%);
  z-index: 1;
}

.exp-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}

.exp-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(248, 134, 19, 0.9);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.exp-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.exp-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.exp-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sun);
  text-decoration: none;
  transition: gap 0.3s;
}

.exp-card:hover .learn-more { gap: 10px; }

/* Experience card backgrounds */
.exp-card:nth-child(1) .exp-card-bg { background: url('../images/experiences/safari.jpg') center/cover; }
.exp-card:nth-child(2) .exp-card-bg { background: url('../images/experiences/elephant.png') center/cover; }
.exp-card:nth-child(3) .exp-card-bg { background: url('../images/experiences/chowlarn.png') center/cover; }
.exp-card:nth-child(4) .exp-card-bg { background: url('../images/experiences/rafting.jpg') center/cover; }
.exp-card:nth-child(5) .exp-card-bg { background: url('../images/experiences/night-safari.jpg') center/cover; }
.exp-card:nth-child(6) .exp-card-bg { background: url('../images/experiences/cooking.jpg') center/cover; }

/* ============ ROOMS ============ */
.rooms {
  background: var(--cream);
}

.rooms-header {
  text-align: center;
  margin-bottom: 72px;
}

.rooms-header .section-desc {
  margin: 0 auto;
}

.room-showcase {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.room-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.room-item:nth-child(even) {
  direction: rtl;
}

.room-item:nth-child(even) > * {
  direction: ltr;
}

.room-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 420px;
}

.room-image-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-image:hover .room-image-inner { transform: scale(1.05); }

.room-image-inner.img-1 { background: url('../images/rooms/deluxe.jpg') center/cover; }
.room-image-inner.img-2 { background: url('../images/rooms/riverside.jpg') center/cover; }
.room-image-inner.img-3 { background: url('../images/rooms/family.jpg') center/cover; }
.room-image-inner.img-4 { background: url('../images/rooms/bamboo.jpg') center/cover; }
.room-image-inner.img-5 { background: url('../images/rooms/bamboo.jpg') center/cover; }

.room-image-label {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.95);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mountain);
  z-index: 1;
}

.room-info h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--mountain);
  margin-bottom: 16px;
}

.room-info p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 24px;
}

.room-amenities {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mountain);
  opacity: 0.7;
}

.amenity svg {
  width: 16px;
  height: 16px;
  stroke: var(--sun);
  fill: none;
  stroke-width: 1.5;
}

.room-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--sun);
  margin-bottom: 24px;
}

.room-price span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--earth);
  opacity: 0.6;
}

/* ============ GALLERY ============ */
.gallery {
  background: var(--mountain);
  color: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-header .section-title {
  color: var(--white);
}

.gallery-header .section-desc {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-item-inner { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(31, 69, 70, 0);
  transition: background 0.4s;
}

.gallery-item:hover::after {
  background: rgba(31, 69, 70, 0.3);
}

.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item:nth-child(1) .gallery-item-inner { background: url('../images/gallery/gallery-1.jpg') center/cover; }
.gallery-item:nth-child(2) .gallery-item-inner { background: url('../images/gallery/gallery-2.jpg') center/cover; }
.gallery-item:nth-child(3) .gallery-item-inner { background: url('../images/gallery/gallery-3.jpg') center/cover; }
.gallery-item:nth-child(4) .gallery-item-inner { background: url('../images/gallery/gallery-4.jpg') center/cover; }
.gallery-item:nth-child(5) .gallery-item-inner { background: url('../images/gallery/gallery-5.jpg') center/cover; }
.gallery-item:nth-child(6) .gallery-item-inner { background: url('../images/gallery/gallery-6.jpg') center/cover; }

.gallery-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  background: var(--peach);
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 300;
  font-style: italic;
  color: var(--mountain);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 32px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -30px;
  left: -20px;
  font-size: 100px;
  font-style: normal;
  color: var(--sun);
  opacity: 0.3;
  font-family: var(--font-display);
  line-height: 1;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--earth);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.testimonial-author span {
  display: block;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: none;
  opacity: 0.6;
  margin-top: 4px;
}

/* ============ GETTING HERE ============ */
.getting-here-section {
  background: var(--cream);
}

.getting-here-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.getting-here-section h2.getting-here-intro {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--mountain);
  margin-bottom: 16px;
  line-height: 1.2;
}

.getting-here-intro .location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--peach);
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sun);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.getting-here-intro .location-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--sun);
  fill: none;
  stroke-width: 2;
}

.getting-here-intro .section-desc {
  margin-bottom: 36px;
  max-width: 520px;
}

.route-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.route-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(31, 69, 70, 0.08);
  transition: padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.route-item:first-child {
  border-top: 1px solid rgba(31, 69, 70, 0.08);
}

.route-item:hover {
  padding-left: 8px;
}

.route-from {
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.route-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--sun);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-icon.airport svg { stroke: var(--mountain); }
.route-icon.airport { background: rgba(31, 69, 70, 0.08); }

.route-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--mountain);
}

.route-name span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--earth);
  opacity: 0.6;
  margin-top: 1px;
}

.route-time {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--sun);
  white-space: nowrap;
}

/* Transfer card */
.transfer-card {
  background: var(--mountain);
  border-radius: 16px;
  padding: 44px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.transfer-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(248, 134, 19, 0.06);
}

.transfer-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.transfer-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  position: relative;
}

.transfer-card > p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 32px;
  position: relative;
}

.transfer-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
  position: relative;
}

.transfer-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.transfer-feature svg {
  width: 20px;
  height: 20px;
  stroke: var(--sun);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.transfer-feature div {
  font-size: 14px;
  line-height: 1.6;
}

.transfer-feature strong {
  display: block;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.transfer-feature span {
  opacity: 0.6;
  font-size: 13px;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 28px 0;
}

.contact-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--sun);
  fill: none;
  stroke-width: 1.5;
}

.contact-item a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.contact-item a:hover { color: var(--sun); }

.btn-transfer {
  position: relative;
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 1024px) {
  .getting-here-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .route-item { flex-direction: column; align-items: flex-start; gap: 6px; }
  .route-time { margin-left: 48px; }
  .transfer-card { padding: 32px 24px; }
  .contact-row { flex-direction: column; }
}

/* ============ FOOTER ============ */
footer {
  background: var(--dark-footer);
  color: rgba(255,255,255,0.7);
  padding: 80px 48px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 56px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  opacity: 0.6;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  border-color: var(--sun);
  background: rgba(248, 134, 19, 0.1);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.6);
  transition: fill 0.3s;
}

.footer-social a:hover svg { fill: var(--sun); }

footer h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}

footer ul {
  list-style: none;
}

footer ul li { margin-bottom: 10px; }

footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

footer ul a:hover { color: var(--sun); }

.footer-whatsapp p {
  font-size: 13px;
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1.6;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
}

.whatsapp-link:hover {
  color: #25D366;
}

.whatsapp-link svg {
  width: 28px;
  height: 28px;
  fill: #25D366;
}

.whatsapp-number {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.4;
  letter-spacing: 1px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.4;
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--sun); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-links:not(.open) { display: none; }
  .mobile-toggle { display: flex; z-index: 1001; }
  .section-pad { padding: 80px 28px; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .room-item { grid-template-columns: 1fr; gap: 28px; }
  .room-item:nth-child(even) { direction: ltr; }
  .room-image { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .section-pad { padding: 64px 20px; }
  .hero h1 { letter-spacing: 6px; }
  .welcome-features { grid-template-columns: 1fr; gap: 16px; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { height: 300px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
