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

:root {
  --navy: #1b2a4a;
  --navy-hover: #253659;
  --cream: #f7f3ed;
  --warm-white: #fdfaf6;
  --gold: #c9913d;
  --text-dark: #191919;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #e6e0d8;
  --green: #2d7a4f;
  --red-cta: #b83025;
}

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

/* ─── NAV ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;

  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
}
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── LANGUAGE SWITCHER ───────────────────────── */
.lang-switcher-bar {
  padding: 16px 24px 20px;
  display: flex;
  justify-content: center;
}
.lang-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--text-mid);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.4px;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.lang-btn:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--navy);
}
.lang-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ─── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/banner2.jpeg");
  background-size: cover;
  background-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 14, 20, 0.8) 0%,
    rgba(10, 14, 20, 0.55) 50%,
    rgba(10, 14, 20, 0.35) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
  padding-top: 64px;
}
.hero-content {
  min-width: 0;
}
.hero-form {
  min-width: 0;
}
.hero-form .form-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}
.form-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.form-title em {
  font-style: normal;
  color: var(--navy);
}
.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 440px;
}
.hero-questions {
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-questions ul {
  list-style: none;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-questions ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.hero-questions ul li::before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.hero-questions ul li a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s, border-color 0.2s;
}
.hero-questions ul li a:hover {
  color: #fff;
  border-bottom-color: var(--gold);
}
.hero-questions-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.hero-questions-cta:hover {
  color: #fff;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  background: var(--red-cta);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.2px;
  font-family: inherit;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: #9b2820;
  transform: translateY(-1px);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  cursor: pointer;
  font-family: inherit;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ─── FLOATING WHATSAPP ───────────────────────── */
.wa-float {
  position: fixed;
  bottom: 60px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 50px;
  padding: 8px 18px 8px 8px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid var(--border);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
}
.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.wa-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wa-info {
  display: flex;
  flex-direction: column;
}
.wa-status {
  font-size: 10px;
  font-weight: 700;
  color: #25d366;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.2px;
}
.wa-status::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  flex-shrink: 0;
}
.wa-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.wa-icon-wrap {
  margin-left: 2px;
}

/* ─── SECTION LABEL (shared) ─────────────────── */
.section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.form-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group:last-of-type {
  margin-bottom: 0;
}
.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.form-group input,
.form-group select {
  width: 100%;
  min-width: 0;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input[type="month"] {
  -webkit-appearance: auto;
  appearance: auto;
  min-height: 42px;
  font-size: 15px;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.09);
}
.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
  font-size: 13px;
}
.activities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.activity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  min-height: 44px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}
.activity-item:hover {
  border-color: var(--navy);
}
.activity-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s;
}
.activity-item input[type="checkbox"]:checked {
  border-color: var(--navy);
}
.activity-item input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 9px;
  border: 2px solid var(--navy);
  border-top: none;
  border-left: none;
  transform: translate(-50%, -60%) rotate(45deg);
}
.activity-item:has(input:checked) {
  border-color: var(--navy);
  background: rgba(27, 42, 74, 0.07);
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.checkbox-group input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--navy);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.checkbox-group label span {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}
.btn-find {
  width: 100%;
  margin-top: 6px;
  padding: 14px;
  min-height: 48px;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.2px;
  transition: background 0.2s;
}
.btn-find:hover {
  background: var(--navy-hover);
}
.form-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: var(--text-light);
  font-size: 12px;
}
.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.btn-wa-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 7px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.2s;
}
.btn-wa-form:hover {
  background: #1ea855;
}
.pricing-cta {
  text-align: center;
  margin-top: 32px;
}
.btn-wa-pricing {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.btn-wa-pricing:hover {
  background: #1ea855;
  transform: translateY(-2px);
}
.btn-wa-pricing-number {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  padding-left: 10px;
  margin-left: 2px;
}

/* ─── PLACES ──────────────────────────────────── */
.places {
  background: #fff;
  padding: 88px 64px;
}
.places-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.places-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.places-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
}
.map-link {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.map-link:hover {
  text-decoration: underline;
}
.places-sub {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.place-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.place-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.11);
}
.card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.place-card:hover .card-img img {
  transform: scale(1.06);
}
.card-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
}
.card-body {
  padding: 20px;
}
.card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.card-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 14px;
}
.card-link {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.card-link:hover {
  text-decoration: underline;
}

/* ─── ACTIVE TRIPS ────────────────────────────── */
.trips {
  background: var(--cream);
  padding: 88px 64px;
}
.trips-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
}
.trips-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  margin-bottom: 14px;
}
.trips-left p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.urgency {
  background: #fff8e1;
  border: 1px solid #ffb300;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.urgency-bolt {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.urgency-body strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #e65100;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.urgency-body span {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}
.trip-list {
  display: flex;
  flex-direction: column;
}
.trip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.trip-row:first-child {
  border-top: 1px solid var(--border);
}
.trip-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.trip-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.trip-name {
  font-size: 16px;
  font-weight: 700;
}
.trip-meta {
  font-size: 13px;
  color: var(--text-mid);
}
.btn-join {
  padding: 9px 20px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-join:hover {
  background: var(--navy);
  color: #fff;
}
.tag-full {
  padding: 9px 20px;
  background: var(--border);
  color: var(--text-light);
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* ─── YOUTUBE VIDEO ──────────────────────────── */
.yt-section {
  background: var(--navy);
  padding: 64px 64px;
}
.yt-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.yt-grid iframe {
  display: block;
  width: 100%;
  height: 315px;
  border-radius: 12px;
}
.desktop-only {
  display: block;
}
@media (max-width: 960px) {
  .desktop-only {
    display: none;
  }
}

/* ─── PRICING ─────────────────────────────────── */
.pricing {
  background: #fff;
  padding: 96px 64px;
  text-align: center;
}
.pricing-inner {
  max-width: 860px;
  margin: 0 auto;
}
.pricing h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
}
.pricing-sub {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 52px;
}
.price-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 44px rgba(0, 0, 0, 0.08);
}
.price-left {
  background: var(--cream);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.price-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.price-amount {
  font-family: "Playfair Display", serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.price-amount sup {
  font-size: 36px;
  vertical-align: super;
  letter-spacing: 0;
}
.price-per {
  font-size: 14px;
  color: var(--text-mid);
}
.price-note {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 200px;
}
.price-right {
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.feat {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.feat-check {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-check svg {
  width: 11px;
  height: 11px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feat-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}
.feat-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ─── FOOTER ──────────────────────────────────── */
footer {
  background: var(--cream);
  padding: 60px 64px 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 220px;
  margin-bottom: 20px;
}
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.footer-wa-btn:hover {
  background: #1ea855;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--navy);
}
.footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-light);
}

/* ─── FOOTER ADDRESS ─────────────────────────── */
.footer-address {
  max-width: 1080px;
  margin: 0 auto 36px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-address-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: center;
}
.footer-address-text h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.footer-address-text p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-map-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-map-link:hover {
  color: var(--navy);
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 180px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
@media (max-width: 640px) {
  .footer-address-inner {
    grid-template-columns: 1fr;
  }
}

/* ─── ANIMATIONS ──────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-up.in {
  opacity: 1;
  transform: none;
}

/* ─── WHATSAPP FLOATING BUTTON ───────────────── */
.mobile-wa-bar {
  display: flex;
  position: fixed;
  bottom: 28px;
  right: 28px;
  left: auto;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.mobile-wa-bar:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}
.wa-bar-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.wa-bar-sub {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.85;
}
.mobile-wa-bar svg {
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .mobile-wa-bar {
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0;
    padding: 14px 24px;
    font-size: 1rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
    transition: none;
  }
  .mobile-wa-bar:hover {
    transform: none;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
  }
  body {
    padding-bottom: 58px;
  }
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    display: flex;
    gap: 12px;
  }
  .nav-links li:not(.nav-articles-item) {
    display: none;
  }
  .hero-btns {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    padding-top: 80px;
    gap: 28px;
  }
  .hero {
    align-items: flex-start;
    padding-top: 0;
    padding-bottom: 40px;
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }
  .places,
  .trips,
  .pricing {
    padding: 64px 24px;
  }
  footer {
    padding: 52px 24px 28px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .trips-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .price-right {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .wa-float {
    bottom: 50px;
    right: 18px;
  }
}


/* SEO trust/process strip */
.seo-trust-strip {
  background: #fff;
  padding: 56px 64px;
  border-bottom: 1px solid var(--border);
}
.seo-trust-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: start;
}
.seo-trust-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--navy);
  margin-bottom: 12px;
}
.seo-trust-copy p,
.seo-process-list span {
  color: var(--text-mid);
  line-height: 1.7;
  font-size: 14px;
}
.seo-process-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.seo-process-list li {
  border-left: 3px solid var(--gold);
  padding: 12px 0 12px 16px;
  background: var(--warm-white);
}
.seo-process-list strong,
.seo-process-list span {
  display: block;
}
.seo-process-list strong {
  color: var(--navy);
  margin-bottom: 4px;
}
.commercial-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: end;
  padding: 120px 64px 72px;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.commercial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,14,20,.82), rgba(10,14,20,.35));
}
.commercial-hero-inner {
  position: relative;
  max-width: 820px;
}
.commercial-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  margin-bottom: 18px;
}
.commercial-hero p {
  max-width: 620px;
  line-height: 1.7;
  color: rgba(255,255,255,.86);
  margin-bottom: 28px;
}
.commercial-section {
  padding: 32px 64px;
  background: #fff;
}
.commercial-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.commercial-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}
.commercial-panel h2 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 16px;
}
.commercial-panel ul {
  padding-left: 18px;
  color: var(--text-mid);
  line-height: 1.8;
}
.commercial-cta {
  background: var(--cream);
  padding: 48px 24px;
  text-align: center;
}
.commercial-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy);
  margin-bottom: 14px;
}
.commercial-cta p {
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
@media (max-width: 960px) {
  .seo-trust-strip,
  .commercial-section,
  .commercial-hero {
    padding-left: 24px;
    padding-right: 24px;
  }
  .seo-trust-inner,
  .commercial-inner {
    grid-template-columns: 1fr;
  }
}
