/* Destinations Section Styling */
.dest-header {
    margin-bottom: 50px;
}

.dest-label {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dest-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 60, 93, 0.12);
    border-color: var(--primary-color);
    text-decoration: none;
    color: inherit;
}

.dest-flag-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dest-flag-circle {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.dest-card:hover .dest-flag-circle {
    transform: scale(1.1) rotate(5deg);
}

.dest-code {
    font-size: 12px;
    font-weight: 800;
    color: #cbd5e1;
    letter-spacing: 1px;
}

.dest-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.dest-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.dest-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dest-highlights li {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dest-highlights li i {
    color: var(--secondary-color);
    font-size: 10px;
}

.dest-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.dest-card:hover .dest-link {
    gap: 12px;
}

/* Responsive Grid Adjustments */
@media (max-width: 991px) {
    .dest-card { padding: 25px 20px; }
}

@media (max-width: 767px) {
    .dest-header { text-align: center; }
    .dest-header .btn-premium { margin-top: 20px; }
}
