/* ============================================================
   TRUE MEDELLÍN TOURS — Professional Stylesheet
   Typefaces: Fraunces (display) + Inter (body)
   Palette: Deep jungle #0D1B2A · Warm orange #F07030 · Gold #F5C842 · Cream #FAF7F2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;0,9..144,900;1,9..144,300&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- TOKENS ---------- */
:root {
  --jungle:   #0D1B2A;
  --orange:   #F07030;
  --gold:     #F5C842;
  --cream:    #FAF7F2;
  --sand:     #EDE8DF;
  --text:     #1C1C1E;
  --muted:    #6B6B6B;
  --white:    #FFFFFF;
  --green:    #25D366;
  --green2:   #128C7E;
  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);
  --trans:     all .28s cubic-bezier(.4,0,.2,1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width:100%; display:block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(240,112,48,.35);
}
.btn-primary:hover { background: #D9602A; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(240,112,48,.4); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-whatsapp {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.4); }

.btn-xl {
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius);
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.btn-xl small { font-size: .78rem; font-weight: 400; opacity: .85; }

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: var(--trans);
  padding: 0;
}

.header.scrolled {
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.logo span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  transition: var(--trans);
}
.logo small { display: block; font-size: .65rem; font-weight: 400; color: rgba(255,255,255,.7); }
.header.scrolled .logo span { color: var(--jungle); }
.header.scrolled .logo small { color: var(--muted); }

.nav-menu {
  display: flex;
  gap: 2rem;
}
.nav-menu a {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: var(--trans);
}
.nav-menu a:hover { border-bottom-color: var(--orange); color: var(--white); }
.header.scrolled .nav-menu a { color: var(--text); }
.header.scrolled .nav-menu a:hover { color: var(--orange); }

.nav-cta { padding: 10px 20px; font-size: .88rem; }

/* hamburger hidden on desktop */
.nav-toggle { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13,27,42,.94) 0%,
    rgba(13,27,42,.82) 35%,
    rgba(13,27,42,.30) 62%,
    rgba(13,27,42,.04) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-left: 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.stat span { font-size: .78rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.25); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--jungle);
  padding: 16px 24px;
  position: relative;
  z-index: 1;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
}
.trust-item i { color: var(--gold); font-size: .9rem; }
.trust-sep { color: rgba(255,255,255,.25); font-size: 1.2rem; }

/* ---------- SECTIONS ---------- */
.section { padding: 96px 0; }
.section-dark { background: var(--jungle); }
.section-warm { background: var(--cream); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header-light h2, .section-header-light .eyebrow { /* same style below */ }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--gold); }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-header-light h2 { color: var(--white); }

.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.section-sub-light { color: rgba(255,255,255,.65); }

/* ---------- TOURS ---------- */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .32s cubic-bezier(.2,.9,.3,1), box-shadow .32s ease;
  display: flex;
  flex-direction: column;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.tour-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.tour-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.tour-card:hover .tour-img-wrap img { transform: scale(1.07); }

.badge {
  position: absolute;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.badge-hot { top: 14px; left: 14px; background: var(--orange); color: var(--white); }
.badge-accent { top: 14px; left: 14px; background: var(--jungle); color: var(--gold); }
.badge-price { bottom: 14px; right: 14px; background: rgba(13,27,42,.82); color: var(--white); font-size: .88rem; }

.tour-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.tour-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.tour-body p { color: var(--muted); font-size: .9rem; line-height: 1.6; flex: 1; }

.tour-meta {
  display: flex;
  gap: 16px;
  font-size: .82rem;
  color: var(--muted);
  padding: 12px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.tour-meta i { color: var(--orange); margin-right: 4px; }

.tour-btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ---------- GALLERY ---------- */
.gallery-carousel {
  position: relative;
  -webkit-user-select: none;
  user-select: none;
}

.gallery-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  background: rgba(255,255,255,.04);
  padding: 14px 14px 18px;
}

.gallery-track {
  display: flex;
  gap: 14px;
  transition: transform .65s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 calc(30% - 8px);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  cursor: zoom-in;
  border-radius: 12px;
  transition: transform .32s ease, box-shadow .32s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
}
.gallery-slide:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 38px rgba(0,0,0,.44);
  z-index: 2;
}
.gallery-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-slide:hover img { transform: scale(1.07); }
.gallery-slide::after {
  content: '\f065';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 10px; right: 12px;
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
  z-index: 3;
}
.gallery-slide:hover::after { opacity: 1; }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 10px 9px;
  background: linear-gradient(transparent, rgba(13,27,42,.88));
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.gallery-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.4);
  cursor: pointer;
  background: rgba(13,27,42,.55);
  color: rgba(255,255,255,.9);
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  z-index: 4;
  font-size: .85rem;
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease, background .22s ease, border-color .22s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }
.gallery-viewport:hover .gallery-arrow,
.gallery-viewport:focus-within .gallery-arrow { opacity: 1; }
.gallery-arrow:hover { transform: translateY(-50%) scale(1.12); background: var(--orange); border-color: var(--orange); color: var(--white); box-shadow: 0 6px 22px rgba(240,112,48,.4); }

/* Controls bar: play/pause + counter */
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 0 8px;
}
.gallery-playpause {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  transition: var(--trans);
}
.gallery-playpause:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: scale(1.12); }
.gallery-counter {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: rgba(255,255,255,.88);
  letter-spacing: .06em;
  min-width: 60px;
  text-align: center;
}

/* Thumbnail strip */
.gallery-thumbs {
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding: 2px 0 4px;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumbs-track {
  display: flex;
  gap: 8px;
  padding: 0 4px;
}
.gallery-thumb {
  flex-shrink: 0;
  width: 68px; height: 48px;
  border-radius: 8px; overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer; opacity: .38;
  transition: opacity .28s ease, border-color .28s ease, transform .28s ease;
  padding: 0; background: var(--jungle);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { opacity: .75; }
.gallery-thumb.active { border-color: var(--gold); opacity: 1; transform: scaleY(1.08); }

.gallery-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 5;
  pointer-events: none;
}
.gallery-progress.running { animation: gallery-prog 4500ms linear forwards; }
.gallery-progress.paused  { animation-play-state: paused; }
@keyframes gallery-prog { from { transform: scaleX(0) } to { transform: scaleX(1) } }

/* ---------- ABOUT ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}

.about-photo {
  position: relative;
}
.about-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 28px; right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(240,112,48,.4);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}

.about-name {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin: 8px 0 10px;
}
.about-subtitle {
  color: var(--orange);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 8px;
}
.about-bio {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 18px;
}

.about-why-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 16px;
  display: flex; align-items: center; gap: 10px;
}
.about-why-title i { color: var(--orange); }

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 32px;
  padding: 0;
  list-style: none;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}
.about-list li i { color: var(--orange); width: 18px; flex-shrink: 0; font-size: .95rem; }

.about-mission {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--jungle);
  color: rgba(255,255,255,.85);
  padding: 22px 24px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.about-mission > i { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.about-mission p { font-size: .93rem; line-height: 1.72; }
.about-mission strong { color: var(--gold); }

@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; gap: 44px; }
  .about-badge { right: 16px; }
  .about-photo img { aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .about-list { grid-template-columns: 1fr; }
  .about-badge { bottom: 16px; right: 12px; font-size: .72rem; padding: 8px 14px; }
}

/* ---------- VIDEOS ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
/* 3 fixed columns on desktop — centers last card if alone in its row */
@media (min-width: 1025px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .video-card:last-child:nth-child(3n + 1) { grid-column: 2; }
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--jungle);
  transition: var(--trans);
  position: relative;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.video-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.video-label {
  padding: 14px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--jungle);
}
.video-label i { color: var(--gold); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--trans);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testimonial p { color: var(--muted); font-style: italic; line-height: 1.7; font-size: .95rem; flex: 1; }
.author strong { font-weight: 700; color: var(--text); }
.author span { color: var(--muted); font-size: .85rem; }

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--jungle) 0%, #172740 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,200,66,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-actions { margin-bottom: 36px; display: flex; justify-content: center; }

.booking-platforms { margin-bottom: 28px; }
.platform-label { color: rgba(255,255,255,.5); font-size: .82rem; margin-bottom: 12px; letter-spacing: .06em; text-transform: uppercase; }
.platform-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.platform-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: .9rem;
  transition: var(--trans);
  box-shadow: var(--shadow);
}
.platform-airbnb { background: #FF5A5F; color: #fff; }
.platform-viator { background: #F57C00; color: #fff; }
.platform-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.cta-paypal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  margin-bottom: 36px;
}
.cta-paypal i { color: #3B7BBF; font-size: 1.4rem; }
.cta-paypal a { color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.3); transition: var(--trans); }
.cta-paypal a:hover { color: var(--white); }

.cta-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-pills span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
}
.cta-pills i { color: var(--gold); }

/* ---------- FOOTER ---------- */
.footer { background: #080F18; padding: 64px 0 0; color: rgba(255,255,255,.7); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 2px solid rgba(255,255,255,.12); }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: var(--trans);
}
.social-links a:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }

.footer-col h4 { color: var(--white); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: .88rem; display: flex; align-items: center; gap: 8px; }
.footer-col i { color: var(--orange); width: 14px; }
.footer-col a { color: rgba(255,255,255,.65); transition: var(--trans); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,15,24,.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(90vw, 1100px);
  max-height: 85vh;
}
#lightboxImg {
  max-width: 90vw;
  max-height: 85vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 32px 100px rgba(0,0,0,.7);
  display: block;
  transition: opacity .2s ease;
}
.lightbox-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 52px 20px 16px;
  background: linear-gradient(transparent, rgba(8,15,24,.88));
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 0 0 10px 10px;
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2002;
  transition: var(--trans);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.lightbox-close:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: scale(1.1); }
.lb-arrow {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2002;
  transition: var(--trans);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lb-arrow:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-counter {
  position: fixed;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 700;
  color: rgba(255,255,255,.45);
  letter-spacing: .1em;
  pointer-events: none;
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    order: 3;
  }
  .hamburger {
    width: 22px; height: 2px;
    background: var(--white);
    display: block;
    position: relative;
    transition: background .22s;
  }
  .header.scrolled .hamburger,
  .header.scrolled .hamburger::before,
  .header.scrolled .hamburger::after { background: var(--text); }
  .hamburger::before, .hamburger::after {
    content: '';
    position: absolute; left: 0;
    width: 22px; height: 2px;
    background: var(--white);
    transition: transform .22s ease;
  }
  .hamburger::before { top: -7px; }
  .hamburger::after  { top:  7px; }

  .nav-container.open .hamburger { background: transparent; }
  .nav-container.open .hamburger::before { transform: translateY(7px) rotate(45deg); }
  .nav-container.open .hamburger::after  { transform: translateY(-7px) rotate(-45deg); }

  .nav-menu {
    display: none;
    position: fixed;
    top: 72px; left: 12px; right: 12px;
    background: rgba(255,255,255,.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 12px;
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .nav-menu a { color: var(--text); padding: 12px 16px; border-radius: var(--radius-sm); font-size: .95rem; border-bottom: none; }
  .nav-menu a:hover { background: var(--sand); color: var(--orange); }
  .nav-container.open .nav-menu { display: flex; }
  .nav-cta { order: 2; padding: 10px 16px; font-size: .82rem; }
}

/* ---- Tablet 768px ---- */
@media (max-width: 768px) {
  .hero { padding: 120px 16px 80px; background-attachment: scroll; }
  .hero-bg { background-attachment: scroll; }
  .hero-overlay { background: linear-gradient(160deg, rgba(13,27,42,.88) 0%, rgba(13,27,42,.60) 100%); }
  .hero-inner { max-width: 100%; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }

  .tours-grid { grid-template-columns: 1fr; }
  .tour-meta { flex-wrap: wrap; gap: 8px; }

  .video-grid { grid-template-columns: 1fr; }
  .video-card video { height: 200px; }

  .gallery-slide { flex: 0 0 calc(48% - 7px); }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
  .gallery-arrow { width: 36px; height: 36px; font-size: .8rem; opacity: 1; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-inner { gap: 12px; }
  .trust-sep { display: none; }

  /* Lightbox on tablet */
  .lb-arrow { width: 42px; height: 42px; font-size: .9rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  #lightboxImg { border-radius: 6px; }
}

/* ---- Mobile 480px ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero-subtitle { font-size: .95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 10px; }

  .tour-body { padding: 18px; }
  .tour-body h3 { font-size: 1.15rem; }
  .badge-price { font-size: .73rem; padding: 4px 10px; bottom: 10px; right: 10px; }

  .gallery-slide { flex: 0 0 calc(84% - 7px); }
  .gallery-viewport { padding: 10px 10px 14px; }
  .gallery-track { gap: 10px; }
  .gallery-controls { gap: 14px; padding: 10px 0 6px; }
  .gallery-counter { font-size: .9rem; min-width: 48px; }
  .gallery-thumb { width: 52px; height: 36px; border-radius: 6px; }

  .cta-pills { flex-direction: column; align-items: center; }
  .btn-xl { padding: 14px 22px; font-size: 1rem; }
  .platform-btns { flex-direction: column; align-items: stretch; }
  .platform-btn { justify-content: center; }

  /* Lightbox on mobile */
  .lb-arrow { width: 36px; height: 36px; font-size: .82rem; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-close { top: 10px; right: 10px; width: 38px; height: 38px; font-size: .88rem; }
  .lightbox-counter { font-size: .8rem; bottom: 14px; }
  .lightbox-stage { max-width: 100vw; }
  #lightboxImg { border-radius: 0; max-width: 100vw; }
  .lightbox-caption { padding: 36px 14px 12px; font-size: .7rem; }
}

/* ---- Small phones 360px ---- */
@media (max-width: 360px) {
  .logo-img { width: 34px; height: 34px; }
  .logo span { font-size: 1rem; }
  .nav-cta { display: none; }

  .hero-title { font-size: 2.1rem; }
  .hero-eyebrow { font-size: .72rem; }
  .stat strong { font-size: 1.3rem; }

  .tour-meta span { font-size: .76rem; }
  .badge-price { font-size: .68rem; }

  .gallery-thumb { width: 44px; height: 30px; }
  .gallery-playpause { width: 30px; height: 30px; font-size: .7rem; }

  .about-mission { padding: 14px 16px; }
  .about-name { font-size: 1.7rem; }

  .section-header h2 { font-size: 1.9rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
