/* ================================
   POPULAR DESTINATIONS – REDESIGN
   ================================ */

.popular-destinations {
    background: #f5f7fa; /* soft light grey */
    padding: 70px 0;
}

.popular-destinations h2 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1f2933; /* dark premium */
    text-align: center;
    margin-bottom: 15px;
}

.popular-destinations p.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

/* DESTINATION CARDS */
.destination-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.destination-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.destination-card span {
    display: block;
    font-size: 15px;
    color: #666;
}
