.btn-primary {
  background: var(--white);
  color: var(--navy-dark);
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 400;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid var(--white);
}

.btn-primary:hover {
  background: var(--yellow);
  color: var(--dark);
}

.btn-secondary {
  margin-left: 16px;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--white);
}

.hero-actions {
  display: flex;
  align-items: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-actions {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-family: 'Poppins';
}

}

/* MAP SECTION */

.custom-marker span {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(214,179,106,0.25);
}



/* components.css */
.map-tooltip {
  position: absolute;
  padding: 8px 14px;
  background: rgba(16,47,58,0.9);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: 4px;
  z-index: 999;
}



/* DETINATION SECTION */
.destination-link {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 6px;
}

.destination-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.destination-link:hover::after {
  width: 100%;
}

/* DESTINASI KANAN */
.coverage-destinations {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* CARD */
.destination-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* IMAGE */
.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.destination-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.destination-content h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.destination-content p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  color: var(--navy-dark);
}

.destination-content .price {
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.destination-content .price strong {
  font-size: 1rem;
}

/* CTA */
.btn-view {
  align-self: flex-start;
  padding: 10px 22px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}

.btn-view:hover {
  background: var(--navy-dark);
}
