/* Destinations map — reference index.html */

#destinations.uauu-destinations {
  --dest-bg-deep: #0a0c09;
  --dest-bg-elevated: #1a1e17;
  --dest-bg-soft: #222820;
  --dest-gold: #c9a962;
  --dest-gold-dim: rgba(201, 169, 98, 0.15);
  --dest-text: #f5f3ef;
  --dest-text-muted: rgba(245, 243, 239, 0.65);
  --dest-border: rgba(255, 255, 255, 0.08);
  --dest-border-gold: rgba(201, 169, 98, 0.35);
  --dest-container: 1200px;
  --dest-font-display: "Cormorant Garamond", Georgia, serif;
  background: var(--dest-bg-deep) !important;
  color: var(--dest-text);
  padding: 0 !important;
}

#destinations.uauu-destinations > .ct-section-inner-wrap {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 6rem 0 !important;
  align-items: stretch !important;
  gap: 0 !important;
}

#destinations.uauu-destinations #code_block-2460-18 {
  width: 100%;
}

#destinations.uauu-destinations .container {
  width: min(100% - 2.5rem, var(--dest-container));
  margin-inline: auto;
}

#destinations.uauu-destinations .section-head {
  margin-bottom: 3rem;
  text-align: left;
}

#destinations.uauu-destinations .eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dest-gold);
  font-family: "DM Sans", system-ui, sans-serif;
}

#destinations.uauu-destinations .section-title {
  margin: 0 0 1rem;
  font-family: var(--dest-font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dest-text) !important;
}

#destinations.uauu-destinations .section-lead {
  margin: 0;
  max-width: 38rem;
  color: var(--dest-text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  font-family: "DM Sans", system-ui, sans-serif;
}

#destinations.uauu-destinations .destinations-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

#destinations.uauu-destinations .map-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 55% 45%, rgba(201, 169, 98, 0.12), transparent 55%),
    linear-gradient(145deg, var(--dest-bg-elevated), var(--dest-bg-soft));
  border: 1px solid var(--dest-border);
  overflow: hidden;
  min-height: 280px;
}

#destinations.uauu-destinations .map-visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px dashed var(--dest-border-gold);
  border-radius: 50%;
  opacity: 0.4;
}

#destinations.uauu-destinations .map-pin {
  position: absolute;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(10, 12, 9, 0.85);
  border: 1px solid var(--dest-border-gold);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dest-gold);
  white-space: nowrap;
  transition: transform 0.25s ease, background 0.25s ease;
  font-family: "DM Sans", system-ui, sans-serif;
}

#destinations.uauu-destinations .map-pin:hover {
  transform: scale(1.05);
  background: var(--dest-gold-dim);
}

#destinations.uauu-destinations .map-pin--maputo { top: 62%; left: 48%; }
#destinations.uauu-destinations .map-pin--kruger { top: 38%; left: 52%; }
#destinations.uauu-destinations .map-pin--eswatini { top: 50%; left: 56%; }
#destinations.uauu-destinations .map-pin--tofo { top: 70%; left: 44%; }

#destinations.uauu-destinations .destinations-list {
  display: grid;
  gap: 1.5rem;
}

#destinations.uauu-destinations .country-block {
  padding: 1.5rem;
  border-radius: 18px;
  background: var(--dest-bg-elevated);
  border: 1px solid var(--dest-border);
}

#destinations.uauu-destinations .country-block h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dest-gold);
  font-family: "DM Sans", system-ui, sans-serif;
}

#destinations.uauu-destinations .country-block h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dest-gold);
  flex-shrink: 0;
}

#destinations.uauu-destinations .country-block ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

#destinations.uauu-destinations .country-block li a {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--dest-border);
  font-size: 0.85rem;
  color: var(--dest-text-muted);
  text-decoration: none;
  font-family: "DM Sans", system-ui, sans-serif;
  transition: border-color 0.2s ease, color 0.2s ease;
}

#destinations.uauu-destinations .country-block li a:hover {
  border-color: var(--dest-border-gold);
  color: var(--dest-gold);
}

#destinations.uauu-destinations .destinations-cta {
  margin: 2.5rem 0 0;
  text-align: center;
}

#destinations.uauu-destinations .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

#destinations.uauu-destinations .btn--primary {
  background: var(--dest-gold);
  color: var(--dest-bg-deep) !important;
}

#destinations.uauu-destinations .btn--primary:hover {
  transform: translateY(-2px);
  background: #e0c98a;
}

@media (max-width: 900px) {
  #destinations.uauu-destinations .destinations-layout {
    grid-template-columns: 1fr;
  }

  #destinations.uauu-destinations .map-visual {
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  #destinations.uauu-destinations > .ct-section-inner-wrap {
    padding: 4rem 0 !important;
  }
}
