/* =============================================
   WANDERLUST TOURS — MAIN STYLESHEET
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #e85d04;
  --primary-dark: #c44d00;
  --primary-light: #ff8c42;
  --secondary: #1a3c5e;
  --secondary-light: #2a5880;
  --accent: #ffd166;
  --text: #2d2d2d;
  --text-muted: #666;
  --bg-light: #f8f9ff;
  --bg-dark: #0f1b2d;
  --white: #ffffff;
  --border: #e8e8e8;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.18);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --font: 'Poppins', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
input, select, textarea, button { font-family: var(--font); }

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,93,4,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,93,4,0.50);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover { background: var(--accent); }

.btn-lg { padding: 15px 38px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px; }

/* --- SECTION COMMONS --- */
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--secondary);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-title span { color: var(--primary); }
.section-desc { color: var(--text-muted); max-width: 540px; }
.section-sub { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-cta { text-align: center; margin-top: 50px; }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--secondary);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left { display: flex; gap: 24px; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-right { display: flex; gap: 14px; }
.top-bar-right a {
  color: rgba(255,255,255,0.7);
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}
.top-bar-right a:hover { background: var(--primary); color: #fff; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.14);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.5px;
}
.logo span strong { color: var(--primary); }
.logo-white { color: var(--white); }
.logo-white span strong { color: var(--accent); }
.logo-icon {
  font-size: 1.8rem;
  color: var(--primary);
  animation: spinSlow 8s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-link {
  padding: 7px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

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

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,25,48,0.72) 0%, rgba(10,25,48,0.38) 60%, transparent 100%);
  z-index: 1;
}

/* Decorative SVGs */
.deco { position: absolute; z-index: 2; fill: rgba(255,255,255,0.07); }
.deco-plane {
  width: 80px; top: 12%; right: 8%;
  animation: flyPlane 12s linear infinite;
}
@keyframes flyPlane {
  0% { transform: translate(0, 0) rotate(-10deg); }
  50% { transform: translate(-30px, -15px) rotate(-10deg); }
  100% { transform: translate(0, 0) rotate(-10deg); }
}
.deco-cloud1 {
  width: 120px; top: 20%; right: 15%;
  animation: floatCloud 10s ease-in-out infinite;
}
.deco-cloud2 {
  width: 90px; top: 55%; right: 5%;
  animation: floatCloud 14s ease-in-out infinite reverse;
}
@keyframes floatCloud {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-20px); }
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 820px;
  padding: 40px 24px;
}
.hero-sub {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.12;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Search Bar */
.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--white);
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0,0,0,0.3);
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
  max-width: 800px;
}
.search-group {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-right: 1px solid var(--border);
}
.search-group i { color: var(--primary); font-size: 0.9rem; flex-shrink: 0; }
.search-group select, .search-group input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.88rem;
  color: var(--text);
  background: transparent;
}
.btn-search {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  padding: 14px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-search:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.dot.active {
  background: var(--white);
  width: 30px;
  border-radius: 5px;
}

/* =============================================
   STATS
   ============================================= */
.stats {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  padding: 8px 0;
}
.stat-item i {
  font-size: 2.2rem;
  color: var(--accent);
  flex-shrink: 0;
}
.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.stat-item h3::after { content: '+'; }
.stat-item p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  padding: 100px 0;
  background: var(--bg-light);
}
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-us-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.why-us-img img {
  border-radius: var(--radius-lg);
  height: 520px;
  box-shadow: var(--shadow);
}
.exp-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.exp-badge span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.exp-badge { font-size: 0.8rem; font-weight: 500; }

.why-us-content .section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(232,93,4,0.1), rgba(255,140,66,0.1));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.feature-icon i { color: var(--primary); font-size: 1.2rem; }
.feature-card h4 { font-size: 0.95rem; margin-bottom: 6px; color: var(--secondary); }
.feature-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* =============================================
   TOURS
   ============================================= */
.tours {
  padding: 100px 0;
  background: var(--white);
}

.tour-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

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

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.tour-card.hidden { display: none; }

.tour-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.tour-img img {
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-img img { transform: scale(1.08); }

.tour-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tour-badge.beach { background: #0096c7; }
.tour-badge.nature { background: #2d9e47; }
.tour-badge.heritage { background: #7b2d8b; }

.tour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,27,45,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.tour-card:hover .tour-overlay { opacity: 1; }

.tour-body { padding: 20px; }
.tour-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.tour-meta span { display: flex; align-items: center; gap: 5px; }
.tour-meta i { color: var(--primary); }
.tour-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}
.tour-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.tour-rating { font-size: 0.78rem; color: #f4a534; }
.tour-rating span { color: var(--text-muted); margin-left: 4px; }
.price-old { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; margin-right: 6px; }
.price-new { font-size: 1.1rem; font-weight: 700; color: var(--primary); }

/* =============================================
   DESTINATIONS
   ============================================= */
.destinations {
  padding: 100px 0;
  background: var(--bg-light);
}
.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 520px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.dest-large {
  grid-row: 1 / 3;
}
.dest-card img {
  transition: transform 0.5s ease;
  height: 100%;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,48,0.75) 0%, transparent 55%);
}
.dest-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 2;
  color: var(--white);
}
.dest-info h3 { font-size: 1rem; font-weight: 700; display: flex; flex-direction: column; gap: 2px; }
.dest-info h3 span { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.75); }
.dest-large .dest-info h3 { font-size: 1.4rem; }
.dest-info p { font-size: 0.78rem; color: var(--accent); margin-top: 4px; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #0f2d4a 100%);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.how-it-works .section-tag { color: var(--accent); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-sub { color: rgba(255,255,255,0.65); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
.step-connector {
  color: rgba(255,255,255,0.3);
  font-size: 1.5rem;
  text-align: center;
}
.step-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
}
.step-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
}
.step-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: -10px;
}
.step-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(232,93,4,0.4);
}
.step-icon i { font-size: 1.6rem; color: var(--white); }
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.step-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials-slider { position: relative; overflow: hidden; }
.testi-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.testi-card {
  min-width: calc(33.333% - 19px);
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.testi-stars { color: #f4a534; font-size: 0.9rem; margin-bottom: 16px; }
.testi-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-card > p::before { content: '"'; font-size: 1.5rem; color: var(--primary); line-height: 0; vertical-align: -8px; }
.testi-card > p::after { content: '"'; font-size: 1.5rem; color: var(--primary); line-height: 0; vertical-align: -8px; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.testi-author h4 { font-size: 0.9rem; font-weight: 600; color: var(--secondary); }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }
.testi-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--secondary);
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: 100px 0;
  background: var(--bg-light);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.faq-img img {
  border-radius: var(--radius-lg);
  height: 480px;
  box-shadow: var(--shadow);
}

.faq-list { margin-top: 30px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: 0 4px 20px rgba(232,93,4,0.12); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--secondary);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s;
  font-size: 0.9rem;
}
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.nl-deco-1, .nl-deco-2 {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.nl-deco-1 { width: 400px; height: 400px; top: -150px; left: -100px; }
.nl-deco-2 { width: 300px; height: 300px; bottom: -100px; right: -50px; }
.newsletter-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.nl-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.nl-icon i { font-size: 1.5rem; color: var(--white); }
.newsletter h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.newsletter p { color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.nl-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  background: var(--white);
  padding: 5px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.nl-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-size: 0.9rem;
  background: transparent;
  color: var(--text);
}
.nl-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nl-note i { font-size: 0.7rem; }

/* =============================================
   CONTACT
   ============================================= */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.info-card:last-of-type { border-bottom: none; }
.info-card > i {
  width: 44px; height: 44px;
  background: rgba(232,93,4,0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.info-card h4 { font-size: 0.88rem; font-weight: 600; color: var(--secondary); margin-bottom: 4px; }
.info-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }
.contact-info .social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.contact-info .social-links a, .footer .social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.contact-info .social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.contact-form {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--bg-dark); }
.footer-top { padding: 70px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 16px 0 24px;
}
.footer .social-links { display: flex; gap: 10px; }
.footer .social-links a {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}
.footer .social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--primary);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .fa-heart { color: var(--primary); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 25px rgba(232,93,4,0.4);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-3px); }

/* =============================================
   TOAST
   ============================================= */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #0a3d1f;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  opacity: 0;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast i { color: #4ade80; font-size: 1.1rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .steps-grid { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-img { display: none; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-img { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .dest-large { grid-column: 1 / 3; height: 260px; }
  .dest-card:not(.dest-large) { height: 180px; }
  .testi-card { min-width: calc(50% - 14px); }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
    transition: right 0.35s cubic-bezier(.4,0,.2,1);
    z-index: 999;
    gap: 4px;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1.05rem; padding: 10px 0; width: 100%; }
  .hamburger { display: flex; }
  .nav-actions .btn { display: none; }

  .hero { height: 92vh; min-height: 560px; }
  .search-bar { border-radius: 16px; flex-direction: column; }
  .search-group { border-right: none; border-bottom: 1px solid var(--border); }
  .btn-search { border-radius: 0; justify-content: center; }

  .tours-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .testi-card { min-width: 85%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-large { grid-column: auto; height: 220px; }
  .dest-card:not(.dest-large) { height: 160px; }
}
