/* ============================================================
   UnseenTrip — Glassmorphism Design System
   ============================================================ */

:root {
  --deep: #0a0f1e;
  --mid: #111827;
  --surface: rgba(255,255,255,0.06);
  --surface-hover: rgba(255,255,255,0.10);
  --border: rgba(255,255,255,0.12);
  --border-strong: rgba(255,255,255,0.22);
  --gold: #c9a96e;
  --gold-light: #e4c48a;
  --text: #f0ece4;
  --text-muted: rgba(240,236,228,0.6);
  --text-faint: rgba(240,236,228,0.35);
  --green: #25d366;
  --blur: 18px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  background: var(--deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color 0.2s; }

ul { list-style: none; }

/* ===== GLASS UTILITY ===== */
.glass {
  background: var(--surface);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-header p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 1.05rem;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

em { font-style: italic; color: var(--gold-light); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: #0a0f1e;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.4); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--border-strong);
  border-radius: 50px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: var(--surface-hover); border-color: var(--gold); color: var(--gold); }

.btn-nav {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: #0a0f1e;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #25d366;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); color: white; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
#navbar.scrolled {
  background: rgba(10,15,30,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}
.logo-icon { color: var(--gold); font-size: 1.1rem; }

.nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.nav-links li a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--text); background: var(--surface); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 850;
  background: rgba(10,15,30,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu li a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu li a:hover { background: var(--surface); color: var(--text); }
.mobile-menu li a.cta {
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: #0a0f1e;
  margin-top: 8px;
  text-align: center;
  font-weight: 600;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 24px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,15,30,0.45) 0%,
    rgba(10,15,30,0.3) 40%,
    rgba(10,15,30,0.65) 75%,
    rgba(10,15,30,0.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  display: inline-block;
  padding: 7px 18px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-content h1 { color: var(--text); text-shadow: 0 2px 20px rgba(0,0,0,0.4); margin-bottom: 20px; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(240,236,228,0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 28px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px;
}
.stat-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.06em; }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; transform: scaleY(0.8); } 50% { opacity: 1; transform: scaleY(1); } }

/* ===== WHY SECTION ===== */
.why { background: linear-gradient(180deg, rgba(17,24,39,0) 0%, rgba(17,24,39,0.6) 100%); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text h2 { margin-bottom: 20px; }
.why-text > p { color: var(--text-muted); margin-bottom: 40px; font-size: 1.05rem; line-height: 1.75; }

.why-features { display: grid; gap: 20px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, background 0.2s;
}
.feature-item:hover { border-color: var(--border-strong); background: var(--surface-hover); }
.feature-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.feature-item strong { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.feature-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

.img-glass-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.img-glass-frame img { width: 100%; height: 480px; object-fit: cover; }

.gnh-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  padding: 14px 20px;
  background: rgba(10,15,30,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  text-align: center;
}
.gnh-text { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); line-height: 1; }
.gnh-sub { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; display: block; }

/* ===== TOURS ===== */
.tours-section { background: linear-gradient(135deg, rgba(17,24,39,0.8) 0%, rgba(10,15,30,0.9) 100%); }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.tour-card {
  background: var(--surface);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.tour-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }

.tour-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.tour-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.tour-card:hover .tour-img img { transform: scale(1.05); }
.tour-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  background: rgba(10,15,30,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.tour-duration {
  position: absolute;
  top: 14px; right: 14px;
  padding: 5px 12px;
  background: rgba(201,169,110,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-light);
}

.tour-body { padding: 22px; }
.tour-dest { font-size: 0.75rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.tour-body h3 { margin-bottom: 10px; color: var(--text); }
.tour-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.tour-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.tour-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-light); }
.tour-price span { font-family: var(--font-body); font-size: 0.72rem; color: var(--text-muted); display: block; }
.tour-actions { display: flex; gap: 8px; }
.tour-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s;
}
.tour-actions a:hover { background: var(--surface-hover); border-color: var(--gold); }
.tour-actions .wa-btn { border-color: rgba(37,211,102,0.3); color: #25d366; }
.tour-actions .wa-btn:hover { background: rgba(37,211,102,0.1); border-color: #25d366; }
.tour-book-btn {
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: #0a0f1e;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tour-book-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,169,110,0.35); }

/* ===== DESTINATIONS ===== */
.destinations-section { overflow: hidden; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  aspect-ratio: 3/4;
}
.dest-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dest-card:hover img { transform: scale(1.07); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.9) 0%, rgba(10,15,30,0.1) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
}
.dest-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--text); }
.dest-tag { font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 3px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: rgba(17,24,39,0.5); }

.reviews-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  padding: 28px;
  background: var(--surface);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}
.review-card:hover { border-color: var(--border-strong); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #a07840);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #0a0f1e;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-origin { font-size: 0.78rem; color: var(--text-faint); }
.review-tour { font-size: 0.72rem; color: var(--gold); margin-top: 2px; }

/* ===== CONTACT ===== */
.contact-section { position: relative; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
}
.info-card .info-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-card strong { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: 0.9rem; color: var(--text-muted); }
.info-card a:hover { color: var(--gold); }

.contact-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.contact-form { padding: 36px; }
.contact-form h3 { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 6px; }
.contact-form > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; }

input, select, textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: rgba(201,169,110,0.05); }
input::placeholder, textarea::placeholder { color: var(--text-faint); }
select { cursor: pointer; }
select option { background: #1a2030; color: var(--text); }
textarea { resize: vertical; min-height: 110px; }

.form-msg { margin-top: 12px; padding: 12px 16px; border-radius: 10px; font-size: 0.88rem; display: none; }
.form-msg.success { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3); color: #25d366; display: block; }
.form-msg.error { background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.3); color: #f87171; display: block; }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: rgba(5,8,18,0.98);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; max-width: 300px; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-links a:hover { background: var(--surface-hover); color: var(--gold); border-color: var(--gold); }

.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-faint); }
.footer-bottom a { color: var(--gold); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5,8,18,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  color: var(--text);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}
.modal-close:hover { background: rgba(220,38,38,0.2); color: #f87171; border-color: #f87171; }

.booking-modal { max-width: 680px; }
.booking-modal h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 6px; }
.booking-tour-label { color: var(--gold); font-size: 0.9rem; margin-bottom: 24px; }

/* ===== TOUR DETAIL MODAL ===== */
.modal-tour-img { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; margin-bottom: 24px; }
.modal-tour-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.modal-tour-meta span {
  padding: 5px 12px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--gold-light);
}
.modal-tour-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 28px; }
.modal-tour-price { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold-light); margin-bottom: 20px; }
.modal-tour-price span { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-muted); }
.modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image { order: -1; }
  .img-glass-frame img { height: 360px; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-card:nth-child(4), .dest-card:nth-child(5) { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }

  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .hero-content h1 { font-size: 2.5rem; }
  .hero-stats { gap: 10px; }
  .stat-pill { padding: 12px 20px; }
  .stat-num { font-size: 1.4rem; }

  .tours-grid { grid-template-columns: 1fr; }

  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card:nth-child(4), .dest-card:nth-child(5) { display: block; }
  .dest-card:nth-child(5) { display: none; }

  .reviews-track { grid-template-columns: 1fr; }

  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .modal { padding: 24px; }
  .booking-modal h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding-top: calc(var(--nav-h) + 16px); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; max-width: 280px; }

  .stat-pill { flex-direction: row; gap: 10px; padding: 10px 16px; }
  .stat-num { font-size: 1.2rem; }

  h2 { font-size: 1.8rem; }
  .section-header { margin-bottom: 40px; }

  .dest-grid { grid-template-columns: 1fr 1fr; }

  .tour-actions { flex-wrap: wrap; }

  .contact-ctas { flex-direction: column; }
  .contact-ctas .btn-primary, .contact-ctas .btn-whatsapp { width: 100%; justify-content: center; }

  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
