/**
 * Featured destinations cards (home + landing sections)
 */
.featured-destinations-section {
  padding: var(--bmga-space-4) 0;
  text-align: center;
}

.featured-destinations-section h2 {
  font-family: var(--bmga-font-display);
  font-weight: 800;
  letter-spacing: 0.1px;
  margin-bottom: 0.25rem;
  color: var(--bmga-text);
}

.featured-destinations-section > .container > p {
  color: var(--bmga-text-muted);
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.fd-card {
  border: 1.5px solid var(--bmga-border);
  border-radius: var(--bmga-radius-lg);
  background: var(--bmga-surface);
  overflow: hidden;
  box-shadow: var(--bmga-shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fd-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bmga-shadow-lg);
}

.fd-card .destination-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fd-card .card-img-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .fd-card .card-img-container {
    height: 230px;
  }
}

.fd-card .card-img-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.fd-card .price-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 12px;
  line-height: 1;
  padding: 8px 10px;
  color: #fff;
  background: var(--bmga-brand);
  border-radius: var(--bmga-radius-pill);
  box-shadow: 0 4px 14px rgba(222, 42, 31, 0.35);
  font-weight: 700;
}

.fd-card .card-body {
  display: flex;
  flex-direction: column;
  padding: 14px 16px 16px;
}

.fd-card .card-body h5 {
  margin: 4px 0 2px;
  font-weight: 700;
  color: var(--bmga-text);
  font-family: var(--bmga-font-display);
}

.fd-card .card-body .card-text {
  color: var(--bmga-text-muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.fd-card .btn-cta,
.fd-card .btn-view-packages {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--bmga-brand);
  border: 0;
  color: #fff !important;
  font-weight: 700;
  border-radius: var(--bmga-radius-md);
  padding: 10px 14px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.fd-card .btn-cta:hover,
.fd-card .btn-view-packages:hover {
  background: var(--bmga-brand-dark);
  transform: translateY(-1px);
}
