/* Clean Step-by-Step Booking Form */

/* Step Headers */
.step-header-simple {
    display: flex;
    align-items: center;
    padding: 12px 0;
    margin-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

/* Booking Steps */
.booking-step {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-bottom: 24px;
    overflow: hidden;
}

.step-header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.step-number-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #4285f4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}

.step-info {
    flex: 1;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 2px 0;
}

.step-description {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

.step-content {
    padding: 24px;
}

/* Package Options */
.package-option {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 16px;
    background: #ffffff;
}

.package-option:last-child {
    margin-bottom: 0;
}

.option-header {
    margin-bottom: 16px;
}

.option-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.option-subtitle {
    font-size: 12px;
    color: #666;
}

/* Price Display */
.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

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

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
}

.current-price {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.price-unit {
    font-size: 12px;
    color: #666;
}

/* Controls */
.option-controls,
.guest-selection,
.date-time-selection {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.control-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.control-group label,
.field-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background: #ffffff;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #f8f9fa;
    border-color: #4285f4;
    color: #4285f4;
}

.qty-display {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

/* Date and Time Selection */
.date-picker,
.time-picker {
    flex: 1;
}

.date-input {
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 12px 16px;
    background: #ffffff;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    margin-top: 8px;
}

.date-input:hover {
    border-color: #4285f4;
}

.time-select {
    width: 100%;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 12px 16px;
    background: #ffffff;
    font-size: 16px;
    color: #333;
    margin-top: 8px;
}

.time-select:focus {
    outline: none;
    border-color: #4285f4;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.1);
}

.booking-notice {
    margin-top: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
}

/* Step 4 Sections */
.extras-section,
.booking-summary,
.fees-section,
.total-section {
    margin-bottom: 24px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
}

/* Extra Items */
.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.extra-item:last-child {
    border-bottom: none;
}

.extra-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex: 1;
}

.extra-checkbox input[type="checkbox"] {
    margin-right: 8px;
}

.extra-name {
    font-size: 14px;
    color: #333;
}

.extra-price {
    font-weight: 600;
    color: #333;
}

/* Summary Items */
.summary-item,
.fee-item,
.total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-item .price,
.fee-amount,
.total-price {
    font-weight: 600;
    color: #333;
}

.total-item {
    border-top: 2px solid #e8e8e8;
    padding-top: 16px;
    margin-top: 16px;
    font-size: 16px;
}

.total-label {
    font-weight: 600;
    color: #333;
}

.total-price {
    font-size: 18px;
    font-weight: 700;
    color: #4285f4;
}

/* Checkout Button */
.checkout-button {
    margin-top: 24px;
}

.btn-checkout {
    width: 100%;
    background: #4285f4;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-checkout:hover:not(.disabled) {
    background: #3367d6;
}

.btn-checkout.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.alert-message {
    margin-top: 12px;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
}

.alert-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-message.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.error-message {
    color: #dc2626;
    font-size: 12px;
    margin-top: 8px;
    padding: 8px 12px;
    background: #fef2f2;
    border-radius: 4px;
    border: 1px solid #fecaca;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-progress {
        padding: 16px;
    }
    
    .progress-steps {
        max-width: 100%;
    }
    
    .step-item .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .step-item .step-label {
        font-size: 11px;
    }
    
    .step-header {
        padding: 16px 20px;
    }
    
    .step-number-circle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-description {
        font-size: 13px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .package-option {
        padding: 16px;
    }
    
    .control-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .quantity-controls {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .booking-progress {
        padding: 12px;
    }
    
    .step-header {
        padding: 12px 16px;
    }
    
    .step-content {
        padding: 16px;
    }
    
    .package-option {
        padding: 12px;
    }
    
    .price-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Compact Form Overrides */
.searchMenu-guests {
    padding: 8px 12px !important;
}

.guest-wrapper .searchMenu-guests {
    margin-bottom: 0;
}

.row.y-gap-10 > .col-12 {
    margin-bottom: 6px;
}

.row.y-gap-10 > .col-12:last-child {
    margin-bottom: 0;
}

/* Compact text sizes */
.text-16.fw-500 {
    font-size: 14px !important;
}

.text-15 {
    font-size: 13px !important;
}

.mb-15 {
    margin-bottom: 6px !important;
}

.mb-10 {
    margin-bottom: 4px !important;
}

.py-10 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

.px-20 {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

/* Compact buttons */
.button.size-30 {
    width: 26px !important;
    height: 26px !important;
}

.text-10 {
    font-size: 8px !important;
}

.mx-10 {
    margin-left: 6px !important;
    margin-right: 6px !important;
}

.w-24 {
    width: 36px !important;
}

/* Compact main container */
#bravo_boat_book_app {
    padding: 16px 20px !important;
}

/* Compact form sections */
.form-section-group {
    padding: 8px 12px !important;
}

/* Compact step headers */
.step-header-simple {
    padding: 6px 0 !important;
    margin-bottom: 6px !important;
}

/* Compact error messages */
.text-danger {
    font-size: 11px !important;
    margin-top: 4px !important;
}

/* Compact price displays */
.price-display {
    margin-bottom: 6px !important;
    padding-bottom: 6px !important;
}

.border-bottom-light {
    border-bottom: 1px solid #f0f0f0 !important;
}

/* Ultra compact overrides */
.step-title {
    font-size: 15px !important;
    margin-bottom: 1px !important;
}

.step-description {
    font-size: 12px !important;
}

.step-number-circle {
    width: 32px !important;
    height: 32px !important;
    font-size: 13px !important;
    margin-right: 10px !important;
}

/* Compact form controls */
.form-control {
    padding: 6px 10px !important;
    font-size: 13px !important;
}

/* Compact alert text */
.alert-text {
    font-size: 14px !important;
    margin-top: 4px !important;
    padding: 4px 8px !important;
}

/* Compact submit button */
.submit-group .button {
    padding: 12px 24px !important;
    font-size: 14px !important;
}

/* ========== BEAUTIFUL UX ENHANCEMENTS ========== */

/* Enhanced Main Container */
#bravo_boat_book_app {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 1px solid #e3e6ea !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px !important;
    position: relative;
    overflow: hidden;
}

/* #bravo_boat_book_app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
} */

/* Beautiful Step Headers */
.step-header-simple {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    margin-bottom: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease !important;
}

.step-header-simple:hover {
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.1) !important;
    transform: translateY(-1px) !important;
}

/* Enhanced Step Number Circle */
.step-number-circle {
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%) !important;
    box-shadow: 0 3px 8px rgba(66, 133, 244, 0.3) !important;
    border: 2px solid #ffffff !important;
    transition: all 0.3s ease !important;
}

.step-header-simple:hover .step-number-circle {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4) !important;
}

/* Beautiful Form Sections */
.searchMenu-guests {
    background: #ffffff !important;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease !important;
}

.searchMenu-guests:hover {
    border-color: #4285f4 !important;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.1) !important;
    transform: translateY(-1px) !important;
}

/* Enhanced Typography */
.step-title {
    color: #1a202c !important;
    font-weight: 600 !important;
    letter-spacing: -0.025em !important;
}

.step-description {
    color: #64748b !important;
    font-weight: 400 !important;
}

.text-16.fw-500,
.text-15.fw-500 {
    color: #2d3748 !important;
    font-weight: 500 !important;
}

/* Beautiful Buttons */
.button.-outline-blue-1 {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 1.5px solid #4285f4 !important;
    color: #4285f4 !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 4px rgba(66, 133, 244, 0.1) !important;
}

.button.-outline-blue-1:hover {
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.25) !important;
}

.button.-outline-blue-1:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 4px rgba(66, 133, 244, 0.2) !important;
}

/* Enhanced Form Controls */
.form-control {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 6px !important;
    color: #2d3748 !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.form-control:focus {
    border-color: #4285f4 !important;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1) !important;
    outline: none !important;
}

.form-control:hover {
    border-color: #cbd5e0 !important;
}

/* Beautiful Price Display */
.price-display {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%) !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
    border: 1px solid #e2e8f0 !important;
}

.price-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.fw-500 {
    color: #2d3748 !important;
    font-weight: 600 !important;
}

.old-price {
    color: #a0aec0 !important;
}

/* Enhanced Checkboxes */
.form-checkbox {
    position: relative !important;
}

.form-checkbox__mark {
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 4px !important;
    background: #ffffff !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.form-checkbox input:checked + .form-checkbox__mark {
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%) !important;
    border-color: #4285f4 !important;
    box-shadow: 0 2px 4px rgba(66, 133, 244, 0.2) !important;
}

.form-checkbox__icon {
    color: #ffffff !important;
    font-size: 10px !important;
}

/* Beautiful Submit Button */
.submit-group .button.-dark-1 {
    background: linear-gradient(135deg, #1a73e8 0%, #3653D1 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    letter-spacing: 0.025em !important;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3) !important;
    transition: all 0.3s ease !important;
}

.submit-group .button.-dark-1:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(66, 133, 244, 0.4) !important;
}

.submit-group .button.-dark-1:active {
    transform: translateY(-1px) !important;
}

/* Enhanced Error Messages */
.text-danger {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%) !important;
    color: #c53030 !important;
    border-radius: 4px !important;
    border: 1px solid #fc8181 !important;
    font-weight: 500 !important;
}

/* Beautiful Alert Messages */
.alert-text {
    border-radius: 6px !important;
    font-weight: 500 !important;
    border: 1px solid !important;
}

.alert-text.success {
    background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%) !important;
    color: #22543d !important;
    border-color: #68d391 !important;
}

.alert-text.danger {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%) !important;
    color: #c53030 !important;
    border-color: #fc8181 !important;
}

/* Smooth Animations - Removed global transition */

/* Loading State */
.fa-spinner {
    animation: spin 1s linear infinite !important;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    #bravo_boat_book_app {
        border-radius: 8px !important;
        margin: 8px !important;
    }
    
    .step-header-simple {
        padding: 10px 12px !important;
    }
    
    .searchMenu-guests {
        padding: 6px 10px !important;
    }
}
