/* Make Order Page Styles */

/* Back Navigation */
.nav-bar {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
}

.nav-bar .btn {
    height: 16px !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    font-size: 1.4rem !important;
    color: #293189 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    transition: color 0.3s ease !important;
    text-transform: none !important;
    border-radius: 0 !important;
}

.nav-bar .btn:hover {
    transform: none !important;
    color: #1f2370 !important;
    text-decoration: none !important;
}

.nav-bar .btn .icon-left {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Order Form Container */
.order-form-container {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 4rem;
    margin-top: 6rem;
    max-width: 80rem;
    width: 95%;
    border-radius: 5px;
    margin: 5rem auto 0 auto;
}

@media only screen and (max-width: 37.5em) {
    .order-form-container {
        padding: 3rem;
    }
}

/* Form Sections */
.form-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.section-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Form Fields */
.form-field {
    margin-bottom: 3rem;
}

/* Error Messages */
.error-message {
    color: #e74c3c;
    font-size: 1.4rem;
    margin-top: 0.5rem;
    font-weight: 600;
    display: none;
}

.error-message.show {
    display: block;
}

/* Error state for form inputs */
.form-input.error,
.form-select.error {
    border-color: #e74c3c;
    background: #fdf2f2;
}

.form-label {
    color: #666;
    font-size: 1.4rem;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    text-align: left;
}

.form-input {
    color: #333;
    padding: 2rem;
    width: 100%;
    border: 1px solid #ebebeb;
    font-size: 1.6rem;
    letter-spacing: 0px;
    background: #f0f0f0;
    border-radius: 5px;
    font-weight: 600;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #293189;
    background: #fff;
}

/* Select Dropdowns */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 2rem center;
    background-size: 16px;
    padding-right: 4rem;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 1.6rem;
    color: #333;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #293189;
}

.radio-text {
    font-weight: 600;
}

/* Submit Button */
.form-submit {
    text-align: right;
    margin-top: 3rem;
}

.form-submit .btn {
    width: 30%;
    padding: 2rem 4rem;
    font-size: 1.6rem;
}

@media only screen and (max-width: 37.5em) {
    .form-submit .btn {
        width: 100%;
    }
}

/* Alternative Contact Section */
.alternative-contact {
    background: #FFF9E8;
    padding: 3rem;
    margin: 4rem auto;
    border-radius: 5px;
    text-align: center;
    max-width: 80rem;
    width: 95%;
}

.alternative-contact p {
    color: #424242;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-options {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #424242;
    flex: 1;
    justify-content: flex-start;
}

.contact-icon {
    width: 2rem;
    height: 2rem;
    color: #424242;
    stroke: #424242;
}

.contact-option span {
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-option span:first-of-type {
    font-weight: 700;
    color: #424242;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

/* Responsive Design */
@media only screen and (max-width: 56.25em) {
    .contact-options {
        flex-direction: column;
        gap: 2rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
    

}

@media only screen and (max-width: 37.5em) {
    .order-form-container {
        margin: 3rem auto 0 auto;
        padding: 2rem;
    }
    
    .alternative-contact {
        padding: 2rem;
        margin: 3rem auto;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .form-input {
        padding: 1.5rem;
        font-size: 1.4rem;
    }
    
    .form-label {
        font-size: 1.3rem;
    }
}
