/* ═══════════════════════════════════════════════════
   SENTIDO ANDINO — Custom Stylesheet
   Works alongside Bootstrap 5, AOS, Owl Carousel, Fancybox
   ═══════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --dark-slate: #384955;
  --muted-blue: #93AABC;
  --sky-blue: #BBDAF2;
  --earthy-brown: #84705B;
  --light-gray: #E1E1E1;
  --warm-sand: #B9A38D;
  --white: #FFFFFF;
  --off-white: #F7F5F2;
  --deep-navy: #2C3E4A;
}

/* ── GLOBAL RESETS & BASE ── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-slate);
  background: var(--off-white);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--muted-blue); border-radius: 4px; }

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1050;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all 0.5s ease;
}
.nav.scrolled {
  padding: 10px 48px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(187,218,242,0.3);
  box-shadow: 0 4px 30px rgba(56,73,85,0.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo img {
  height: 50px; opacity: 0; pointer-events: none;
  transition: all 0.5s ease;
}
.nav.scrolled .nav-logo img {
  height: 72px; opacity: 1; pointer-events: auto;
}
.nav-logo span {
  font-weight: 700; font-size: 18px; color: var(--white);
  letter-spacing: 2px; text-transform: uppercase;
  opacity: 0; pointer-events: none; transition: all 0.5s ease;
}
.nav.scrolled .nav-logo span {
  color: var(--dark-slate); opacity: 1; pointer-events: auto;
}

.nav-links {
  display: flex; gap: 32px; align-items: center;
}
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.8);
  font-weight: 500; font-size: 14px; letter-spacing: 1px;
  text-transform: uppercase; position: relative; transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: var(--dark-slate); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--earthy-brown);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a:hover { color: var(--earthy-brown); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--earthy-brown); color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px;
  font-weight: 600; font-size: 13px !important;
  letter-spacing: 1.5px; transition: all 0.3s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--dark-slate); transform: translateY(-1px);
  color: var(--white) !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 6px 0; transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--dark-slate); }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920&h=1080&fit=crop');
  background-size: cover; background-position: center 40%;
  background-repeat: no-repeat;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(28,44,58,0.7) 0%,
    rgba(44,62,74,0.6) 40%,
    rgba(56,73,85,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px; max-width: 900px;
  animation: heroFadeIn 1.2s ease-out;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-logo {
  width: 140px; height: auto; margin-bottom: 28px; display: block; margin: 0 auto 2.5rem;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(187,218,242,0.15);
  border: 1px solid rgba(187,218,242,0.25);
  padding: 8px 20px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--sky-blue); margin-bottom: 28px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-size: clamp(42px, 7vw, 88px); font-weight: 800;
  color: var(--white); line-height: 1.05;
  margin-bottom: 20px; letter-spacing: -1px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero h1 .accent { color: var(--sky-blue); }
.hero h1 .script { font-style: italic; font-weight: 300; color: var(--warm-sand); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px); font-weight: 300;
  color: rgba(255,255,255,0.8); max-width: 900px;
  margin: 0 auto 40px; line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--earthy-brown); color: var(--white);
  padding: 18px 42px; border-radius: 60px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(132,112,91,0.3);
}
.hero-cta:hover {
  background: var(--warm-sand); color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(132,112,91,0.4);
}
.hero-cta svg { transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateY(3px); }
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ══════════════════════════════════════════
   SECTION COMMON
   ══════════════════════════════════════════ */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--earthy-brown); margin-bottom: 16px;
}
.section-tag::before {
  content: ''; width: 30px; height: 2px; background: var(--earthy-brown);
}
.section-title {
  font-size: clamp(32px, 4vw, 52px); font-weight: 800;
  color: var(--dark-slate); line-height: 1.15; margin-bottom: 20px;
}
.section-desc {
  font-size: 17px; font-weight: 300; color: var(--muted-blue);
  line-height: 1.7; max-width: 680px;
}

/* ══════════════════════════════════════════
   TRIPS
   ══════════════════════════════════════════ */
.trips {
  padding: 120px 0; position: relative; background: var(--off-white);
}
.trips-header { text-align: center; margin-bottom: 72px; }
.trips-header .section-desc { margin: 0 auto; }

.trip-card {
  background: var(--white); border-radius: 20px;
  overflow: hidden; position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(56,73,85,0.06);
  text-decoration: none; color: inherit; display: block; cursor: pointer;
  height: 100%;
}
.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(56,73,85,0.12);
}
.trip-img { height: 260px; position: relative; overflow: hidden; }
.trip-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.trip-card:hover .trip-img img { transform: scale(1.08); }
.trip-difficulty {
  position: absolute; top: 16px; left: 16px;
  background: rgba(56,73,85,0.85); backdrop-filter: blur(8px);
  color: var(--white); padding: 6px 14px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
}
.trip-duration {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  color: var(--dark-slate); padding: 6px 14px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
}
.trip-body { padding: 28px; }
.trip-location {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--earthy-brown); margin-bottom: 8px;
}
.trip-name {
  font-size: 22px; font-weight: 700; color: var(--dark-slate);
  margin-bottom: 12px; line-height: 1.3;
}
.trip-excerpt {
  font-size: 14px; font-weight: 300; color: var(--muted-blue);
  line-height: 1.7; margin-bottom: 20px;
}
.trip-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid var(--light-gray);
}
.trip-price { font-size: 24px; font-weight: 800; color: var(--dark-slate); }
.trip-price span { font-size: 13px; font-weight: 400; color: var(--muted-blue); }
.trip-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sky-blue); color: var(--dark-slate);
  padding: 10px 22px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; transition: all 0.3s;
}
.trip-btn:hover { background: var(--earthy-brown); color: var(--white); }

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about {
  padding: 120px 0; background: var(--dark-slate);
  color: var(--white); position: relative; overflow: hidden;
}
.about-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(187,218,242,0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(185,163,141,0.05) 0%, transparent 40%);
}
.about .section-tag { color: var(--sky-blue); }
.about .section-tag::before { background: var(--sky-blue); }
.about .section-title { color: var(--white); }
.about .section-desc { color: rgba(255,255,255,0.6); }
.about-story {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.7);
  line-height: 1.8; margin-top: 24px;
}
.about-stats { margin-top: 48px; }
.stat-item { text-align: center; }
.stat-number {
  font-size: 48px; font-weight: 800; color: var(--sky-blue); line-height: 1;
}
.stat-label {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5);
  letter-spacing: 2px; text-transform: uppercase; margin-top: 8px;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%; border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.about-img-main img {
  width: 100%; height: 520px; object-fit: cover; display: block;
}
.about-img-accent {
  position: absolute; bottom: -80px; left: -30px;
  width: 240px; height: 280px; border-radius: 20px;
  overflow: hidden; border: 4px solid var(--dark-slate);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-float-badge {
  position: absolute; top: -40px; right: -40px;
  background: var(--earthy-brown); color: var(--white);
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(132,112,91,0.4);
}
.about-float-badge .badge-num { font-size: 32px; font-weight: 800; line-height: 1; }
.about-float-badge .badge-text {
  font-size: 10px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; text-align: center; margin-top: 4px;
}

/* ══════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════ */
.team {
  padding: 100px 0 120px; background: var(--dark-slate);
  position: relative; z-index: 2;
}
.team-header { text-align: center; margin-bottom: 60px; }
.team .section-tag { color: var(--sky-blue); }
.team .section-tag::before { background: var(--sky-blue); }
.team .section-title { color: var(--white); }

.team-card {
  text-align: center; padding: 32px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; transition: all 0.4s; height: 100%;
}
.team-card:hover {
  background: rgba(255,255,255,0.08); transform: translateY(-4px);
}
.team-avatar {
  width: 160px; height: 160px; border-radius: 50%;
  margin: 0 auto 20px; overflow: hidden;
  border: 3px solid var(--sky-blue);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.team-role {
  font-size: 13px; font-weight: 500; color: var(--warm-sand);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
}
.team-bio {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   TESTIMONIALS + OWL CAROUSEL
   ══════════════════════════════════════════ */
.testimonials {
  padding: 120px 0; background: var(--off-white); position: relative;
  overflow: hidden;
}
.testimonials-header { text-align: center; margin-bottom: 72px; }
.testimonials-header .section-desc { margin: 0 auto; }

.testimonial-card {
  background: var(--white); padding: 40px; border-radius: 20px;
  position: relative;
  box-shadow: 0 4px 20px rgba(56,73,85,0.05);
  transition: all 0.4s; margin: 10px 0 30px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(56,73,85,0.1);
}
.testimonial-quote {
  position: absolute; top: 24px; right: 32px;
  font-size: 72px; font-weight: 800; color: var(--sky-blue);
  opacity: 0.3; line-height: 1;
}
.testimonial-stars { margin-bottom: 20px; }
.testimonial-stars svg { color: var(--warm-sand); }
.testimonial-text {
  font-size: 15px; font-weight: 400; color: var(--dark-slate);
  line-height: 1.8; margin-bottom: 28px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--dark-slate); }
.testimonial-trip {
  font-size: 12px; font-weight: 500; color: var(--earthy-brown);
  letter-spacing: 1px; text-transform: uppercase;
}

/* Owl Carousel custom dots */
.testimonials .owl-dots {
  text-align: center; margin-top: 16px;
}
.testimonials .owl-dot span {
  width: 10px; height: 10px; margin: 0 6px;
  background: var(--light-gray); border-radius: 50%;
  display: inline-block; transition: all 0.3s;
}
.testimonials .owl-dot.active span {
  background: var(--earthy-brown); width: 28px; border-radius: 5px;
}
/* Owl nav arrows */
.testimonials .owl-nav {
  position: absolute; top: 50%; width: 100%;
  display: flex; justify-content: space-between;
  pointer-events: none; transform: translateY(-50%);
}
.testimonials .owl-nav button {
  pointer-events: auto; width: 48px; height: 48px;
  border-radius: 50% !important; background: var(--white) !important;
  box-shadow: 0 4px 16px rgba(56,73,85,0.1);
  color: var(--dark-slate) !important; font-size: 24px !important;
  transition: all 0.3s;
}
.testimonials .owl-nav button:hover {
  background: var(--earthy-brown) !important;
  color: var(--white) !important;
}
.testimonials .owl-nav .owl-prev { margin-left: -24px; }
.testimonials .owl-nav .owl-next { margin-right: -24px; }

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  background: linear-gradient(165deg, var(--deep-navy) 0%, var(--dark-slate) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.contact-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 80%, rgba(187,218,242,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 20%, rgba(185,163,141,0.06) 0%, transparent 40%);
}
.contact .section-tag { color: var(--sky-blue); }
.contact .section-tag::before { background: var(--sky-blue); }
.contact .section-title { color: var(--white); }
.contact .section-desc { color: rgba(255,255,255,0.6); }
.contact-details { margin-top: 40px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(187,218,242,0.1); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--sky-blue); }
.contact-item-label {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px;
}
.contact-item-value {
  font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.85);
}
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 48px;
}
.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea.form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; color: var(--white);
  font-family: 'Montserrat', sans-serif; font-size: 15px;
  padding: 14px 18px; transition: all 0.3s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form textarea.form-control:focus {
  border-color: var(--sky-blue); background: rgba(187,218,242,0.08);
  box-shadow: none; color: var(--white);
}
.contact-form .form-control::placeholder,
.contact-form textarea.form-control::placeholder {
  color: rgba(255,255,255,0.25);
}
.contact-form .form-select option {
  background: var(--dark-slate); color: var(--white);
}
.contact-form .form-label {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.contact-form textarea.form-control {
  resize: vertical; min-height: 120px;
}
.form-submit {
  width: 100%; padding: 18px;
  background: var(--earthy-brown); color: var(--white);
  border: none; border-radius: 14px; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; transition: all 0.3s;
}
.form-submit:hover {
  background: var(--warm-sand); transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  padding: 60px 48px 32px; background: #1a2a35;
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  /*max-width: 1200px; */margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 98px; }
.footer-logo span {
  font-weight: 700; font-size: 16px; color: var(--white);
  letter-spacing: 2px; text-transform: uppercase;
}
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  color: rgba(255,255,255,0.4); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; transition: color 0.3s;
}
.footer-links a:hover { color: var(--sky-blue); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05); display: flex;
  align-items: center; justify-content: center; transition: all 0.3s;
}
.footer-social a:hover { background: var(--earthy-brown); }
.footer-social svg { width: 18px; height: 18px; color: rgba(255,255,255,0.5); }
.footer-social a:hover svg { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 24px; text-align: center; font-size: 13px; font-weight: 300;
}

/* ══════════════════════════════════════════
   TRIP DETAIL PAGES
   ══════════════════════════════════════════ */
.page-trip-detail { display: none; }
.page-trip-detail.active { display: block; }
.page-home.hidden { display: none; }

.trip-detail-hero {
  min-height: 65vh; display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
}
.trip-detail-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.trip-detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(28,44,58,0.3) 0%, rgba(28,44,58,0.85) 100%);
}
.trip-detail-hero-content {
  position: relative; z-index: 2;
  padding: 60px 48px; width: 100%; max-width: 1200px; margin: 0 auto;
}
.trip-detail-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 24px;
  transition: color 0.3s; cursor: pointer;
  background: none; border: none; font-family: 'Montserrat', sans-serif;
}
.trip-detail-back:hover { color: var(--white); }
.trip-detail-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.trip-detail-meta-tag {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  color: var(--white); padding: 6px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase;
}
.trip-detail-hero h1 {
  font-size: clamp(36px, 5vw, 64px); font-weight: 800;
  color: var(--white); line-height: 1.1; margin-bottom: 12px;
}
.trip-detail-hero .trip-detail-summary {
  font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.8);
  max-width: 700px; line-height: 1.7;
}

.td-section { margin-bottom: 48px; }
.td-section-title {
  font-size: 22px; font-weight: 700; color: var(--dark-slate);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--sky-blue);
}
.td-section p,
.td-section li {
  font-size: 15px; font-weight: 400; color: #5a6b78; line-height: 1.8;
}
.td-section p + p { margin-top: 16px; }
.td-section ul { list-style: none; padding: 0; }
.td-section ul li { padding: 8px 0 8px 28px; position: relative; }
.td-section ul li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--earthy-brown); font-weight: 700;
}

/* Itinerary */
.itinerary-day {
  padding: 24px; margin-bottom: 16px;
  background: var(--white); border-radius: 16px;
  border-left: 4px solid var(--earthy-brown);
  box-shadow: 0 2px 12px rgba(56,73,85,0.05);
}
.itinerary-day-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.itinerary-day-num {
  background: var(--earthy-brown); color: var(--white);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.itinerary-day-title {
  font-size: 16px; font-weight: 700; color: var(--dark-slate);
}
.itinerary-day p {
  font-size: 14px; color: #5a6b78; line-height: 1.7; margin-left: 48px;
}

/* FAQ accordion */
.faq-item {
  margin-bottom: 12px; background: var(--white);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(56,73,85,0.04);
}
.faq-question {
  width: 100%; padding: 18px 24px;
  background: none; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--dark-slate);
  text-align: left; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.faq-question::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: var(--earthy-brown); transition: transform 0.3s;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: 14px; color: #5a6b78; line-height: 1.7;
}

/* Gallery with Fancybox */
.td-gallery a {
  display: block; overflow: hidden; border-radius: 12px;
}
.td-gallery img {
  width: 100%; height: 160px; object-fit: cover;
  border-radius: 12px; transition: transform 0.3s;
  display: block;
}
.td-gallery a:hover img { transform: scale(1.05); }

/* Sidebar card */
.td-sidebar-card {
  background: var(--white); border-radius: 20px;
  padding: 32px; position: sticky; top: 100px;
  box-shadow: 0 8px 30px rgba(56,73,85,0.08);
}
.td-sidebar-price {
  font-size: 36px; font-weight: 800; color: var(--dark-slate);
  margin-bottom: 4px;
}
.td-sidebar-price span {
  font-size: 15px; font-weight: 400; color: var(--muted-blue);
}
.td-sidebar-subtitle {
  font-size: 13px; color: var(--muted-blue); margin-bottom: 24px;
}
.td-sidebar-info { margin-bottom: 24px; }
.td-sidebar-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--light-gray);
}
.td-sidebar-row:last-child { border-bottom: none; }
.td-sidebar-label {
  font-size: 13px; font-weight: 600; color: var(--muted-blue);
  text-transform: uppercase; letter-spacing: 1px;
}
.td-sidebar-value {
  font-size: 14px; font-weight: 600; color: var(--dark-slate);
}
.td-sidebar-dates { margin-bottom: 24px; }
.td-sidebar-dates-title {
  font-size: 13px; font-weight: 700; color: var(--dark-slate);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
}
.td-date-tag {
  display: inline-block; padding: 6px 14px; margin: 4px 4px 4px 0;
  background: var(--sky-blue); color: var(--dark-slate);
  border-radius: 50px; font-size: 12px; font-weight: 600;
}
.td-sidebar-cta {
  display: block; width: 100%; padding: 16px; text-align: center;
  background: var(--earthy-brown); color: var(--white);
  border: none; border-radius: 14px; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; transition: all 0.3s;
}
.td-sidebar-cta:hover {
  background: var(--warm-sand); color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .trip-detail-body .row { flex-direction: column; }
  .td-sidebar-card { position: static; }
}

@media (max-width: 768px) {
  .nav { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--light-gray);
  }
  .nav-links.open a { color: var(--dark-slate); }
  .hero { min-height: 100svh; }
  .trips, .about, .testimonials, .contact { padding: 80px 0; }
  .footer-inner {
    flex-direction: column; gap: 24px; text-align: center;
  }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .about-img-accent { width: 120px; height: 120px; bottom: -20px; left: -10px; }
  .about-float-badge { width: 90px; height: 90px; top: -10px; right: -10px; }
  .about-float-badge .badge-num { font-size: 24px; }
  .team { padding-top: 0; padding-bottom: 80px; }
  .trip-detail-hero-content { padding: 40px 24px; }
  .footer { padding: 60px 24px 32px; }

  /* Owl nav hidden on mobile */
  .testimonials .owl-nav { display: none; }
}

@media (max-width: 480px) {
  .td-gallery .col-4 { flex: 0 0 50%; max-width: 50%; }
}
