/* Form Styles - Shared between Booking and Order Forms */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Page Layout for Service Pages */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.site-footer {
    margin-top: auto;
    padding: 0.25rem 0;
}

/* Back Navigation */
.back-nav {
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    transform: translateX(-5px);
}

.back-btn i {
    font-size: 12px;
}

/* Modal Base Styles */
.booking-modal,
.order-modal,
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal.show,
.order-modal.show,
.modal-overlay.show {
    opacity: 1;
}

.booking-modal-content,
.order-modal-content,
.modal-content {
    background: #fff;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.order-modal-content {
    max-width: 900px;
}

.booking-modal.show .booking-modal-content,
.order-modal.show .order-modal-content,
.modal-overlay.show .modal-content {
    transform: scale(1);
}

/* Modal Header */
.booking-modal-header,
.order-modal-header,
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.booking-modal-header h2,
.order-modal-header h2,
.modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Modal Body */
.booking-modal-body,
.order-modal-body,
.modal-body {
    padding: 30px;
}

/* Service Details Styles */
.service-details {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.service-item i {
    width: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.service-item span {
    font-weight: 500;
}

/* Contact Methods Styles */
.contact-methods {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    color: white;
    text-decoration: none;
}

.contact-method i {
    width: 16px;
    text-align: center;
}

/* Inquiry Button Styles */
.inquiry-btn {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.inquiry-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.inquiry-btn i {
    font-size: 14px;
}

/* Inquiry Form Styles */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inquiry-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inquiry-form .form-group label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.inquiry-form .form-group input,
.inquiry-form .form-group select,
.inquiry-form .form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
    font-family: 'Raleway', sans-serif;
}

.inquiry-form .form-group input:focus,
.inquiry-form .form-group select:focus,
.inquiry-form .form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.inquiry-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Raleway', sans-serif;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-btn i {
    font-size: 16px;
}

/* Preview Sections */
.session-preview,
.image-preview {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.session-preview img,
.image-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.image-preview img {
    width: 100px;
    height: 100px;
}

.session-info h3,
.image-info h3 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 18px;
}

.session-info p,
.image-info p {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 14px;
}

.category-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Styles */
.booking-form,
.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-section {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    background: #fafafa;
}

.form-section h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

/* Success Styles */
.booking-success,
.order-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
    animation: successPulse 2s ease-in-out;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.booking-success h3,
.order-success h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.booking-success p,
.order-success p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.booking-summary,
.order-summary {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
    border-left: 4px solid #52c41a;
}

.booking-summary h4,
.order-summary h4 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.booking-summary p,
.order-summary p {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-modal-content,
    .order-modal-content,
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .booking-modal-header,
    .order-modal-header,
    .modal-header {
        padding: 20px;
    }
    
    .booking-modal-body,
    .order-modal-body,
    .modal-body {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .session-preview,
    .image-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .session-preview img,
    .image-preview img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .category-tag {
        margin-top: 10px;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Contact page responsive styles */
    .service-details {
        gap: 6px;
    }
    
    .service-item {
        font-size: 11px;
    }
    
    .contact-methods {
        gap: 8px;
    }
    
    .contact-method {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .inquiry-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .inquiry-form .form-group input,
    .inquiry-form .form-group select,
    .inquiry-form .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Scrollbar Styling */
.booking-modal-content::-webkit-scrollbar,
.order-modal-content::-webkit-scrollbar {
    width: 8px;
}

.booking-modal-content::-webkit-scrollbar-track,
.order-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.booking-modal-content::-webkit-scrollbar-thumb,
.order-modal-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.booking-modal-content::-webkit-scrollbar-thumb:hover,
.order-modal-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
} 

/* Print Ordering Modal Styles */

/* Modal Positioning - Ensure proper centering */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin: 0 auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: slideIn 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
}

/* Print Order Modal Background */
#print-order-modal .modal-content.print-order-modal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
    transition: background-image 0.5s ease-in-out;
    position: relative;
    color: white;
}

#print-order-modal .modal-content.print-order-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#print-order-modal .modal-content.print-order-modal > * {
    position: relative;
    z-index: 2;
}

/* Style form elements for dark background */
#print-order-modal .modal-content.print-order-modal .form-group label {
    color: #000 !important;
}

#print-order-modal .modal-content.print-order-modal .form-group input,
#print-order-modal .modal-content.print-order-modal .form-group select,
#print-order-modal .modal-content.print-order-modal .form-group textarea {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
    color: #000 !important;
}

#print-order-modal .modal-content.print-order-modal .form-group input:focus,
#print-order-modal .modal-content.print-order-modal .form-group select:focus,
#print-order-modal .modal-content.print-order-modal .form-group textarea:focus {
    background: rgba(255, 255, 255, 1) !important;
    border-color: rgba(0, 0, 0, 0.5) !important;
    color: #000 !important;
}

#print-order-modal .modal-content.print-order-modal .form-group input::placeholder,
#print-order-modal .modal-content.print-order-modal .form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.6) !important;
}

#print-order-modal .modal-content.print-order-modal h2 {
    color: white !important;
}

#print-order-modal .modal-content.print-order-modal .close {
    color: #000 !important;
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.phone-input-group select {
    flex: 0 0 auto;
    width: 80px;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
    color: #000 !important;
    border-radius: 8px;
    padding: 0.8rem;
    font-size: 0.9rem;
    text-align: center;
}

.phone-input-group input {
    flex: 1;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
    color: #000 !important;
    border-radius: 8px;
    padding: 0.8rem;
}

.phone-input-group select:focus,
.phone-input-group input:focus {
    background: rgba(255, 255, 255, 1) !important;
    border-color: rgba(0, 0, 0, 0.5) !important;
    color: #000 !important;
}

/* Shipping Button */
.shipping-button-container {
    text-align: center;
    padding: 1rem;
}

.shipping-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.shipping-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.shipping-status {
    margin-top: 1rem;
    color: #4CAF50;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.shipping-status i {
    font-size: 1.2rem;
}

/* Shipping Modal */
#shipping-modal .modal-content.shipping-modal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-color: transparent !important;
    transition: background-image 0.5s ease-in-out;
    position: relative;
    color: white;
}

#shipping-modal .modal-content.shipping-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

#shipping-modal .modal-content.shipping-modal > * {
    position: relative;
    z-index: 2;
}

/* Style form elements for dark background in shipping modal */
#shipping-modal .modal-content.shipping-modal .form-group label {
    color: #000 !important;
}

#shipping-modal .modal-content.shipping-modal .form-group input,
#shipping-modal .modal-content.shipping-modal .form-group select,
#shipping-modal .modal-content.shipping-modal .form-group textarea {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
    color: #000 !important;
}

#shipping-modal .modal-content.shipping-modal .form-group input:focus,
#shipping-modal .modal-content.shipping-modal .form-group select:focus,
#shipping-modal .modal-content.shipping-modal .form-group textarea:focus {
    background: rgba(255, 255, 255, 1) !important;
    border-color: rgba(0, 0, 0, 0.5) !important;
    color: #000 !important;
}

#shipping-modal .modal-content.shipping-modal .form-group input::placeholder,
#shipping-modal .modal-content.shipping-modal .form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.6) !important;
}

#shipping-modal .modal-content.shipping-modal h2 {
    color: white !important;
}

#shipping-modal .modal-content.shipping-modal .close {
    color: #000 !important;
}

/* Budget Range Styles */
.budget-range-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.multi-range {
    position: relative;
    height: 40px;
    margin-bottom: 1rem;
}

.multi-range input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    outline: none;
    pointer-events: none;
    -webkit-appearance: none;
}

.multi-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.multi-range input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.budget-display {
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
    color: white;
}

.success-message i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-message p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .phone-input-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .phone-input-group select {
        width: 100%;
    }
    
    .shipping-button-container {
        padding: 0.8rem;
    }
    
    .budget-range-container {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
        max-height: 90vh;
    }
    
    .phone-input-group select {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
    
    .phone-input-group input {
        padding: 0.6rem;
    }
    
    .shipping-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
} 

/* Error Field Styling */
.error-field {
    border-color: #ff4d4f !important;
    box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2) !important;
    background-color: rgba(255, 77, 79, 0.05) !important;
}

.error-field:focus {
    border-color: #ff4d4f !important;
    box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.3) !important;
}

/* Disabled Submit Button */
.submit-btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    background: linear-gradient(135deg, #d9d9d9 0%, #bfbfbf 100%) !important;
}

.submit-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Form Validation Feedback */
.form-group.error .form-label {
    color: #ff4d4f;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4d4f;
    box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
}

/* Success and Error Message Styles */
.success-message,
.error-message {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.success-message {
    background: linear-gradient(135deg, #52c41a 0%, #389e0d 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(82, 196, 26, 0.3);
}

.error-message {
    background: linear-gradient(135deg, #ff4d4f 0%, #cf1322 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 77, 79, 0.3);
}

.success-icon,
.error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.success-icon {
    color: #fff;
}

.error-icon {
    color: #fff;
}

.request-summary,
.order-summary {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: left;
}

.request-summary h4,
.order-summary h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.request-summary p,
.order-summary p {
    margin: 0.5rem 0;
    color: #fff;
}

.confirmation-email {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #fff;
}

.confirmation-email p {
    margin: 0;
    color: #fff;
    font-weight: 500;
}

.confirmation-email i {
    margin-right: 0.5rem;
    color: #fff;
}

.error-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.error-actions .cancel-btn,
.error-actions .submit-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.error-actions .cancel-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.error-actions .cancel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.error-actions .submit-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #cf1322;
}

.error-actions .submit-btn:hover {
    background: #fff;
}

/* Loading State Styles */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Booking Success Styles */
.booking-success,
.order-success {
    text-align: center;
    padding: 2rem;
    color: #333;
}

.booking-success .success-icon,
.order-success .success-icon {
    font-size: 3rem;
    color: #52c41a;
    margin-bottom: 1rem;
}

.booking-summary,
.order-summary {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: left;
}

.booking-summary h4,
.order-summary h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.booking-summary p,
.order-summary p {
    margin: 0.5rem 0;
    color: #333;
}

.order-details {
    background: #e6f7ff;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    border-left: 4px solid #1890ff;
}

.order-details p {
    margin: 0.25rem 0;
    color: #333;
}

/* Booking Error Styles */
.booking-error,
.order-error {
    text-align: center;
    padding: 2rem;
    color: #333;
}

.booking-error .error-icon,
.order-error .error-icon {
    font-size: 3rem;
    color: #ff4d4f;
    margin-bottom: 1rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.error-actions .btn-secondary,
.error-actions .btn-primary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.error-actions .btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.error-actions .btn-secondary:hover {
    background: #e0e0e0;
}

.error-actions .btn-primary {
    background: #1890ff;
    color: #fff;
}

.error-actions .btn-primary:hover {
    background: #096dd9;
} 