#transfers-booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.booking-step {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e8ed;
}

.booking-step h3 {
    margin: 0 0 25px 0;
    color: #2c3e50;
    font-size: 24px;
    text-align: center;
}

/* DESTINOS - COLOR CORPORATIVO */
.destinations-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.destinations-list .destination-card,
.destination-card {
    display: block !important;
    background: #052839 !important;
    color: white !important;
    padding: 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.destinations-list .destination-card:hover,
.destination-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #004a6d !important;
}

.destinations-list .destination-card.active,
.destination-card.active {
    border-color: #f39c12 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #003344 !important;
}

.destination-card h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: white !important;
}

.destination-card p {
    margin: 8px 0;
    font-size: 14px;
    opacity: 0.9;
    color: white !important;
}

.slider-controls {
    display: none;
}

.slider-prev,
.slider-next {
    background: #002233 !important;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: #003344 !important;
    transform: scale(1.1);
}

/* FORMULARIOS */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #002233;
}

.total-price {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    border: 2px solid #27ae60;
}

.total-price strong {
    font-size: 24px;
    color: #27ae60;
}

/* BOTONES - COLOR CORPORATIVO */
.btn-next,
.btn-prev,
.btn-submit {
    background: #004a6d !important;
    color: white !important;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px 10px 0;
    text-decoration: none;
}

.btn-next:hover,
.btn-submit:hover {
    background: #003344 !important;
    transform: translateY(-2px);
}

.btn-prev {
    background: #95a5a6 !important;
}

.btn-prev:hover {
    background: #7f8c8d !important;
    transform: translateY(-2px);
}

.btn-submit {
    background: #27ae60 !important;
}

.btn-submit:hover {
    background: #229954 !important;
}

.success-message {
    text-align: center;
    padding: 40px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    color: #155724;
}

.success-message h3 {
    color: #155724;
    margin-bottom: 15px;
}

#booking-date {
    cursor: pointer;
}

.ui-datepicker {
    font-size: 14px;
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
    #transfers-booking-container {
        padding: 15px;
    }
    
    .booking-step {
        padding: 20px;
        text-align: center;
    }
    
    .destination-card {
        padding: 20px;
    }
    
    .destination-card h4 {
        font-size: 18px;
    }
    
    .form-group {
        text-align: left;
    }
    
    .form-group input,
    .form-group select {
        font-size: 16px;
    }
    
    /* BOTONES CENTRADOS EN MOBILE */
    .btn-next,
    .btn-prev,
    .btn-submit {
        display: block !important;
        width: 90% !important;
        margin: 10px auto !important;
        text-align: center !important;
        padding: 18px 20px !important;
        font-size: 18px !important;
    }
    
    .total-price {
        margin: 20px 0;
    }
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid #f5c6cb;
    text-align: center;
}