/* ============================================
   KASHMIR HORIZONS — STYLES
   ============================================ */

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

:root {
  /* Refined palette — deeper, more refined green + warm gold */
  --primary: #1a5e42;
  --primary-dark: #0d3b29;
  --primary-light: #2d8c62;
  --accent: #d4a044;
  --accent-dark: #b8852e;
  --text: #18201c;
  --text-muted: #556b5f;
  --bg: #f7f9f7;
  --bg-warm: #faf9f7;
  --white: #ffffff;
  --dark: #0d2419;
  --border: #e4ece7;
  --card-shadow: 0 2px 16px rgba(0,0,0,0.07);
  --hover-shadow: 0 14px 44px rgba(0,0,0,0.13);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.loader-bar {
  width: 240px; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  border-radius: 2px;
  animation: loaderFill 0.4s ease-in-out forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ============ TOPBAR INFO BAR ============ */
.topbar-info {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: 6px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  position: relative; z-index: 1001;
}
.topbar-info span { display: flex; align-items: center; gap: 6px; }
.topbar-info i { color: var(--accent); }

/* ============ NAVBAR ============ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 20px 0;
}
.has-topbar #navbar { top: 0; }
#navbar.scrolled {
  background: rgba(15, 31, 23, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
}
.nav-logo i { color: var(--accent); font-size: 1.6rem; }
.nav-logo-img {
  height: 64px; max-height: 64px; width: auto; max-width: 220px;
  object-fit: contain; border-radius: 6px;
  transition: height 0.3s ease;
}
#navbar.scrolled .nav-logo-img { height: 48px; max-height: 48px; }
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--dark) !important;
  padding: 10px 24px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); 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: 700px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,30,18,0.75) 0%, rgba(10,30,18,0.45) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  padding-top: 80px;
}
.hero-tagline {
  font-size: 0.9rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), #f5d08a, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  max-width: 560px; line-height: 1.7; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
/* Hero Stats — Card Style */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 760px;
}
.stat-box {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.stat-box:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.stat-box-num {
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
  margin-bottom: 6px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1;
}
.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--accent);
}
.stat-star {
  font-size: 1.8rem; color: var(--accent); line-height: 1;
}
#ratingVal {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1;
}
.stat-box p { font-size: 0.78rem; color: rgba(255,255,255,0.75); font-weight: 500; letter-spacing: 0.5px; }
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  color: rgba(255,255,255,0.8); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-arrow {
  width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg); animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}
.hero-slide-dots {
  position: absolute; bottom: 40px; right: 40px; z-index: 2;
  display: flex; gap: 8px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active { background: var(--accent); transform: scale(1.3); }

/* Animations */
.animate-up { opacity: 0; transform: translateY(30px); }
.animate-up.visible {
  animation: fadeUp 0.7s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  border: none; cursor: pointer; transition: all var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 160, 69, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============ SECTION HEADERS ============ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 12px;
  display: block;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--text); margin-bottom: 16px;
}
.section-header.light h2, .section-header.light .section-label { color: var(--white); }
.section-header.light .section-label { color: var(--accent); }
.section-desc { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.section-header.light .section-desc { color: rgba(255,255,255,0.82); }

/* ============ QUICK SEARCH ============ */
.quick-search {
  position: relative; z-index: 10;
  margin-top: -60px;
  padding: 0 24px 0;
}
.search-card {
  max-width: 1100px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.search-field { flex: 1; min-width: 160px; }
.search-field label {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px;
}
.search-field label i { color: var(--primary); }
.search-field input, .search-field select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #e0e8e3; border-radius: var(--radius-sm);
  font-size: 0.9rem; color: var(--text);
  background: #f5f9f6; outline: none;
  transition: border-color var(--transition);
  font-family: 'Inter', sans-serif;
}
.search-field input:focus, .search-field select:focus {
  border-color: var(--primary);
}
.search-btn { flex-shrink: 0; white-space: nowrap; }

/* ============ WHY US ============ */
.why-us { padding: 80px 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--hover-shadow); }
.why-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem; color: var(--white);
}
.why-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ============ PACKAGES ============ */
.packages {
  padding: 100px 0;
  background: linear-gradient(180deg, #f0f7f2 0%, var(--bg) 100%);
}
.filter-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px; border-radius: 100px;
  background: var(--white); border: 1.5px solid #d4e8dc;
  font-size: 0.88rem; font-weight: 500; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.package-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; display: flex; flex-direction: column;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--hover-shadow); }
.package-card.hidden { display: none; }

/* Badge */
.pkg-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: var(--accent); color: var(--dark);
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
}

/* Image */
.pkg-img {
  height: 210px; background-size: cover; background-position: center;
  position: relative; flex-shrink: 0;
}
.pkg-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
}
.pkg-duration {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  color: #fff; padding: 4px 12px; border-radius: 100px;
  font-size: 0.76rem; font-weight: 500;
}

/* Body */
.pkg-body { padding: 20px 22px 0; flex: 1; display: flex; flex-direction: column; }
.pkg-location {
  font-size: 0.78rem; color: var(--primary); font-weight: 600;
  margin-bottom: 6px; display: flex; align-items: center; gap: 4px;
}
.pkg-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3;
}
.pkg-body > p {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Inclusion pills */
.pkg-features { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.pkg-inc-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: #f0f7f2; color: var(--primary);
  padding: 5px 11px; border-radius: 100px;
  font-size: 0.76rem; font-weight: 500; border: 1px solid #d4ece0;
}
.pkg-inc-pill i { font-size: 0.72rem; }

/* Footer */
.pkg-footer {
  margin-top: auto;
  padding: 14px 22px 18px;
  border-top: 1px solid #eaf2ee;
}

/* Discount row */
.pkg-discount-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 4px;
}
.price-strike {
  font-size: 0.88rem; color: #aaa;
  text-decoration: line-through;
}
.discount-badge {
  background: #ff6b35; color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 2px 9px; border-radius: 100px; letter-spacing: 0.3px;
}

/* Price */
.pkg-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 14px; }
.price-from { font-size: 0.75rem; color: var(--text-muted); }
.price-amount { font-size: 1.45rem; font-weight: 800; color: var(--primary); font-family: 'Playfair Display', serif; }
.price-per { font-size: 0.75rem; color: var(--text-muted); }

/* Action buttons */
.pkg-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pkg-btn-details, .pkg-btn-book {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 0; border-radius: 10px;
  font-size: 0.83rem; font-weight: 600; cursor: pointer;
  transition: all .2s; text-decoration: none; border: none;
  font-family: inherit; white-space: nowrap;
}
.pkg-btn-details {
  background: #fff; color: var(--primary);
  border: 2px solid var(--primary);
}
.pkg-btn-details:hover { background: var(--primary); color: #fff; }
.pkg-btn-book {
  background: var(--primary); color: #fff;
  border: 2px solid var(--primary);
}
.pkg-btn-book:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

/* ============ FLEET SECTION ============ */
.fleet-section { padding: 80px 0; background: var(--bg); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.fleet-card:hover { transform: translateY(-5px); box-shadow: var(--hover-shadow); }
.fleet-card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--accent); color: #1e2a22;
  padding: 3px 10px; border-radius: 100px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
}
.fleet-card-img {
  height: 180px;
  background: linear-gradient(135deg, #e8f0eb, #c8ddd0);
  background-size: cover; background-position: center;
  position: relative;
}
.fleet-card-ac {
  position: absolute; bottom: 10px; right: 10px;
  padding: 3px 9px; border-radius: 100px; font-size: .7rem; font-weight: 700;
}
.fleet-card-ac.ac   { background: #d1fae5; color: #065f46; }
.fleet-card-ac.nonac { background: #fef3c7; color: #92400e; }
.fleet-card-body { padding: 16px; }
.fleet-card-type { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.fleet-card-name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.fleet-card-desc { font-size: .82rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.5; }
.fleet-card-meta { display: flex; align-items: center; gap: 12px; font-size: .8rem; color: var(--text-muted); margin-bottom: 12px; }
.fleet-card-meta span { display: flex; align-items: center; gap: 4px; }
.fleet-card-meta i { color: var(--primary); }
.fleet-card-feats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.fleet-feat-pill { background: #f0faf5; color: var(--primary); padding: 3px 9px; border-radius: 100px; font-size: .72rem; font-weight: 600; }
.fleet-card-footer { display: flex; align-items: center; justify-content: space-between; }
.fleet-price { font-size: .82rem; color: var(--text-muted); font-weight: 600; }
.fleet-book-btn {
  padding: 7px 16px; background: var(--primary); color: #fff;
  border: none; border-radius: 100px; font-size: .8rem; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: background var(--transition);
}
.fleet-book-btn:hover { background: var(--primary-dark); }

/* ============ DESTINATIONS ============ */
.destinations {
  padding: 100px 0;
  background: var(--dark);
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.dest-card {
  border-radius: var(--radius); overflow: hidden;
  background-size: cover; background-position: center;
  position: relative; cursor: pointer;
  min-height: 240px;
  transition: transform var(--transition);
}
.dest-card:hover { transform: scale(1.02); }
.dest-card.big {
  grid-column: span 2; grid-row: span 2; min-height: 500px;
}
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  opacity: 0.85; transition: opacity var(--transition);
}
.dest-card:hover .dest-overlay { opacity: 1; }
.dest-overlay h3 {
  color: var(--white); font-family: 'Playfair Display', serif;
  font-size: 1.2rem; margin-bottom: 6px;
}
.dest-overlay p { color: rgba(255,255,255,0.8); font-size: 0.85rem; line-height: 1.5; }
.dest-tag {
  display: inline-block; margin-top: 10px;
  background: var(--accent); color: var(--dark);
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700;
}

/* ============ GALLERY ============ */
.gallery { padding: 100px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  background-size: cover; background-position: center;
  border-radius: var(--radius-sm); cursor: pointer; overflow: hidden;
  position: relative;
  transition: transform var(--transition);
}
.gallery-item::after {
  content: '\f002';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white);
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.gallery-item:hover { transform: scale(1.03); z-index: 2; }
.gallery-item:hover::after { background: rgba(0,0,0,0.35); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
}
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex; gap: 24px;
  transition: transform 0.5s ease;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 32px;
  color: var(--white);
}
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.85);
  margin-bottom: 24px; font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--white);
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.95rem; }
.reviewer span { font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 40px;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ============ ABOUT ============ */
.about { padding: 100px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  height: 500px; border-radius: var(--radius);
  background-size: cover; background-position: center;
  box-shadow: var(--hover-shadow);
}
.about-img-secondary {
  position: absolute; bottom: -40px; right: -40px;
  width: 220px; height: 180px;
  border-radius: var(--radius);
  background-size: cover; background-position: center;
  border: 6px solid var(--white);
  box-shadow: var(--card-shadow);
}
.about-badge {
  position: absolute; top: 40px; left: -20px;
  background: var(--accent); color: var(--dark);
  padding: 16px 20px; border-radius: var(--radius);
  text-align: center; box-shadow: 0 8px 24px rgba(232,160,69,0.4);
}
.badge-num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; line-height: 1;
}
.badge-text { font-size: 0.75rem; font-weight: 600; white-space: nowrap; }
.about-content .section-label { display: block; margin-bottom: 12px; }
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; margin-bottom: 20px;
}
.about-content p {
  color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem;
}
.about-highlights { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.highlight {
  display: flex; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 500;
}
.highlight i { color: var(--primary); font-size: 1.1rem; }

/* ============ CONTACT ============ */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-info { color: var(--white); }
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; margin-bottom: 32px;
}
.contact-item {
  display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; margin-bottom: 4px; }
.contact-item p { font-size: 0.9rem; color: rgba(255,255,255,0.82); line-height: 1.6; }
.social-links { display: flex; gap: 12px; margin-top: 36px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none; font-size: 0.9rem;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--accent); border-color: var(--accent); color: var(--dark);
  transform: translateY(-2px);
}
.contact-form {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.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:not(.form-row > .form-group) { margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid #e0e8e3;
  border-radius: var(--radius-sm); font-size: 0.9rem;
  color: var(--text); background: #f8faf9; outline: none;
  transition: border-color var(--transition);
  font-family: 'Inter', sans-serif;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none; text-align: center; padding: 20px;
  color: var(--primary); margin-top: 16px;
  background: #f0f9f4; border-radius: var(--radius-sm);
}
.form-success i { font-size: 2rem; margin-bottom: 8px; }
.form-success p { font-weight: 600; }
.form-success.show { display: block; }

/* ============ FOOTER ============ */
.footer { background: #071310; color: rgba(255,255,255,0.82); }
.footer-top { padding: 80px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.footer-logo i { color: var(--accent); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; margin-bottom: 0; }
.footer-col h4 {
  color: var(--white); font-size: 0.95rem; font-weight: 600;
  margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px; background: var(--accent);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.88rem; transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 0.82rem; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--accent); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white);
  text-decoration: none; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all var(--transition);
  animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.8); }
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lightbox-close { top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; font-size: 1rem; }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; font-size: 1rem; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent); color: var(--dark); border-color: var(--accent);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card.big { grid-column: span 2; min-height: 360px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 20px; }
  .nav-links.open {
    display: flex; position: fixed; inset: 0;
    background: rgba(15,31,23,0.98); backdrop-filter: blur(12px);
    align-items: center; justify-content: center;
    z-index: 999;
  }
  .nav-links a { font-size: 1.3rem; }
  .hamburger { display: flex; z-index: 1000; }
  .packages-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card.big { grid-column: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .testimonial-card { flex: 0 0 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .search-card { flex-direction: column; }
  .search-field { width: 100%; }
  .hero-stats { gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ============ PACKAGE DETAIL MODAL ============ */
.pkg-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 20px; overflow-y: auto;
}
.pkg-modal-overlay.open { display: flex; }
.pkg-modal {
  background: var(--white); border-radius: 20px;
  width: 100%; max-width: 900px;
  position: relative; overflow: hidden;
  margin: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.pkg-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
  border: none; cursor: pointer; color: var(--white);
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.pkg-modal-close:hover { background: var(--danger); }

/* Image Slider */
.pkg-img-slider {
  position: relative; height: 380px; overflow: hidden;
  background: #111;
}
.pkg-img-slides { display: flex; height: 100%; transition: transform 0.5s ease; }
.pkg-img-slide {
  flex: 0 0 100%; height: 100%;
  background-size: cover; background-position: center;
}
.pkg-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(4px);
  border: none; cursor: pointer; color: var(--white); font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition); z-index: 5;
}
.pkg-slider-btn:hover { background: rgba(0,0,0,0.7); }
.pkg-slider-prev { left: 14px; }
.pkg-slider-next { right: 14px; }
.pkg-slider-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.pkg-slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none; cursor: pointer;
  transition: all var(--transition);
}
.pkg-slider-dot.active { background: var(--white); transform: scale(1.3); }
.pkg-img-count {
  position: absolute; top: 14px; left: 14px; z-index: 5;
  background: rgba(0,0,0,0.5); color: var(--white);
  padding: 4px 12px; border-radius: 100px; font-size: 0.78rem;
}

/* Modal Body */
.pkg-modal-body { padding: 32px 36px; }
.pkg-modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; margin-bottom: 8px; flex-wrap: wrap;
}
.pkg-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--text); line-height: 1.2;
}
.pkg-modal-price-box { text-align: right; flex-shrink: 0; }
.pkg-modal-price { font-size: 2rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; }
.pkg-modal-price-label { font-size: 0.8rem; color: var(--text-muted); }
.pkg-modal-meta {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px solid #e8f0eb;
}
.pkg-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.88rem; color: var(--text-muted);
}
.pkg-meta-item i { color: var(--primary); }

/* Tabs */
.pkg-tabs { display: flex; gap: 4px; border-bottom: 2px solid #e8f0eb; margin-bottom: 24px; }
.pkg-tab {
  padding: 10px 20px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none; background: none; color: var(--text-muted);
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.pkg-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.pkg-tab-content { display: none; }
.pkg-tab-content.active { display: block; }

/* Tab content styles */
.pkg-highlights-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.pkg-highlight-item {
  display: flex; align-items: center; gap: 10px;
  background: #f0f9f4; border-radius: 8px; padding: 10px 14px;
  font-size: 0.88rem; font-weight: 500;
}
.pkg-highlight-item i { color: var(--primary); font-size: 0.85rem; }

.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.inc-list, .exc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.inc-list li, .exc-list li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; line-height: 1.5;
}
.inc-list li i { color: var(--success); margin-top: 2px; flex-shrink: 0; }
.exc-list li i { color: var(--danger); margin-top: 2px; flex-shrink: 0; }
.inc-exc-head { font-weight: 700; font-size: 0.95rem; margin-bottom: 12px; }
.inc-exc-head i { margin-right: 6px; }

/* Itinerary */
.itin-day {
  border: 1px solid #e8f0eb; border-radius: 12px;
  margin-bottom: 10px; overflow: hidden;
}
.itin-day-hdr {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  cursor: pointer; transition: background var(--transition);
  user-select: none;
}
.itin-day-hdr:hover { background: #f7fbf8; }
.itin-day-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.itin-day-title { font-weight: 600; font-size: 0.95rem; flex: 1; }
.itin-day-meta { font-size: 0.78rem; color: var(--text-muted); }
.itin-day-body { padding: 0 18px 16px 64px; display: none; }
.itin-day-body.open { display: block; }
.itin-day-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.itin-activities { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.itin-act {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text);
}
.itin-act::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary-light); flex-shrink: 0;
}
.itin-meals { display: flex; gap: 10px; flex-wrap: wrap; }
.meal-pill {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.78rem; padding: 4px 10px; border-radius: 100px; font-weight: 500;
}
.meal-yes { background: #e6f7ef; color: var(--success); }
.meal-no  { background: #f5f5f5; color: #aaa; text-decoration: line-through; }

/* Sticky Book CTA */
.pkg-modal-footer {
  position: sticky; bottom: 0; background: var(--white);
  border-top: 1px solid #e8f0eb; padding: 16px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.pkg-footer-price strong { font-size: 1.3rem; color: var(--primary); font-family: 'Playfair Display', serif; }
.pkg-footer-price small { color: var(--text-muted); font-size: 0.8rem; display: block; }

/* Clickable package card */
.package-card { cursor: pointer; }

@media (max-width: 768px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .pkg-modal-body { padding: 20px; }
  .pkg-modal-footer { padding: 14px 20px; }
  .pkg-img-slider { height: 240px; }
  .inc-exc-grid { grid-template-columns: 1fr; }
  .pkg-highlights-grid { grid-template-columns: 1fr; }
  .pkg-modal-header { flex-direction: column; }
  .pkg-modal-price-box { text-align: left; }
}

/* ============================================
   BOOKING MODAL
   ============================================ */
.bk-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(10,20,15,.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.bk-overlay.open { opacity: 1; visibility: visible; }

.bk-modal {
  background: var(--white); border-radius: 20px;
  width: 100%; max-width: 560px; max-height: 92vh;
  overflow-y: auto; padding: 32px 36px;
  position: relative;
  transform: translateY(20px); transition: transform .28s;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.bk-overlay.open .bk-modal { transform: translateY(0); }

.bk-close {
  position: absolute; top: 16px; right: 18px;
  background: #f0f4f1; border: none; width: 34px; height: 34px;
  border-radius: 50%; cursor: pointer; font-size: .9rem;
  color: var(--text); display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.bk-close:hover { background: #dce8e0; }

.bk-header { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.bk-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; flex-shrink: 0;
}
.bk-header h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.25; }
.bk-sub { font-size: .82rem; color: var(--text-muted); margin-top: 2px; }

/* Cost summary box */
.bk-cost-box {
  background: linear-gradient(135deg, #e8f5ee, #f0f9f4);
  border: 1px solid #c5e6d4; border-radius: 14px;
  padding: 18px 20px; margin-bottom: 24px;
}
.bk-cost-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .9rem; color: var(--text); margin-bottom: 10px;
}
.bk-cost-row:last-child { margin-bottom: 0; }
.bk-cost-divider { border: none; border-top: 1px dashed #aad4bc; margin: 10px 0; }
.bk-total-row { font-weight: 700; font-size: 1rem; }
.bk-total-val { font-size: 1.25rem; color: var(--primary); font-family: 'Playfair Display', serif; }

/* Persons counter */
.bk-counter {
  display: flex; align-items: center; gap: 0;
  background: #fff; border: 1.5px solid #c5e6d4; border-radius: 100px;
  overflow: hidden;
}
.bk-counter button {
  background: none; border: none; padding: 6px 14px;
  cursor: pointer; font-size: .85rem; color: var(--primary);
  transition: background .15s; line-height: 1;
}
.bk-counter button:hover { background: #e8f5ee; }
.bk-counter button:disabled { color: #bbb; cursor: default; }
#bkPersonsNum { min-width: 28px; text-align: center; font-weight: 700; font-size: .95rem; }

.bk-group-note { font-size: .78rem; color: var(--text-muted); margin-top: 8px; }

/* Form */
.bk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.bk-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.bk-field:last-child { margin-bottom: 0; }
.bk-field label { font-size: .82rem; font-weight: 600; color: var(--text); }
.bk-field input,
.bk-field textarea {
  padding: 10px 14px; border: 1.5px solid #dde8e2;
  border-radius: 10px; font-size: .9rem; font-family: inherit;
  outline: none; transition: border-color .2s;
  background: #fafcfb;
}
.bk-field input:focus,
.bk-field textarea:focus { border-color: var(--primary); background: #fff; }

.bk-submit {
  width: 100%; padding: 14px; font-size: 1rem; margin-top: 6px;
  border-radius: 12px; letter-spacing: .3px;
}

.bk-success {
  display: flex; align-items: center; gap: 10px;
  background: #e8f5ee; border: 1px solid #a3d9b6;
  border-radius: 10px; padding: 14px 16px;
  color: var(--primary); font-size: .9rem; margin-top: 14px;
}
.bk-success i { font-size: 1.2rem; }

@media (max-width: 540px) {
  .bk-modal { padding: 24px 20px; }
  .bk-row { grid-template-columns: 1fr; }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us { padding: 90px 0; background: #f7faf8; }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 1px solid #eaf2ee;
  transition: transform .3s, box-shadow .3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(26,107,74,.12); }
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #e8f5ee, #d0edde);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--primary);
  margin: 0 auto 20px;
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================
   TOUR STATISTICS
   ============================================ */
.tour-stats {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a5c3e 60%, #0e3d28 100%);
  position: relative; overflow: hidden;
}
.tour-stats::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1602642977157-9a04f1590f38?w=1400&q=60') center/cover no-repeat;
  opacity: .08;
}
.tour-stats .container { position: relative; }
.ts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.ts-card { text-align: center; }
.ts-circle {
  width: 150px; height: 150px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  border: 4px solid;
}
.ts-c1 { background: rgba(255,100,60,.12); border-color: rgba(255,100,60,.6); }
.ts-c2 { background: rgba(255,180,60,.12); border-color: rgba(255,180,60,.6); }
.ts-c3 { background: rgba(60,200,180,.12); border-color: rgba(60,200,180,.6); }
.ts-c4 { background: rgba(100,200,100,.12); border-color: rgba(100,200,100,.6); }
.ts-c1 .ts-num { color: #ff9a7a; }
.ts-c2 .ts-num { color: #ffd47a; }
.ts-c3 .ts-num { color: #7ae8dc; }
.ts-c4 .ts-num { color: #7adc7a; }
.ts-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; line-height: 1;
}
.ts-card h4 { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }

/* ============================================
   REVIEW PLATFORM BADGES
   ============================================ */
.review-platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.rp-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  backdrop-filter: blur(8px);
}
.rp-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; flex-shrink: 0;
}
.rp-google { background: #fff; color: #4285F4; }
.rp-ta     { background: #00aa6c; color: #fff; font-size: .75rem; }
.rp-fb     { background: #1877F2; color: #fff; }
.rp-tp     { background: #00b67a; color: #fff; }
.rp-stars  { color: #f4c430; font-size: .85rem; letter-spacing: 2px; margin-bottom: 2px; }
.rp-name   { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.9); }
.rp-score  { font-size: .76rem; color: rgba(255,255,255,.55); }

/* ============================================
   PACKAGE CARD DETAILS BUTTON
   ============================================ */
.btn-outline-primary {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  transition: background .2s, color .2s;
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 992px) {
  .why-us-grid  { grid-template-columns: repeat(2, 1fr); }
  .ts-grid      { grid-template-columns: repeat(2, 1fr); }
  .review-platforms { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .why-us-grid  { grid-template-columns: 1fr; }
  .ts-grid      { grid-template-columns: repeat(2, 1fr); }
  .ts-circle    { width: 120px; height: 120px; }
  .ts-num       { font-size: 1.7rem; }
  .review-platforms { grid-template-columns: 1fr 1fr; }
  .rp-card      { padding: 12px; gap: 10px; }
}

/* ============================================
   SITE POPUP
   ============================================ */
.site-popup-overlay {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(10,20,15,.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.site-popup-box {
  background: #fff; border-radius: 20px;
  max-width: 440px; width: 100%; padding: 40px 36px;
  text-align: center; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  animation: popupIn .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popupIn { from { transform: scale(.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.site-popup-close {
  position: absolute; top: 14px; right: 14px;
  background: #f0f4f1; border: none; width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; font-size: .85rem;
  display: flex; align-items: center; justify-content: center; color: var(--text);
}
.site-popup-close:hover { background: #dce8e0; }
.site-popup-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.site-popup-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.site-popup-box p  { color: var(--text-muted); font-size: .92rem; line-height: 1.65; }

/* ============ TOPBAR INFO BAR (shared) ============ */
.ti-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.topbar-info a { color: rgba(255,255,255,.85); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.topbar-info a:hover { color: var(--accent); }
.topbar-info span { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.85); }

/* ============ WHATSAPP FLOAT BUTTON (global) ============ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 2500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,.45);
  text-decoration: none; transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); }
.wa-float-tooltip {
  position: absolute; right: 68px; background: #fff;
  color: #1a1a1a; font-size: .78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 6px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.12); pointer-events: none;
  opacity: 0; transform: translateX(6px); transition: all .2s;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateX(0); }

/* ============ LIVE CHAT BUBBLE (global) ============ */
.chat-bubble {
  position: fixed; bottom: 96px; right: 28px; z-index: 2500;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: 0 6px 20px rgba(0,0,0,.25);
  cursor: pointer; border: none; transition: transform .25s;
}
.chat-bubble:hover { transform: scale(1.08); }
.chat-bubble .chat-unread {
  position: absolute; top: -4px; right: -4px;
  background: #e53e3e; color: #fff; font-size: .6rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 9px; padding: 0 4px;
  display: flex; align-items: center; justify-content: center;
}
.chat-window {
  position: fixed; bottom: 160px; right: 24px; z-index: 2500;
  width: 340px; max-height: 480px;
  background: #fff; border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  display: none; flex-direction: column; overflow: hidden;
  animation: chatSlideUp .25s ease;
}
.chat-window.open { display: flex; }
@keyframes chatSlideUp { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform: translateY(0); } }

.cw-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
}
.cw-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--accent); flex-shrink: 0;
}
.cw-header-info h4 { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.cw-header-info span { font-size: .72rem; color: rgba(255,255,255,.7); }
.cw-online { color: #69f0ae; }
.cw-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; font-size: 1rem; }

.cw-start { padding: 20px 16px; flex: 1; }
.cw-start p { font-size: .84rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.cw-field { margin-bottom: 10px; }
.cw-field input {
  width: 100%; padding: 9px 12px; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: inherit; font-size: .84rem; outline: none;
  transition: border-color .2s;
}
.cw-field input:focus { border-color: var(--primary); }
.cw-start-btn {
  width: 100%; padding: 11px; background: var(--primary); color: #fff;
  border: none; border-radius: 10px; font-family: inherit; font-size: .88rem;
  font-weight: 700; cursor: pointer; margin-top: 4px; transition: background .2s;
}
.cw-start-btn:hover { background: var(--primary-dark); }

.cw-messages { flex: 1; overflow-y: auto; padding: 14px; display: none; flex-direction: column; gap: 8px; }
.cw-messages.active { display: flex; }
.cw-msg { max-width: 82%; padding: 8px 12px; border-radius: 12px; font-size: .82rem; line-height: 1.5; }
.cw-msg.visitor { background: var(--primary); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.cw-msg.agent { background: #f3f6f4; color: var(--text); align-self: flex-start; border-bottom-left-radius: 4px; }
.cw-msg-time { font-size: .65rem; opacity: .6; display: block; margin-top: 3px; text-align: right; }
.cw-msg.agent .cw-msg-time { text-align: left; }

.cw-footer { padding: 10px 12px; border-top: 1px solid var(--border); display: none; gap: 8px; align-items: center; }
.cw-footer.active { display: flex; }
.cw-input {
  flex: 1; padding: 8px 12px; border: 1.5px solid var(--border);
  border-radius: 20px; font-family: inherit; font-size: .82rem; outline: none;
  transition: border-color .2s;
}
.cw-input:focus { border-color: var(--primary); }
.cw-send {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: background .2s;
}
.cw-send:hover { background: var(--primary-dark); }

@media(max-width: 480px) {
  .chat-window { width: calc(100vw - 32px); right: 16px; bottom: 150px; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
  .chat-bubble { bottom: 84px; right: 20px; width: 46px; height: 46px; }
}

/* ============ CHAT PULSE ANIMATION ============ */
@keyframes cwPulse {
  0%   { box-shadow: 0 0 0 0 rgba(13,59,41,.6); }
  70%  { box-shadow: 0 0 0 12px rgba(13,59,41,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,59,41,0); }
}
.chat-bubble.cw-pulse { animation: cwPulse 1.2s ease-out 3; }

/* ============ SEO CONTENT SECTION ============ */
.seo-content-section {
  background: #f0f7f3;
  padding: 64px 0 56px;
  border-top: 1px solid #ddeee5;
}
.seo-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}
.seo-content-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c8e6d4;
}
.seo-content-block p {
  font-size: .93rem;
  color: #3a4f42;
  line-height: 1.8;
  margin-bottom: 12px;
}
.seo-package-list,
.seo-dest-list,
.seo-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.seo-package-list li,
.seo-dest-list li,
.seo-why-list li {
  font-size: .9rem;
  color: #3a4f42;
  line-height: 1.7;
  padding: 7px 0 7px 20px;
  border-bottom: 1px solid #ddeee5;
  position: relative;
}
.seo-package-list li::before,
.seo-dest-list li::before,
.seo-why-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.seo-package-list li:last-child,
.seo-dest-list li:last-child,
.seo-why-list li:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .seo-content-grid { grid-template-columns: 1fr; gap: 32px; }
  .seo-content-section { padding: 40px 0; }
}

/* ============ FONT-DISPLAY SWAP (Font Awesome override) ============ */
/* Ensures Font Awesome woff2 files don't block FCP */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-display: swap;
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-display: swap;
}
