/* Main Booking Container */
.luxury-tours-booking-container {
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: 'Raleway', sans-serif;
    color: #333;
}

.luxury-tours-booking-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    color: #0F2C59;
}

/* Progress Bar */
.booking-progress {
    margin-bottom: 30px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #777;
    position: relative;
}

.step.active {
    color: #D4AF37;
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.progress-indicator {
    height: 100%;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

/* Form Steps */
.booking-step {
    display: none;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.booking-step.active {
    display: block;
}

.booking-step h3 {
    font-family: 'Playfair Display', serif;
    color: #0F2C59;
    margin-bottom: 20px;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.datepicker {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #D4AF37;
}

/* Transport Options */
.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.transport-option {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transport-option:hover {
    border-color: #D4AF37;
}

.transport-option.selected {
    border-color: #D4AF37;
}

.transport-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.transport-option h4 {
    margin: 0;
    font-weight: 600;
}

.transport-radio {
    position: relative;
    width: 20px;
    height: 20px;
}

.transport-radio input {
    opacity: 0;
    position: absolute;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid #ddd;
}

.transport-option.selected .checkmark {
    border-color: #D4AF37;
}

.transport-option.selected .checkmark:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D4AF37;
}

.transport-option img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.transport-option p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Date Selection */
.date-selection {
    margin-bottom: 20px;
}

.tour-dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.date-option {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-option:hover {
    border-color: #D4AF37;
}

.date-option.selected {
    border-color: #D4AF37;
}

.date-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.date-option h4 {
    margin: 0;
    font-weight: 600;
}

.date-option-availability {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.date-option-availability svg {
    margin-right: 5px;
    color: #D4AF37;
}

.loading-spinner {
    text-align: center;
    padding: 20px;
    color: #666;
}

.no-dates-message {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.selected-dates-info {
    margin-top: 20px;
    padding: 15px;
    background-color: #F9F9F0;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
}

.selected-dates-info p:first-child {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.selected-dates-display {
    font-weight: 600;
}

.custom-date-request {
    text-align: center;
    margin-top: 30px;
}

.custom-date-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-date-btn:hover {
    background-color: #D4AF37;
    color: white;
}

/* Summary and Price */
.booking-summary,
.booking-price {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.booking-summary h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-label {
    color: #666;
}

.summary-value {
    font-weight: 500;
}

.price-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 18px;
}

.price-label {
    font-weight: 600;
}

.price-value {
    color: #0F2C59;
    font-weight: 700;
    font-size: 22px;
}

.price-info {
    font-size: 14px;
    color: #666;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.prev-step-btn,
.next-step-btn,
.submit-booking-btn,
.custom-date-btn {
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.prev-step-btn {
    background-color: #fff;
    color: #666;
    border: 1px solid #ddd;
}

.prev-step-btn:hover {
    background-color: #f5f5f5;
}

.next-step-btn {
    background-color: #0F2C59;
    color: white;
}

.next-step-btn:hover {
    background-color: #0a1e3d;
}

.next-step-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.submit-booking-btn {
    background-color: #D4AF37;
    color: #0F2C59;
}

.submit-booking-btn:hover {
    background-color: #C4A028;
}

/* Info Text */
.info-text {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.info-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #D4AF37;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
}

.info-icon:before {
    content: "i";
    position: absolute;
    top: 1px;
    left: 6px;
    color: white;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .transport-options {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .prev-step-btn,
    .next-step-btn,
    .submit-booking-btn {
        width: 100%;
    }
}