/* ========================================
   BEYONDROCKIES TOURS & TRAVELS v2
   Complete Stylesheet
   ======================================== */

:root {
  --navy: #0a1628;
  --navy-light: #162544;
  --navy-lighter: #1e3560;
  --orange: #e67e22;
  --orange-light: #f0a030;
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
  --gold: #f5c518;
  --green: #27ae60;
  --whatsapp: #25d366;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:var(--font);
  background:var(--navy);
  color:var(--white-90);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
a { color:inherit; text-decoration:none; }
img { max-width:100%; height:auto; display:block; }
ul { list-style:none; }
button { cursor:pointer; font-family:inherit; border:none; background:none; color:inherit; }
input, select, textarea { font-family:inherit; font-size:inherit; }

.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.text-center { text-align:center; }
.text-orange { color:var(--orange); }

.section-title {
  font-size:clamp(1.8rem, 4vw, 2.8rem);
  font-weight:800;
  line-height:1.2;
  margin-bottom:3rem;
}

/* --- Buttons --- */
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 32px;
  border-radius:8px;
  font-weight:700;
  font-size:0.95rem;
  letter-spacing:0.02em;
  transition:var(--transition);
  cursor:pointer;
  border:2px solid transparent;
}
.btn-primary {
  background:var(--orange);
  color:var(--white);
  border-color:var(--orange);
}
.btn-primary:hover {
  background:var(--orange-light);
  border-color:var(--orange-light);
  transform:translateY(-2px);
  box-shadow:0 4px 16px rgba(230,126,34,0.4);
}
.btn-secondary {
  background:transparent;
  color:var(--white);
  border-color:var(--white-30);
}
.btn-secondary:hover {
  background:var(--white-10);
  border-color:var(--white-50);
}
.btn-whatsapp {
  background:var(--whatsapp);
  color:var(--white);
  border-color:var(--whatsapp);
}
.btn-whatsapp:hover {
  background:#20bd5a;
  border-color:#20bd5a;
  transform:translateY(-2px);
  box-shadow:0 4px 16px rgba(37,211,102,0.4);
}
.btn-whatsapp svg { width:18px; height:18px; }
.btn-full { width:100%; }
.btn-submit { width:100%; font-size:1.1rem; padding:18px; }

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:999;
  width:60px;
  height:60px;
  border-radius:50%;
  background:var(--whatsapp);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 16px rgba(37,211,102,0.5);
  transition:var(--transition);
  animation:pulse 2s infinite;
}
.whatsapp-float:hover {
  transform:scale(1.1);
  box-shadow:0 6px 24px rgba(37,211,102,0.6);
}
.whatsapp-float svg { width:32px; height:32px; }
@keyframes pulse {
  0%, 100% { box-shadow:0 4px 16px rgba(37,211,102,0.5); }
  50% { box-shadow:0 4px 28px rgba(37,211,102,0.7); }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(10,22,40,0.85);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--white-10);
  transition:var(--transition);
}
.nav-container {
  max-width:1200px; margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.nav-logo { display:flex; align-items:center; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display:flex; align-items:center; gap:32px;
}
.nav-links a {
  font-size:0.9rem; font-weight:600; color:var(--white-70);
  transition:var(--transition); position:relative;
}
.nav-links a:hover, .nav-links a:focus { color:var(--white); }
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:2px; background:var(--orange);
  transition:width 0.3s ease;
}
.nav-links a:hover::after { width:100%; }
.nav-cta {
  display:inline-flex; align-items:center; gap:6px;
  padding:10px 20px; border-radius:6px;
  background:var(--whatsapp); color:var(--white);
  font-weight:700; font-size:0.8rem;
  transition:var(--transition);
}
.nav-cta:hover { background:#20bd5a; transform:translateY(-1px); }
.nav-cta::before {
  content:''; display:inline-block; width:16px; height:16px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.nav-toggle { display:none; color:var(--white); padding:8px; }

/* Mobile Nav */
.mobile-nav {
  position:fixed; top:0; right:0; bottom:0; z-index:2000;
  width:300px; max-width:85vw;
  background:var(--navy-light);
  transform:translateX(100%);
  transition:transform 0.4s cubic-bezier(0.4,0,0.2,1);
  padding:80px 32px 40px;
}
.mobile-nav.active { transform:translateX(0); }
.mobile-nav-close {
  position:absolute; top:24px; right:24px;
  color:var(--white); padding:8px;
}
.mobile-nav-links { display:flex; flex-direction:column; gap:24px; }
.mobile-nav-links a {
  font-size:1.2rem; font-weight:700; color:var(--white-90);
  padding:12px 0; border-bottom:1px solid var(--white-10);
}
.mobile-nav-links a:hover { color:var(--orange); }

/* ========================================
   HERO
   ======================================== */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.hero-video-container {
  position:absolute; inset:0; z-index:0;
}
.hero-gif {
  width:100%; height:100%; object-fit:cover;
}
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    180deg,
    rgba(10,22,40,0.3) 0%,
    rgba(10,22,40,0.6) 40%,
    rgba(10,22,40,0.92) 100%
  );
}
.hero-content {
  position:relative; z-index:2;
  text-align:center; max-width:800px;
  padding:120px 24px 80px;
}
.hero-badge {
  display:inline-block;
  padding:8px 20px; border-radius:100px;
  background:var(--white-10); border:1px solid var(--white-30);
  font-size:0.85rem; font-weight:600; letter-spacing:0.08em;
  text-transform:uppercase; margin-bottom:24px;
  backdrop-filter:blur(8px);
}
.hero-headline {
  font-size:clamp(2.5rem, 7vw, 4.5rem);
  font-weight:800; line-height:1.1;
  margin-bottom:20px; color:var(--white);
}
.hero-subheadline {
  font-size:clamp(1rem, 2vw, 1.2rem);
  color:var(--white-70); max-width:600px;
  margin:0 auto 20px; line-height:1.7;
}
.hero-buttons {
  display:flex; gap:16px; justify-content:center;
  flex-wrap:wrap;
}
.scroll-indicator {
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center;
  gap:8px; color:var(--white-50); font-size:0.75rem;
  font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
  animation:scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform:translateX(-50%) translateY(0); }
  50% { transform:translateX(-50%) translateY(10px); }
}

/* ========================================
   ROUTE TIMELINE
   ======================================== */
.route { padding:100px 0; background:var(--navy); }
.timeline {
  position:relative; max-width:700px; margin:0 auto;
}
.timeline-line {
  position:absolute; left:24px; top:0; bottom:0;
  width:2px; background:var(--white-10);
}
.timeline-progress {
  position:absolute; left:24px; top:0;
  width:2px; background:var(--orange);
  height:0%; transition:height 0.3s ease;
}
.stop-card {
  position:relative; padding-left:64px; margin-bottom:48px;
  opacity:0; transform:translateY(40px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}
.stop-card.visible { opacity:1; transform:translateY(0); }
.stop-marker {
  position:absolute; left:8px; top:4px;
  width:32px; height:32px; border-radius:50%;
  background:var(--navy-light);
  border:2px solid var(--white-30);
  display:flex; align-items:center; justify-content:center;
  transition:var(--transition); z-index:2;
}
.stop-card.active .stop-marker {
  background:var(--orange); border-color:var(--orange);
  transform:scale(1.2);
}
.stop-letter, .stop-number {
  font-size:0.75rem; font-weight:800; color:var(--white-70);
}
.stop-card.active .stop-letter,
.stop-card.active .stop-number { color:var(--white); }
.return-marker { background:var(--navy-lighter); }
.stop-content { padding-bottom:24px; }
.stop-header {
  display:flex; align-items:center; gap:12px; margin-bottom:8px;
  flex-wrap:wrap;
}
.stop-header h3 {
  font-size:1.2rem; font-weight:700; color:var(--white);
}
.stop-time {
  font-size:0.8rem; font-weight:600; color:var(--orange);
  background:rgba(230,126,34,0.15); padding:4px 12px;
  border-radius:100px;
}
.stop-desc {
  font-size:0.95rem; color:var(--white-70); line-height:1.7;
  margin-bottom:16px;
}
.stop-img {
  border-radius:12px; width:100%;
  box-shadow:var(--shadow);
}
.whatsapp-stop-btn {
  display:inline-flex; align-items:center; gap:8px;
  margin-top:12px; padding:10px 18px;
  background:var(--whatsapp); color:var(--white);
  border-radius:8px; font-size:0.85rem; font-weight:600;
  transition:var(--transition);
}
.whatsapp-stop-btn:hover {
  background:#20bd5a; transform:translateY(-2px);
}
.whatsapp-stop-btn svg { width:16px; height:16px; }
.return-card { margin-bottom:0; }
.return-card .stop-content { padding-bottom:0; }

/* ========================================
   WINDING ROAD + ROUTE CAR
   ======================================== */
.road-svg {
  position:absolute; left:0; top:0;
  width:100%; height:100%;
  pointer-events:none; z-index:1;
  overflow:visible;
}
.road-bg {
  fill:none;
  stroke:rgba(255,255,255,0.06);
  stroke-width:20;
  stroke-linecap:round;
  filter:drop-shadow(0 0 12px rgba(230,126,34,0.15));
}
.road-fill {
  fill:none;
  stroke:var(--orange);
  stroke-width:3;
  stroke-linecap:round;
  filter:drop-shadow(0 0 8px rgba(230,126,34,0.6));
}
.road-dash {
  fill:none;
  stroke:rgba(255,255,255,0.12);
  stroke-width:2;
}
.route-car {
  position:absolute;
  width:44px; height:60px;
  z-index:10;
  pointer-events:none;
  will-change:transform;
  filter:drop-shadow(0 6px 16px rgba(0,0,0,0.5));
}
.car-svg {
  width:100%; height:100%;
  overflow:visible;
}
@keyframes carBounce {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-2px); }
}
.route-car.driving .car-svg {
  animation:carBounce 0.35s ease-in-out infinite;
}
/* Hide old straight line (fallback) */
.timeline-line, .timeline-progress { display:none; }

/* ========================================
   TOUR OPTIONS
   ======================================== */
.tours {
  padding:100px 0;
  background:linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}
.tours-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px; align-items:start;
}
.tour-card {
  background:var(--navy);
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--white-10);
  transition:var(--transition);
}
.tour-card:hover {
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
}
.tour-featured {
  border-color:var(--orange);
  box-shadow:0 0 24px rgba(230,126,34,0.2);
  transform:scale(1.05);
  position:relative;
}
.tour-featured:hover { transform:scale(1.05) translateY(-8px); }
.tour-badge {
  position:absolute; top:-1px; right:20px;
  background:var(--orange); color:var(--white);
  padding:8px 16px; border-radius:0 0 8px 8px;
  font-size:0.75rem; font-weight:800;
  text-transform:uppercase; letter-spacing:0.05em;
  z-index:2;
}
.tour-img-wrap { overflow:hidden; height:200px; }
.tour-img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.tour-card:hover .tour-img { transform:scale(1.05); }
.tour-body { padding:24px; }
.tour-name {
  font-size:1rem; font-weight:800;
  letter-spacing:0.06em; color:var(--white);
}
.tour-divider {
  height:1px; background:var(--white-10);
  margin:12px 0;
}
.tour-price {
  margin-bottom:4px;
}
.price-amount {
  font-size:1.6rem; font-weight:800; color:var(--orange);
}
.price-unit {
  font-size:0.9rem; font-weight:500; color:var(--white-50);
}
.tour-price-note {
  font-size:0.8rem; color:var(--white-50);
  margin-bottom:16px;
}
.tour-features { margin-bottom:16px; }
.tour-features li {
  display:flex; align-items:center; gap:10px;
  padding:6px 0; font-size:0.9rem; color:var(--white-70);
}
.tour-features li svg { width:16px; height:16px; color:var(--green); flex-shrink:0; }
.tour-body .btn-whatsapp {
  margin-top:8px;
  padding:10px;
  font-size:0.85rem;
}

/* ========================================
   CUSTOM DESTINATION
   ======================================== */
.custom-destination {
  margin-top:64px;
  background:linear-gradient(135deg, var(--navy-lighter) 0%, var(--navy-light) 100%);
  border-radius:20px;
  border:2px dashed var(--white-30);
  padding:48px;
  text-align:center;
}
.custom-dest-icon {
  width:48px; height:48px;
  color:var(--orange);
  margin:0 auto 16px;
}
.custom-destination h3 {
  font-size:1.5rem; font-weight:800;
  color:var(--white); margin-bottom:12px;
}
.custom-destination p {
  font-size:1rem; color:var(--white-70);
  max-width:600px; margin:0 auto 24px;
  line-height:1.7;
}
.custom-dest-buttons {
  display:flex; gap:16px; justify-content:center;
  flex-wrap:wrap;
}

/* ========================================
   VEHICLE SHOWCASE
   ======================================== */
.vehicle { padding:100px 0; background:var(--navy); }
.vehicle-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px; align-items:center;
}
.vehicle-images {
  display:grid; grid-template-columns:1fr 1fr; gap:16px;
}
.vehicle-img-main {
  grid-column:1 / -1; border-radius:16px;
  box-shadow:var(--shadow-lg);
}
.vehicle-img-secondary {
  border-radius:12px; box-shadow:var(--shadow);
}
.vehicle-content .section-title { margin-bottom:20px; }
.vehicle-desc {
  font-size:1.05rem; color:var(--white-70);
  line-height:1.8; margin-bottom:28px;
}
.vehicle-specs { margin-bottom:32px; }
.vehicle-specs li {
  display:flex; align-items:center; gap:12px;
  padding:8px 0; font-size:0.95rem; color:var(--white-80);
}
.vehicle-specs li svg {
  width:20px; height:20px; color:var(--green); flex-shrink:0;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery {
  padding:100px 0;
  background:var(--navy-light);
}
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:200px;
  gap:12px;
}
.gallery-item {
  position:relative; border-radius:12px; overflow:hidden;
  cursor:pointer; grid-row:span 1;
}
.gallery-item:nth-child(1) { grid-row:span 2; }
.gallery-item:nth-child(2) { grid-row:span 2; }
.gallery-item:nth-child(5) { grid-row:span 2; grid-column:span 2; }
.gallery-item img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.5s ease;
}
.gallery-item:hover img { transform:scale(1.1); }
.gallery-overlay {
  position:absolute; inset:0;
  background:linear-gradient(transparent 40%, rgba(10,22,40,0.85) 100%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:20px; opacity:0; transition:opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay { opacity:1; }
.gallery-caption {
  color:var(--white); font-weight:600; font-size:0.9rem;
}
.gallery-likes {
  display:flex; align-items:center; gap:6px;
  color:var(--white-70); font-size:0.8rem; margin-top:4px;
}
.gallery-likes svg { width:14px; height:14px; }
.gallery-cta {
  text-align:center; margin-top:40px;
}
.gallery-cta p { margin-bottom:16px; color:var(--white-70); }

/* ========================================
   REVIEWS
   ======================================== */
.reviews { padding:100px 0; background:var(--navy); }
.reviews-grid {
  display:grid; grid-template-columns:repeat(3, 1fr); gap:32px;
}
.review-card {
  background:var(--navy-light);
  border-radius:16px; padding:32px;
  border:1px solid var(--white-10);
  transition:var(--transition);
}
.review-card:hover {
  transform:translateY(-4px);
  border-color:var(--white-20);
  box-shadow:var(--shadow);
}
.review-stars { display:flex; gap:4px; margin-bottom:16px; }
.review-stars svg { width:20px; height:20px; fill:var(--gold); color:var(--gold); }
.review-text {
  font-size:0.95rem; line-height:1.7; color:var(--white-80);
  margin-bottom:24px; font-style:italic;
}
.reviewer { display:flex; align-items:center; gap:12px; }
.reviewer-img { width:48px; height:48px; border-radius:50%; object-fit:cover; }
.reviewer-name { font-weight:700; font-size:0.9rem; color:var(--white); }
.reviewer-loc { font-size:0.8rem; color:var(--white-50); }

/* ========================================
   BOOKING
   ======================================== */
.booking {
  padding:100px 0;
  background:linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
}
.booking-wrapper {
  background:var(--navy);
  border-radius:24px; padding:48px;
  border:1px solid var(--white-10);
}
.booking-header { text-align:center; margin-bottom:48px; }
.booking-price { margin-top:16px; }
.price-amount-display { font-size:3rem; font-weight:800; color:var(--orange); }
.booking-grid {
  display:grid; grid-template-columns:1fr 1.2fr; gap:48px;
}
.booking-includes h3 {
  font-size:1.2rem; font-weight:700; margin-bottom:20px;
}
.includes-list li {
  display:flex; align-items:center; gap:12px;
  padding:8px 0; font-size:0.95rem; color:var(--white-80);
}
.includes-list li svg {
  width:18px; height:18px; color:var(--green); flex-shrink:0;
}
.not-included {
  margin-top:16px;
  display:flex; align-items:center; gap:8px;
  font-size:0.9rem; color:var(--white-50);
}
.not-included svg { width:16px; height:16px; }

/* Booking Form */
.booking-form-wrapper {
  background:var(--navy-light);
  border-radius:16px; padding:32px;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:20px; }
.form-group label {
  display:block; font-size:0.85rem; font-weight:600;
  color:var(--white-70); margin-bottom:8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:12px 16px;
  background:var(--navy);
  border:1px solid var(--white-10); border-radius:8px;
  color:var(--white); font-size:0.95rem;
  transition:var(--transition);
  resize:vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline:none; border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(230,126,34,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:var(--white-30); }
.people-warning {
  display:flex; align-items:center; gap:6px;
  margin-top:6px;
}
.people-warning svg { width:14px; height:14px; display:inline; vertical-align:middle; }
.tour-options { display:flex; flex-direction:column; gap:8px; }
.tour-radio {
  display:flex; align-items:center; gap:10px;
  padding:12px 16px; border-radius:8px;
  background:var(--navy); border:1px solid var(--white-10);
  cursor:pointer; transition:var(--transition);
}
.tour-radio:hover { border-color:var(--white-30); }
.tour-radio input { width:auto; accent-color:var(--orange); }
.tour-radio input:checked + .radio-label { color:var(--orange); font-weight:700; }
.radio-label { font-size:0.9rem; color:var(--white-80); }
.pickup-options { display:flex; flex-direction:column; gap:8px; }
.pickup-check {
  display:flex; align-items:center; gap:10px;
  font-size:0.9rem; color:var(--white-70); cursor:pointer;
}
.pickup-check input { width:auto; accent-color:var(--orange); }

.booking-success { text-align:center; padding:48px 24px; }
.booking-success h3 { font-size:1.5rem; font-weight:700; margin:16px 0 8px; color:var(--green); }
.booking-success p { color:var(--white-70); }
.booking-call { text-align:center; margin-top:20px; font-size:0.9rem; color:var(--white-50); }
.booking-call a { color:var(--orange); font-weight:700; }
.booking-whatsapp { margin-top:12px; }
.price-note { font-size:0.9rem; color:var(--white-50); margin-top:8px; }

/* ========================================
   FAQ
   ======================================== */
.faq { padding:100px 0; background:var(--navy); }
.faq-list { max-width:800px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--white-10); }
.faq-item summary {
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 0; cursor:pointer;
  font-size:1.05rem; font-weight:600; color:var(--white);
  list-style:none;
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-icon {
  width:20px; height:20px; color:var(--white-50);
  transition:transform 0.3s ease;
}
.faq-item[open] .faq-icon { transform:rotate(180deg); }
.faq-item p {
  padding:0 0 20px; font-size:0.95rem;
  color:var(--white-70); line-height:1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding:64px 0 32px;
  background:var(--navy-light);
  border-top:1px solid var(--white-10);
}
.footer-grid {
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1.5fr;
  gap:48px; margin-bottom:48px;
}
.footer-logo-img { height:64px; width:auto; margin-bottom:8px; }
.footer-tagline { font-size:0.9rem; color:var(--white-50); margin-bottom:12px; }
.footer-address { font-size:0.85rem; color:var(--white-40); }
.footer-social {
  display:flex; gap:16px; margin-top:20px;
}
.footer-social a {
  width:40px; height:40px; border-radius:50%;
  background:var(--white-10);
  display:flex; align-items:center; justify-content:center;
  transition:var(--transition);
}
.footer-social a:hover { background:var(--orange); transform:translateY(-2px); }
.footer-social svg { width:18px; height:18px; }
.footer-links h4,
.footer-contact h4 {
  font-size:0.9rem; font-weight:700;
  text-transform:uppercase; letter-spacing:0.05em;
  color:var(--white); margin-bottom:20px;
}
.footer-links a {
  display:block; padding:6px 0;
  font-size:0.9rem; color:var(--white-60);
  transition:var(--transition);
}
.footer-links a:hover { color:var(--orange); }
.footer-contact p {
  display:flex; align-items:center; gap:10px;
  padding:6px 0; font-size:0.9rem; color:var(--white-60);
}
.footer-contact svg { width:16px; height:16px; color:var(--orange); }
.footer-contact a { color:var(--white-80); }
.footer-contact a:hover { color:var(--orange); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:32px;
  border-top:1px solid var(--white-10);
  flex-wrap:wrap; gap:16px;
}
.footer-bottom p { font-size:0.8rem; color:var(--white-40); }
.footer-legal { display:flex; gap:24px; }
.footer-legal a { font-size:0.8rem; color:var(--white-40); }
.footer-legal a:hover { color:var(--orange); }

/* ========================================
   MOBILE BOTTOM NAVIGATION (App-Style)
   ======================================== */
.mobile-bottom-nav {
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:900;
  background:rgba(10,22,40,0.95);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border-top:1px solid var(--white-10);
  padding-bottom:env(safe-area-inset-bottom);
}
.mob-nav-item {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:3px; padding:8px 4px 12px; color:var(--white-50);
  font-size:0.65rem; font-weight:700; flex:1;
  transition:var(--transition); letter-spacing:0.02em;
}
.mob-nav-item i { width:22px; height:22px; stroke-width:2; }
.mob-nav-item.active, .mob-nav-item:hover { color:var(--orange); }
.mob-nav-whatsapp { color:var(--whatsapp); }
.mob-nav-whatsapp:hover { color:#20bd5a; }

/* ========================================
   MOBILE STICKY CTA (deprecated — hidden)
   ======================================== */
.mobile-sticky-cta {
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:900;
  background:rgba(10,22,40,0.95);
  backdrop-filter:blur(12px);
  border-top:1px solid var(--white-10);
  padding:12px 16px;
  grid-template-columns:1fr 1fr; gap:12px;
}
.mobile-call-btn, .mobile-book-btn {
  display:flex; align-items:center; justify-content:center;
  gap:8px; padding:14px; border-radius:8px;
  font-weight:700; font-size:0.9rem;
}
.mobile-call-btn {
  background:var(--whatsapp); color:var(--white);
}
.mobile-call-btn svg { width:18px; height:18px; }
.mobile-book-btn {
  background:var(--orange); color:var(--white);
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position:fixed; bottom:100px; right:24px; z-index:800;
  width:48px; height:48px; border-radius:50%;
  background:var(--orange); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform:translateY(20px);
  transition:var(--transition); pointer-events:none;
  box-shadow:var(--shadow);
}
.back-to-top.visible { opacity:1; transform:translateY(0); pointer-events:all; }
.back-to-top:hover { background:var(--orange-light); transform:translateY(-2px); }
.back-to-top svg { width:20px; height:20px; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .tours-grid { grid-template-columns:repeat(2, 1fr); }
  .tour-featured { transform:scale(1); }
  .tour-featured:hover { transform:translateY(-8px); }
  .vehicle-grid { grid-template-columns:1fr; gap:40px; }
  .booking-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display:none; }
  .nav-toggle { display:block; }
  .nav-logo-img { width: 36px; height: 36px; }
  .nav-logo-text { font-size: 0.85rem; }
  .nav-logo-sub { font-size: 0.55rem; }
  .nav-container { height: 60px; padding: 0 16px; }
  .navbar { height: 60px; }
  body { padding-top: 60px; }
  .hero-content { padding-top: 80px; }
  .hero-headline { font-size:2.2rem; }
  .tours-grid { grid-template-columns:1fr; }
  .tour-featured { transform:scale(1); }
  .reviews-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:repeat(2, 1fr); grid-auto-rows:150px; }
  .gallery-item:nth-child(5) { grid-column:span 1; grid-row:span 1; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .booking-wrapper { padding:24px; }
  .mobile-sticky-cta { display:none !important; }
  .mobile-bottom-nav { display:flex !important; }
  body { padding-bottom: 72px; }
  .back-to-top { bottom:92px; }
  html body .whatsapp-float { display:none !important; }
  .custom-destination { padding:32px 24px; }
  .custom-dest-buttons { flex-direction:column; }
  .custom-dest-buttons .btn { width:100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:0.01ms !important;
    transition-duration:0.01ms !important;
  }
  html { scroll-behavior:auto; }
}


/* ========================================
   MOBILE FRIENDLY ENHANCEMENTS
   ======================================== */

/* Touch-friendly tap targets */
@media (max-width: 768px) {
  /* Bigger tap targets */
  .btn {
    padding: 16px 28px;
    min-height: 48px;
    font-size: 1rem;
  }

  /* Better spacing */
  .hero {
    min-height: 100svh;
    min-height: -webkit-fill-available;
  }
  .hero-content {
    padding: 100px 20px 60px;
  }
      .hero-headline {
    font-size: 2.2rem;
  }
  .hero-subheadline {
    font-size: 0.95rem;
  }

  /* Section spacing */
  .route, .tours, .vehicle, .gallery, .reviews, .booking, .faq {
    padding: 60px 0;
  }
  .section-title {
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }

  /* Container padding */
  .container {
    padding: 0 16px;
  }

  /* Timeline */
  .stop-card {
    padding-left: 52px;
    margin-bottom: 32px;
  }
  .timeline-line, .timeline-progress {
    left: 18px;
  }
  .stop-marker {
    left: 4px;
    width: 28px;
    height: 28px;
  }

  /* Tour cards */
  .tour-card {
    margin-bottom: 16px;
  }
  .tour-featured {
    transform: none !important;
  }
  .tour-featured:hover {
    transform: translateY(-4px) !important;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5) {
    grid-row: span 1;
    grid-column: span 1;
  }

  /* Reviews */
  .review-card {
    padding: 24px;
  }

  /* Booking */
  .booking-wrapper {
    padding: 24px 16px;
  }

  /* FAQ */
  .faq-item summary {
    font-size: 0.95rem;
    padding: 16px 0;
  }

  /* Footer */
  .footer-grid {
    gap: 24px;
  }
  .footer {
    padding: 40px 0 100px;
  }

  /* Vehicle section */
  .vehicle-grid {
    gap: 32px;
  }
  .vehicle-images {
    gap: 10px;
  }

  /* Custom destination */
  .custom-destination {
    padding: 32px 20px;
    margin-top: 40px;
  }
}

/* Smooth scroll for all */
html {
  scroll-behavior: smooth;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Better font rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Better focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* Form inputs - better mobile experience */
input, select, textarea {
  -webkit-appearance: none;
  appearance: none;
}

/* Date picker icon for mobile */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.6;
  cursor: pointer;
}

/* ========================================
   BOOKING CTA SECTION
   ======================================== */
.booking-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
}
.cta-wrapper {
  text-align: center;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: var(--white-70);
  max-width: 600px;
  margin: -24px auto 48px;
  line-height: 1.7;
}
.cta-tours {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.cta-tour-card {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--white-10);
  transition: var(--transition);
  text-align: left;
  display: block;
}
.cta-tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--white-20);
}
.cta-tour-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cta-tour-card:hover img {
  transform: scale(1.05);
}
.cta-tour-info {
  padding: 20px;
}
.cta-tour-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.cta-tour-stops {
  font-size: 0.8rem;
  color: var(--white-50);
  margin-bottom: 12px;
  line-height: 1.5;
}
.cta-tour-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 16px;
}
.cta-tour-card .btn {
  width: 100%;
  padding: 12px;
  font-size: 0.9rem;
}
.cta-tour-featured {
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(230,126,34,0.15);
  position: relative;
}
.cta-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.cta-tour-custom {
  border-style: dashed;
  border-color: var(--white-30);
}
.cta-tour-custom:hover {
  border-color: var(--orange);
}
.cta-contact {
  font-size: 1rem;
  color: var(--white-70);
}
.cta-contact a {
  color: var(--orange);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .cta-tours {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .booking-cta {
    padding: 60px 0;
  }
  .cta-tours {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cta-tour-card {
    display: grid;
    grid-template-columns: 140px 1fr;
  }
  .cta-tour-card img {
    height: 100%;
  }
  .cta-subtitle {
    font-size: 0.95rem;
  }
  .cta-badge {
    top: 8px;
    right: 8px;
    font-size: 0.6rem;
    padding: 4px 10px;
  }
}

/* ============================================
   DESTINATIONS SECTION (added for SEO internal linking)
   Matches existing design system — navy/orange/Montserrat
   ============================================ */
.destinations {
  padding: 5rem 0;
  background: linear-gradient(180deg, #0a1628 0%, #162544 100%);
  color: #fff;
}
.destinations .section-title {
  margin-bottom: 0.5rem;
}
.destinations .section-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.dest-category {
  margin-bottom: 3rem;
}
.dest-category:last-child {
  margin-bottom: 0;
}
.dest-cat-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f0a030;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.02em;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.dest-card {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.dest-card:hover, .dest-card:focus-visible {
  transform: translateY(-4px);
  border-color: #e67e22;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}
.dest-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.dest-card-body {
  padding: 1rem 1.1rem 1.2rem;
}
.dest-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #fff;
  line-height: 1.3;
}
.dest-card-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .destinations { padding: 3.5rem 0; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .dest-card img { height: 120px; }
  .dest-card-body { padding: 0.75rem 0.85rem 0.95rem; }
  .dest-card-body h4 { font-size: 0.92rem; }
  .dest-card-body p { font-size: 0.78rem; }
  .dest-cat-title { font-size: 1.15rem; }
}

/* ============================================================
   TRUST & CONVERSION SECTIONS — SEO Enhancement
   ============================================================ */

/* Trust Numbers Strip */
.trust-strip {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 32px 0;
}
.trust-strip .tg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 22px;
  text-align: center;
}
.trust-strip .tg-item .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
}
.trust-strip .tg-item .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* Why Choose Us Section */
.why-choose {
  padding: 5rem 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}
.why-card i {
  width: 40px;
  height: 40px;
  color: var(--orange);
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.6rem;
}
.why-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.6;
}

/* Licensed & Insured Section */
.license-section {
  padding: 3.5rem 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.license-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.license-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 600;
}
.license-badge i {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

/* Google Reviews Section */
.reviews-section {
  padding: 4rem 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.reviews-section .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.reviews-section .review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
}
.reviews-section .review-card .review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 0.75rem;
}
.reviews-section .review-card .review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--orange);
  color: var(--orange);
}
.reviews-section .review-card .review-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.reviews-section .review-card .reviewer-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  margin: 0;
}
.reviews-section .review-card .reviewer-loc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

@media (max-width: 640px) {
  .trust-strip { padding: 24px 0; }
  .trust-strip .tg { gap: 14px; }
  .trust-strip .tg-item .num { font-size: 1.3rem; }
  .trust-strip .tg-item .lbl { font-size: 0.75rem; }
  .why-choose { padding: 3rem 0; }
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-card { padding: 1.5rem 1.25rem; }
  .license-badges { gap: 1.25rem; }
  .license-badge { font-size: 0.85rem; }
}

/* ============================================================
   PHOTOGRAPHY FEATURE — Premium Brand Differentiator
   ============================================================ */

.photography-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(230, 126, 34, 0.12);
  border: 1px solid rgba(230, 126, 34, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0.85rem;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
}
.photography-badge svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}
.photography-highlight {
  background: rgba(230, 126, 34, 0.06);
  border: 1px solid rgba(230, 126, 34, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}
.photography-highlight h4 {
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.photography-highlight p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}
.photography-locations {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.photography-locations span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  padding: 0.25rem 0.6rem;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}
