@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --dark: #0d3d2a;
  --dark2: #0f4a33;
  --accent: #1aab7a;
  --accent2: #16c986;
  --accent-light: #e6f5ee;
  --accent-pale: #f0faf5;
  --text: #1c2b22;
  --text-muted: #5a7066;
  --border: #d8eae1;
  --bg: #f6faf8;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(13,61,42,0.10);
  --shadow-sm: 0 2px 12px rgba(13,61,42,0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 64px;
  box-shadow: 0 2px 16px rgba(13,61,42,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .logo-icon { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.nav-logo .logo-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-logo span { font-weight: 700; font-size: 14px; color: var(--text); line-height: 1.2; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-call {
  display: none;
  align-items: center; gap: 6px;
  background: var(--accent-light); color: var(--accent);
  padding: 8px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  border: none; cursor: pointer;
}
.btn-plan {
  background: var(--dark); color: var(--white);
  padding: 9px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: background .2s; border: none; cursor: pointer; white-space: nowrap;
}
.btn-plan:hover { background: var(--accent); }

/* ── PAGE HERO ── */
.page-hero {
  height: 280px;
  background: linear-gradient(to bottom, rgba(13,61,42,0.6) 0%, rgba(13,61,42,0.8) 100%),
              url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80') center/cover no-repeat;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--white); padding: 0 24px; margin-top: 64px;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 4vw, 46px); margin-bottom: 12px; }
.page-hero p { font-size: 14px; opacity: .88; max-width: 560px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: var(--white);
  padding: 12px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 12px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-accent:hover { background: #13956b; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 11px 26px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  border: 2px solid rgba(255,255,255,.6); cursor: pointer; transition: all .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white);
  padding: 12px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: background .2s;
}
.btn-green:hover { background: #1ebe59; }

/* ── STATS BAR ── */
.stats-bar {
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 16px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 16px 32px; margin-top: 36px; width: 100%; max-width: 680px;
}
.stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,.25); padding: 0 12px; }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 26px; font-weight: 800; }
.stat-lbl { font-size: 11px; opacity: .82; }

/* ── SECTION ── */
section { padding: 64px 5%; }
.section-center { text-align: center; }
.section-label {
  display: inline-block; color: var(--accent);
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.section-title { font-size: clamp(20px, 3vw, 34px); font-weight: 700; color: var(--text); margin-bottom: 12px; }
.section-sub { color: var(--text-muted); font-size: 14px; max-width: 560px; margin: 0 auto 36px; }
.section-divider { width: 44px; height: 3px; background: var(--accent); margin: 0 auto 36px; border-radius: 2px; }

/* ── STATE CARDS (destination grid) ── */
.state-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.state-card {
  position: relative; border-radius: 14px; overflow: hidden;
  height: 300px; cursor: pointer; text-decoration: none; display: block;
  transition: transform .25s, box-shadow .25s; flex-shrink: 0;
}
.state-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.state-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.state-card:hover img { transform: scale(1.06); }
.state-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,61,42,0.88) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
}
.state-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 14px; color: var(--white); }
.state-tours {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(26,171,122,0.85); border-radius: 50px;
  padding: 3px 10px; font-size: 11px; font-weight: 600; margin-bottom: 7px;
}
.state-info h3 { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.state-info p { font-size: 12px; opacity: .85; line-height: 1.4; }
.state-arrow {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 12px;
  border: 1px solid rgba(255,255,255,.3);
  opacity: 0; transition: opacity .2s;
}
.state-card:hover .state-arrow { opacity: 1; }

/* ── MOBILE SLIDER (shared) ── */
.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > * { scroll-snap-align: start; flex-shrink: 0; }

/* Dots indicator */
.slider-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.slider-dot.active { background: var(--accent); transform: scale(1.2); }

/* ── PACKAGE CARDS ── */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pkg-img { position: relative; height: 190px; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; }
.pkg-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: var(--white);
  padding: 3px 11px; border-radius: 50px; font-size: 11px; font-weight: 600;
}
.pkg-badge.honeymoon { background: #e91e8c; }
.pkg-badge.adventure { background: #f59e0b; }
.pkg-badge.spiritual { background: #7c3aed; }
.pkg-badge.luxury { background: #b45309; }
.pkg-rating {
  position: absolute; top: 12px; right: 12px;
  background: var(--white); padding: 3px 9px; border-radius: 50px;
  font-size: 12px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 3px; box-shadow: var(--shadow-sm);
}
.pkg-rating .star { color: #f59e0b; }
.pkg-body { padding: 16px; }
.pkg-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.pkg-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); margin-bottom: 10px; flex-wrap: wrap; }
.pkg-meta span { display: flex; align-items: center; gap: 4px; }
.pkg-features { margin-bottom: 12px; }
.pkg-features li { font-size: 12px; color: var(--text-muted); padding: 2px 0; display: flex; align-items: center; gap: 5px; }
.pkg-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.pkg-price { margin-bottom: 14px; }
.pkg-price .price-now { font-size: 20px; font-weight: 800; color: var(--accent); }
.pkg-price .price-was { font-size: 12px; color: var(--text-muted); text-decoration: line-through; margin-left: 5px; }
.pkg-price .price-pp { font-size: 11px; color: var(--text-muted); display: block; }
.btn-view {
  display: flex; width: 100%; background: var(--dark); color: var(--white);
  padding: 11px; border-radius: 8px; font-size: 13px; font-weight: 600;
  border: none; cursor: pointer; align-items: center; justify-content: center; gap: 6px; transition: background .2s;
}
.btn-view:hover { background: var(--accent); }

/* ── FILTER TABS ── */
.filter-bar {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 32px;
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  flex-wrap: nowrap;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-tab {
  padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 500; cursor: pointer;
  border: 1.5px solid var(--border); background: var(--white); color: var(--text);
  transition: all .2s; white-space: nowrap; flex-shrink: 0;
}
.filter-tab.active, .filter-tab:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.filter-bar select {
  margin-left: auto; padding: 8px 14px; border-radius: 8px;
  border: 1.5px solid var(--border); font-size: 13px;
  font-family: 'Poppins', sans-serif; cursor: pointer;
  background: var(--white); color: var(--text); flex-shrink: 0; white-space: nowrap;
}

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--white); border-radius: 14px; padding: 24px 20px;
  border: 1px solid var(--border); text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin: 0 auto 14px;
}
.feature-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.feature-card p { font-size: 13px; color: var(--text-muted); }

/* ── DARK SECTION ── */
.dark-section { background: var(--dark); color: var(--white); padding: 64px 5%; }
.dark-section .section-title { color: var(--white); }
.dark-section .section-sub { color: rgba(255,255,255,.75); }
.dark-section .section-divider { background: var(--accent2); }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a6646 100%);
  color: var(--white); padding: 72px 5%; text-align: center;
}
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3.5vw, 40px); margin-bottom: 14px; }
.cta-section p { opacity: .85; font-size: 14px; max-width: 520px; margin: 0 auto 28px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── FORM ── */
.form-card {
  background: var(--white); border-radius: 18px; padding: 36px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  max-width: 720px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text); }
.form-group label span { color: #e53e3e; }
.form-group input, .form-group select, .form-group textarea {
  padding: 10px 13px; border-radius: 8px; border: 1.5px solid var(--border);
  font-size: 13px; font-family: 'Poppins', sans-serif;
  color: var(--text); background: var(--white); transition: border-color .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 90px; }
.char-count { font-size: 11px; color: var(--text-muted); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--white); border-radius: 14px; padding: 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.testimonial-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.7; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 13px; }
.testi-loc { font-size: 11px; color: var(--text-muted); }
.stars { color: #f59e0b; font-size: 13px; margin-bottom: 8px; letter-spacing: 2px; }
.google-badge { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }

/* ── PERSON CARD ── */
.person-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); text-align: center;
}
.person-card img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin: 24px auto 14px; border: 3px solid var(--accent-light); }
.person-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.person-location { font-size: 12px; color: var(--text-muted); margin-bottom: 18px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.person-btns { display: flex; gap: 0; border-top: 1px solid var(--border); }
.person-btns a {
  flex: 1; padding: 16px 8px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 14px; font-weight: 600; transition: background .2s; white-space: nowrap;
}
.person-btns .call-btn { color: var(--accent); border-right: 1px solid var(--border); }
.person-btns .call-btn:hover { background: var(--accent-pale); }
.person-btns .whatsapp-btn { color: #25D366; }
.person-btns .whatsapp-btn:hover { background: #f0fff6; }

/* ── STORY / HOURS ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.story-text h2 { font-size: clamp(20px, 2.5vw, 30px); font-weight: 700; margin-bottom: 14px; }
.story-text p { font-size: 13px; color: var(--text-muted); margin-bottom: 13px; line-height: 1.8; }
.story-img { border-radius: 18px; overflow: hidden; }
.story-img img { width: 100%; height: 380px; object-fit: cover; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hours-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.hours-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.hours-text h5 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.hours-text p { font-size: 12px; color: var(--text-muted); }

/* ── EXPERIENCE CARDS ── */
.exp-card { display: grid; grid-template-columns: 1fr 1fr; align-items: center; background: var(--white); border-radius: 18px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 20px; }
.exp-card.reverse { direction: rtl; }
.exp-card.reverse > * { direction: ltr; }
.exp-img { height: 260px; }
.exp-img img { width: 100%; height: 100%; object-fit: cover; }
.exp-content { padding: 28px; }
.exp-tag { display: inline-block; background: var(--accent-light); color: var(--accent); font-size: 11px; font-weight: 600; padding: 3px 11px; border-radius: 50px; margin-bottom: 10px; }
.exp-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 9px; }
.exp-content p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.7; }
.exp-content ul li { font-size: 12px; color: var(--text-muted); padding: 3px 0; display: flex; align-items: center; gap: 5px; }
.exp-content ul li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ── COMMITMENT BOX ── */
.commitment-box {
  background: var(--accent-light); border-radius: 12px; padding: 18px 20px;
  border-left: 4px solid var(--accent); display: flex; align-items: center; gap: 12px; margin-top: 36px;
}
.commitment-box .icon { font-size: 20px; color: var(--accent); }
.commitment-box p { font-size: 13px; color: var(--text); line-height: 1.6; }
.commitment-box strong { color: var(--accent); }

/* ── FOUNDER CARDS ── */
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.founder-card { border-radius: 18px; overflow: hidden; background: var(--dark2); }
.founder-card img { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.founder-info { padding: 22px 24px; color: var(--white); }
.founder-info h4 { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.founder-location { font-size: 12px; color: rgba(255,255,255,.65); margin-bottom: 12px; display: flex; align-items: center; gap: 4px; }
.founder-info p { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.7; }

/* ── WHATSAPP SECTION ── */
.wa-section { background: var(--accent); padding: 56px 5%; text-align: center; color: var(--white); }
.wa-section .wa-icon { font-size: 44px; margin-bottom: 14px; }
.wa-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.wa-section p { opacity: .9; max-width: 460px; margin: 0 auto 24px; font-size: 14px; }
.wa-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); color: var(--white);
  padding: 12px 22px; border-radius: 50px; font-size: 14px; font-weight: 600;
  border: 2px solid rgba(255,255,255,.4); transition: background .2s;
}
.btn-wa:hover { background: rgba(255,255,255,.25); }

/* ── SOCIAL MEDIA (3 icons, no description) ── */
.social-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 600px; margin: 0 auto; }
.social-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 28px 16px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.social-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--white); }
.social-card h4 { font-size: 14px; font-weight: 700; }
.insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fb { background: #1877f2; }
.yt { background: #ff0000; }

/* ── OFFICE CARDS ── */
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.office-card {
  background: var(--white); border-radius: 14px; padding: 24px; border: 1px solid var(--border);
  text-align: center; transition: transform .2s, box-shadow .2s;
}
.office-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.office-card.primary { border: 2px solid var(--accent); position: relative; }
.office-card.primary::before {
  content: 'Main Office'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white); font-size: 11px; font-weight: 700;
  padding: 3px 12px; border-radius: 50px; white-space: nowrap;
}
.office-icon { width: 52px; height: 52px; background: var(--accent-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--accent); margin: 0 auto 14px; }
.office-card h4 { font-weight: 700; margin-bottom: 6px; font-size: 15px; }
.office-card .city { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.office-card .serving { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.5; }
.office-card .phone { font-size: 14px; color: var(--accent); font-weight: 700; }

/* ── TRENDING CARDS ── */
.trending-scroll { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trend-card { border-radius: 12px; overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: transform .2s; }
.trend-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trend-card img { width: 100%; height: 150px; object-fit: cover; }
.trend-body { padding: 13px 14px; }
.trend-body h4 { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.trend-meta { font-size: 11px; color: var(--text-muted); display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 7px; }
.trend-features li { font-size: 11px; color: var(--text-muted); padding: 2px 0; display: flex; align-items: center; gap: 4px; }
.trend-features li::before { content: '✓'; color: var(--accent); font-size: 10px; }
.trend-price { margin-top: 8px; }
.trend-price .now { font-size: 16px; font-weight: 800; color: var(--accent); }
.trend-price .was { font-size: 11px; color: var(--text-muted); text-decoration: line-through; margin-left: 4px; }
.btn-book { display: block; width: 100%; background: var(--dark); color: var(--white); border: none; border-radius: 7px; padding: 9px; font-size: 12px; font-weight: 600; cursor: pointer; margin-top: 9px; transition: background .2s; text-align: center; }
.btn-book:hover { background: var(--accent); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { background: var(--white); border-radius: 12px; padding: 22px 18px; border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 12px; }
.service-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.service-card p { font-size: 12px; color: var(--text-muted); }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,.85); padding: 56px 5% 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo .logo-icon { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.footer-logo .logo-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer-logo span { font-weight: 700; font-size: 13px; color: var(--white); line-height: 1.2; }
.footer-desc { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 8px; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.8); font-size: 14px; transition: background .2s; }
.social-btn:hover { background: var(--accent); color: var(--white); }
.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 18px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--accent2); }
.footer-newsletter p { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 12px; line-height: 1.6; }
.newsletter-form { display: flex; overflow: hidden; border-radius: 8px; border: 1px solid rgba(255,255,255,.15); }
.newsletter-form input { flex: 1; padding: 10px 13px; background: rgba(255,255,255,.08); border: none; outline: none; color: var(--white); font-size: 12px; font-family: 'Poppins', sans-serif; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form button { background: var(--accent); border: none; cursor: pointer; padding: 0 14px; color: var(--white); font-size: 15px; transition: background .2s; }
.newsletter-form button:hover { background: var(--accent2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0;
  font-size: 11px; color: rgba(255,255,255,.4);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); font-size: 11px; transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ════════════════════════════════════
   TABLET — max 1024px
   ════════════════════════════════════ */
@media (max-width: 1024px) {
  .state-grid { grid-template-columns: repeat(3, 1fr); }
  .trending-scroll { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════
   MOBILE — max 768px
   ════════════════════════════════════ */
@media (max-width: 768px) {

  /* NAV */
  .hamburger { display: flex; }
  .nav-call { display: flex; }
  .btn-plan { display: none; }
  .nav-logo span { font-size: 12px; }
  .nav-links {
    display: none; position: fixed; top: 64px; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 20px 5%;
    gap: 18px; box-shadow: var(--shadow); z-index: 999;
  }
  .nav-links.open { display: flex; }

  /* HERO */
  section { padding: 48px 4%; }
  .page-hero { height: 220px; padding: 0 16px; }
  .page-hero h1 { font-size: clamp(20px, 5vw, 30px); margin-bottom: 8px; }
  .page-hero p { font-size: 13px; }

  /* STATS: 2x2 */
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 12px; max-width: 320px; gap: 0;
  }
  .stat-item { border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.15); padding: 12px 8px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .stat-item:nth-child(4) { border-right: none; border-bottom: none; }
  .stat-num { font-size: 20px; }
  .stat-lbl { font-size: 10px; }

  /* STATE CARDS → horizontal swipe slider */
  .state-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 8px;
    margin: 0 -4%;
    padding-left: 4%;
    padding-right: 4%;
  }
  .state-grid::-webkit-scrollbar { display: none; }
  .state-card { width: 220px !important; height: 260px !important; flex-shrink: 0; scroll-snap-align: start; }
  .state-info h3 { font-size: 16px; }

  /* TRENDING → horizontal swipe slider */
  .trending-scroll {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 8px;
    margin: 0 -4%;
    padding-left: 4%;
    padding-right: 4%;
  }
  .trending-scroll::-webkit-scrollbar { display: none; }
  .trend-card { width: 240px !important; flex-shrink: 0; scroll-snap-align: start; }

  /* TESTIMONIALS → horizontal swipe slider */
  .testi-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 8px;
    margin: 0 -4% 24px;
    padding-left: 4%;
    padding-right: 4%;
  }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testimonial-card { width: 280px !important; flex-shrink: 0; scroll-snap-align: start; }

  /* SLIDER DOTS visible on mobile */
  .slider-dots { display: flex; }

  /* PACKAGES → 1 column */
  .pkg-grid { grid-template-columns: 1fr; }

  /* FEATURES → 1 column */
  .features-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* DESTINATIONS PAGE → 1 column */
  .dest-single-col { grid-template-columns: 1fr !important; }

  /* EXP CARDS → stack */
  .exp-card { grid-template-columns: 1fr; }
  .exp-card.reverse { direction: ltr; }
  .exp-img { height: 200px; }
  .exp-content { padding: 20px; }

  /* STORY/HOURS → stack */
  .story-grid, .hours-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-img img { height: 220px; }

  /* FOUNDERS */
  .founder-grid { grid-template-columns: 1fr; }
  .founder-card img { height: 220px; }

  /* PERSON/TEAM buttons */
  .person-btns a { padding: 18px 6px; font-size: 14px; }
  .team-grid { grid-template-columns: 1fr !important; max-width: 320px; margin: 0 auto; }

  /* OFFICE */
  .office-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }

  /* SOCIAL: icon + name only, 3-col */
  .social-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 100%; }
  .social-card { padding: 20px 12px; }
  .social-icon { width: 44px; height: 44px; font-size: 20px; }
  .social-card h4 { font-size: 13px; }

  /* WA SECTION buttons → full width stacked */
  .wa-btns { flex-direction: column; align-items: stretch; padding: 0 20px; }
  .btn-wa { justify-content: center; }

  /* CTA */
  .cta-btns { flex-direction: column; align-items: stretch; padding: 0 20px; }
  .cta-btns a { justify-content: center; }

  /* FORM */
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 20px 16px; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom span { font-size: 10px; }
}

/* ════════════════════════════════════
   SMALL — max 480px
   ════════════════════════════════════ */
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .state-card { width: 200px !important; height: 240px !important; }
  .trend-card { width: 220px !important; }
  .testimonial-card { width: 260px !important; }
}

/* Destinations page - force single col on mobile */
@media (max-width: 768px) {
  .dest-single-col {
    grid-template-columns: 1fr !important;
  }
  .dest-single-col .dest-card,
  .dest-single-col .state-card {
    height: 220px !important;
    width: 100% !important;
  }
}
