.destination-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.destination-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.transport-option {
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #e9ecef !important;
}

.transport-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #0d6efd !important;
}

.card-header {
    font-weight: 600;
    font-size: 1.25rem;
    padding: 1rem 1.25rem;
    border-bottom: none;
}

.btn-sm {
    padding: 0.35rem 0.5rem;
    font-size: 0.875rem;
    margin-top: auto;
}

.text-success {
    color: #28a745 !important;
    font-weight: 600;
}

.bg-primary {
    background-color: #0d6efd !important;
}

.card-footer {
    border-top: 1px solid rgba(0,0,0,.05);
}

@media (max-width: 768px) {
    .transport-option {
        margin-bottom: 15px;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
    }
    
    .btn-group.flex-wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Colores para iconos de vehículos */
.fa-car.text-primary { color: #0d6efd !important; }
.fa-car.text-warning { color: #ffc107 !important; }
.fa-van-shuttle.text-info { color: #0dcaf0 !important; }
.fa-bus.text-secondary { color: #6c757d !important; }
.fa-bus.text-danger { color: #dc3545 !important; }

/* Badge styles */
.badge.bg-light {
    font-weight: 500;
    padding: 0.35em 0.65em;
}


.section-title {
    position: relative;
    padding-bottom: 15px;
    color: #2c3e50;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0d6efd;
}

.tour-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}
.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.tour-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.tour-img-container img {
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.tour-card:hover .tour-img-container img {
    transform: scale(1.05);
}
.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}
.tour-card:hover .tour-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}

.tour-badge {
    position: absolute;
    top: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}
.price-badge {
    top: auto;
    bottom: 15px;
    right: 15px;
}

.tour-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.tour-description {
    color: #6c757d;
    margin-bottom: 1rem;
}

.accordion-button {
    font-weight: 500;
    color: #2c3e50;
}
.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.btn-group .btn {
    border-radius: 0;
}
.btn-group .btn:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.btn-group .btn:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

@media (max-width: 767.98px) {
    .tour-img-container {
        height: 180px;
    }
}

.tour-image {
    transition: transform 0.3s ease;
}

.card:hover .tour-image {
    transform: scale(1.03);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.filter-btn {
    margin: 2px;
}

@media (max-width: 767.98px) {
    .btn-group {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .filter-btn {
        margin: 1px;
        padding: 0.25rem 0.5rem;
    }
}