/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #85c3f1;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 80px 0;
}

/* ===== NAVBAR ===== */
header {
  background: #011f2e;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 9998;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: visible;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,180,216,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

header::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(0,119,182,0.18);
  filter: blur(80px);
  top: -120px;
  left: -60px;
  pointer-events: none;
  z-index: 0;
}

.nav-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(244,162,97,0.45);
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
}

nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  font-size: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  transition: 0.25s ease;
  border: 1px solid transparent;
  display: block;
}

nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.10);
}

nav a.active {
  color: #ffd166;
  background: rgba(244,162,97,0.12);
  border-color: rgba(244,162,97,0.25);
}

/* ===== HERO ===== */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
  url('images/ruacana.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  height: 40vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
  url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.page-banner h2 {
  font-size: 40px;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: #f4a261;
  padding: 14px 35px;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 12px 22px rgba(0,0,0,0.15);
  transform: translateY(0);
}

.btn-primary:hover {
  background: #e76f51;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 30px rgba(0,0,0,0.22);
}

.btn-primary:active {
  transform: translateY(0) scale(0.99);
}

.btn-secondary {
  background: #023047;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-full { width: 100%; }
.btn-full-mobile { width: auto; }

/* ===== ICON BUTTONS ===== */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-icon .icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon .icon svg { width: 22px; height: 22px; }

button:disabled { filter: grayscale(0.1); }

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: center;
}

.card:hover { transform: translateY(-10px); }

.card h3 {
  margin-bottom: 15px;
  color: #0077b6;
}

/* ===== BOOKING FORM ===== */
form {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

form button {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* ===== COMPACT FORM ===== */
.form-compact {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.form-compact input,
.form-compact select,
.form-compact textarea {
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  outline: none;
}

.form-compact input:focus,
.form-compact select:focus,
.form-compact textarea:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 0 4px rgba(0,180,216,0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-compact textarea {
  resize: vertical;
  margin-bottom: 14px;
}

.form-status {
  text-align: center;
  margin-top: 10px;
  color: #0077b6;
  font-weight: 600;
}

.form-error {
  color: #d90429;
  font-size: 14px;
  margin-top: 8px;
  text-align: center;
  font-weight: 600;
}

input.error,
select.error,
textarea.error {
  border-color: #d90429 !important;
  box-shadow: 0 0 0 3px rgba(217,4,41,0.15);
}

/* ===== DESTINATION IMAGES ===== */
.destination-img {
  height: 180px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 22px;
  padding: 15px 18px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.whatsapp-float .wa-ic {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float svg { width: 26px; height: 26px; }

/* ===== MAP ===== */
.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
  background: #fff;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ===== FAQ ACCORDION ===== */
.faq {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  color: #023047;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-body {
  padding: 0 20px 18px 20px;
  color: #444;
  line-height: 1.6;
}

.faq-item[open] summary {
  background: linear-gradient(90deg, rgba(0,119,182,0.10), rgba(0,180,216,0.10));
}

.chev {
  transition: transform 0.25s ease;
  font-weight: 900;
}

.faq-item[open] .chev { transform: rotate(180deg); }

/* ===== FILTER TABS ===== */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.filter-btn {
  border: none;
  background: #e9f5fb;
  color: #0077b6;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.filter-btn:hover { transform: translateY(-2px); }
.filter-btn.active { background: #0077b6; color: #fff; }

/* ===== DESTINATIONS PAGE ===== */
.destination-card { text-align: left; }

.dest-list {
  margin: 15px 0 20px;
  padding-left: 18px;
  color: #444;
  line-height: 1.6;
}

.dest-list li { margin-bottom: 6px; }

.dest-actions {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.modal.open { display: flex; }

.modal-box {
  background: #fff;
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  overflow: hidden;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: linear-gradient(90deg, rgba(0,119,182,0.12), rgba(0,180,216,0.12));
}

.modal-close {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  font-weight: 900;
}

.modal-body {
  padding: 16px 18px;
  color: #333;
  line-height: 1.7;
}

.modal-item { margin-bottom: 8px; }
.modal-foot { padding: 14px 18px 18px; }

/* ===== ACTIVITIES PAGE ===== */
.activity-card { text-align: left; }

.activity-card p {
  color: #444;
  line-height: 1.6;
  margin-top: 8px;
}

/* ===== SERVICES PAGE ===== */
.service-pro { text-align: left; }

.svc-ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(0,119,182,0.15), rgba(0,180,216,0.15));
  color: #0077b6;
  margin-bottom: 12px;
}

.svc-ic svg { width: 26px; height: 26px; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 45px;
}

.about-text {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.about-text p {
  color: #444;
  line-height: 1.75;
  margin: 10px 0 16px;
}

.about-image {
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.badge {
  background: rgba(0,119,182,0.12);
  color: #0077b6;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 25px;
}

.about-box {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.about-box p {
  color: #444;
  line-height: 1.7;
  margin-top: 8px;
}

.values {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
  color: #444;
  line-height: 1.8;
}

/* ===== HOME HERO ===== */
.hero-home {
  position: relative;
  min-height: 92vh;
  background: url('images/ruacana.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
  padding: 40px 0;
}

.hero-content h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  margin: 12px 0;
}

.hero-content p {
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  max-width: 620px;
}

.pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.14);
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-item {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 6px 8px;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust-num {
  display: block;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
}

.trust-label {
  color: rgba(255,255,255,0.85);
  font-size: 10px;
}

.hero-card {
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.30);
}

.hero-card h3 { margin-bottom: 6px; }
.hero-card p { color: #444; margin-bottom: 14px; line-height: 1.6; }

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.mini-btn {
  border: none;
  background: rgba(0,119,182,0.12);
  color: #0077b6;
  padding: 12px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.mini-btn:hover { transform: translateY(-2px); }

.small-note {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

.section-head {
  text-align: center;
  margin-bottom: 26px;
}

.section-head p {
  color: #555;
  margin-top: 6px;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.soft-section {
  background: linear-gradient(90deg, rgba(0,119,182,0.06), rgba(0,180,216,0.06));
}

.img-top {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
}

.link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  color: #0077b6;
}

.quote p { color: #333; line-height: 1.7; }

.quote-by {
  margin-top: 12px;
  font-weight: 900;
  color: #023047;
}

.cta-banner {
  background: linear-gradient(90deg, rgba(0,119,182,0.18), rgba(0,180,216,0.18));
  padding: 55px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-inner p {
  color: #444;
  margin-top: 6px;
  line-height: 1.6;
}

/* ===== SITE FOOTER ===== */
.site-footer {
  background: #011f2e;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer-wave {
  display: block;
  width: 100%;
  line-height: 0;
  background: #85c3f1;
}

.footer-wave svg { display: block; width: 100%; }

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,180,216,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.footer-glow-left,
.footer-glow-right {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.footer-glow-left {
  width: 340px;
  height: 340px;
  background: rgba(0, 119, 182, 0.18);
  top: -60px;
  left: -80px;
}

.footer-glow-right {
  width: 260px;
  height: 260px;
  background: rgba(244, 162, 97, 0.10);
  bottom: 60px;
  right: -60px;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 90%;
  margin: auto;
  padding: 60px 0 44px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(244,162,97,0.45);
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}

.footer-tagline {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-region-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.region-pill {
  background: rgba(0,180,216,0.14);
  border: 1px solid rgba(0,180,216,0.22);
  color: #90e0ef;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
  font-size: 16px;
}

.social-btn:hover {
  background: rgba(244,162,97,0.22);
  border-color: rgba(244,162,97,0.40);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 15px;
  font-weight: 900;
  color: #ffd166;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s ease;
}

.footer-nav a:hover {
  color: #fff;
  padding-left: 4px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(0,119,182,0.20);
  border: 1px solid rgba(0,119,182,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.contact-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

.contact-text a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: 0.2s;
}

.contact-text a:hover { color: #ffd166; }

.footer-wa-card {
  background: linear-gradient(135deg, rgba(37,211,102,0.15), rgba(37,211,102,0.06));
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wa-card-title {
  font-weight: 700;
  font-size: 14px;
  color: #25d366;
}

.wa-card-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.wa-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.25s;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.wa-card-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-copy span { color: rgba(244,162,97,0.80); }

.footer-badge {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.40);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

/* ============================================================
   RESPONSIVE — consolidated breakpoints
   ============================================================ */

/* Tablet: ≤ 1000px */
@media (max-width: 1000px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Tablet/large mobile: ≤ 900px */
@media (max-width: 900px) {
  section { padding: 60px 0; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }

  .hero-card {
    max-width: 100%;
  }

  .btn-full-mobile { width: 100%; }

  .hero-trust {
    margin-top: 12px;
    position: static;
  }

  .about-hero { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-inner .btn-primary { width: 100%; max-width: 320px; }

  .map-wrap iframe { height: 300px; }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  /* Nav — hamburger */
  .nav-toggle { display: flex; }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #011f2e;
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  nav.open {
    max-height: 500px;
    padding: 12px 0 16px;
  }

  nav ul {
    flex-direction: column;
    gap: 2px;
    padding: 0 5%;
  }

  nav a {
    border-radius: 12px;
    padding: 10px 14px;
  }

  /* Hero */
  .hero { height: auto; min-height: 70vh; padding: 60px 0; }
  .hero h2 { font-size: 26px; }
  .hero p { font-size: 15px; }
  .hero-content h2 { font-size: clamp(24px, 6vw, 36px); }

  .page-banner { height: 30vh; min-height: 180px; }
  .page-banner h2 { font-size: 26px; }

  /* Cards */
  .cards { grid-template-columns: 1fr; gap: 20px; }
  .card { padding: 22px; }
  .card:hover { transform: none; } /* disable hover lift on touch */

  /* Buttons */
  .btn-primary,
  .btn-secondary { padding: 12px 24px; font-size: 14px; }

  /* Forms */
  form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .form-compact { padding: 18px; }

  /* Section headings */
  .section-head h2 { font-size: 22px; }

  /* Mini grid */
  .mini-grid { grid-template-columns: 1fr 1fr; }

  /* About */
  .about-image { min-height: 220px; }
  .about-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-inner { padding: 40px 0 30px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-tagline { max-width: 100%; }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .container { width: 94%; }

  section { padding: 48px 0; }

  .logo-text { font-size: 17px; }
  .logo-img { width: 40px; height: 40px; }

  .hero-content h2 { font-size: 22px; }

  .mini-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .mini-btn { font-size: 12px; padding: 10px 6px; }

  .pill { font-size: 11px; padding: 6px 10px; }

  .cards { gap: 16px; }
  .card { padding: 18px; }

  .filter-bar { gap: 6px; }
  .filter-btn { padding: 8px 12px; font-size: 13px; }

  .cta-banner { padding: 36px 0; }

  .footer-inner { padding: 32px 0 24px; }
  .footer-top { gap: 22px; }

  .whatsapp-float { bottom: 14px; right: 14px; padding: 12px 14px; font-size: 18px; }
}
/* ===== DEST MODAL PICKER (keeps your layout) ===== */
.modal-note{
  color:#555;
  margin-bottom:12px;
  font-weight:600;
}

.pick-grid{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.pick-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:14px;
  background:#fff;
  cursor:pointer;
  transition:0.2s ease;
}

.pick-item:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.pick-item input{
  display:none;
}

.pick-box{
  width:18px;
  height:18px;
  border-radius:6px;
  border:2px solid rgba(0,119,182,0.55);
  display:inline-block;
  position:relative;
  flex:0 0 auto;
}

.pick-text{
  color:#023047;
  font-weight:700;
  line-height:1.3;
  font-size:14px;
}

/* checked state */
.pick-item:has(input:checked){
  border:2px solid #0077b6;
  background: rgba(0,119,182,0.06);
}

.pick-item:has(input:checked) .pick-box{
  background:#0077b6;
  border-color:#0077b6;
}

.pick-item:has(input:checked) .pick-box::after{
  content:"";
  position:absolute;
  left:5px;
  top:2px;
  width:4px;
  height:9px;
  border:2px solid #fff;
  border-top:none;
  border-left:none;
  transform: rotate(45deg);
}
/* ===== DEST MODAL: SCROLL FIX + CATEGORY UI (Namibia only) ===== */
.modal-box{
  max-height: 85vh;          /* keep modal inside screen */
  display:flex;
  flex-direction:column;
}

.modal-body{
  overflow:auto;             /* allow scrolling inside modal */
  max-height: 55vh;          /* ensures you can reach the footer buttons */
  padding-right: 6px;
}

/* sticky footer so booking button is ALWAYS visible */
.modal-foot{
  position: sticky;
  bottom: 0;
  background: #fff;
  padding-top: 12px;
}

/* category chips */
.cat-bar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 10px 0 14px;
}

.cat-btn{
  border:none;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(0,119,182,0.10);
  color:#0077b6;
  font-weight:800;
  cursor:pointer;
  transition:0.2s ease;
}

.cat-btn:hover{ transform: translateY(-1px); }
.cat-btn.active{
  background:#0077b6;
  color:#fff;
}

/* section title inside modal */
.cat-title{
  font-weight:900;
  color:#023047;
  margin: 14px 0 8px;
}

/* list layout inside category */
.pick-grid{
  display:flex;
  flex-direction:column;
  gap:10px;
}
/* ===== DEST MODAL: SCROLL FIX + NAMIBIA CATEGORIES ===== */
.modal-box{
  max-height: 85vh;
  display:flex;
  flex-direction:column;
}

.modal-body{
  overflow:auto;
  max-height: 55vh;
  padding-right: 6px;
}

.modal-foot{
  position: sticky;
  bottom: 0;
  background: #fff;
  padding-top: 12px;
}

/* category chips */
.cat-bar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 10px 0 14px;
}

.cat-btn{
  border:none;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(0,119,182,0.10);
  color:#0077b6;
  font-weight:800;
  cursor:pointer;
  transition:0.2s ease;
}

.cat-btn:hover{ transform: translateY(-1px); }
.cat-btn.active{
  background:#0077b6;
  color:#fff;
}

.cat-title{
  font-weight:900;
  color:#023047;
  margin: 14px 0 8px;
}

/* checkbox list */
.pick-grid{
  display:flex;
  flex-direction:column;
  gap:10px;
}
/* Namibia activity cards inside modal */
.activity-card-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:14px;
}

.activity-option-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 18px rgba(0,0,0,0.06);
}

.activity-option-img{
  height:140px;
  background-size:cover;
  background-position:center;
}

.activity-option-content{
  padding:14px;
}

.activity-option-content h4{
  color:#023047;
  margin-bottom:8px;
  font-size:16px;
}

.activity-option-content p{
  color:#555;
  font-size:14px;
  line-height:1.5;
  margin-bottom:12px;
}

.activity-option-actions{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}

.compact-pick{
  margin:0;
  padding:10px 12px;
  border-radius:12px;
}

.explore-btn{
  padding:10px 14px;
  border-radius:12px;
}