/* Professional Explore Button - Trustworthy rectangular design */
.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #ff6b35;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 110px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.explore-btn:hover {
    background: white;
    color: #ff6b35;
    border-color: #ff6b35;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.explore-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.explore-btn i {
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .explore-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 100px;
    }
}

/* Card footer styling for destinations - reduced padding */
.destination-footer {
    padding: 10px;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid #eee;
    border-radius: 0 0 8px 8px;
}

/* Tour buttons container for attractions */
.tour-buttons {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 10px;
}

/* Destination footer alignment */
.destination-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}