:root {
  --navy: #1a4a8e;
  --orange: #ff5a00;
}

.dest-hero {
  height: 450px;
  margin-top: -20px;
}

.icon-box-dest {
  width: 60px;
  height: 60px;
  background: var(--navy);
  color: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.bg-navy {
  background-color: var(--navy);
}
.text-navy {
  color: var(--navy);
}
.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: bold;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .dest-hero {
    height: 350px;
  }
  .display-3 {
    font-size: 2.5rem;
  }
}
