/* Container */
.order-form-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 5px solid #0073aa;
    font-family: 'BNazanin', 'Tahoma', sans-serif; /* Font Applied Here */
    direction: rtl;
}

/* Success/Error Messages */
.order-message {
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.6;
}

.order-message.success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-right: 5px solid #166534;
}

.order-message.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-right: 5px solid #991b1b;
}

/* Form Elements */
form.tech-order-form {
    display: grid;
    gap: 20px;
}

form.tech-order-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 15px;
}

/* Inputs & Selects */
form.tech-order-form input[type="text"],
form.tech-order-form input[type="email"],
form.tech-order-form select,
form.tech-order-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'BNazanin', 'Tahoma', sans-serif !important; /* Force Font */
    background-color: #f9fafb;
    transition: all 0.3s ease;
    box-sizing: border-box;
    color: #1f2937;
}

/* Placeholder Styling */
form.tech-order-form input::placeholder,
form.tech-order-form textarea::placeholder {
    font-family: 'BNazanin', 'Tahoma', sans-serif;
    color: #9ca3af;
    opacity: 1;
}

/* Dropdown Options */
form.tech-order-form select option {
    font-family: 'BNazanin', 'Tahoma', sans-serif;
    padding: 10px;
}

/* Focus State */
form.tech-order-form input:focus,
form.tech-order-form select:focus,
form.tech-order-form textarea:focus {
    background-color: #fff;
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 115, 170, 0.1);
}

/* Layout */
@media (min-width: 600px) {
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

/* Button */
form.tech-order-form button.submit-btn {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-family: 'BNazanin', 'Tahoma', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    font-weight: bold;
    margin-top: 10px;
}

form.tech-order-form button.submit-btn:hover {
    background-color: #005177;
    transform: translateY(-1px);
}

form.tech-order-form button.submit-btn:active {
    transform: translateY(1px);
}

.turnstile-container {
    margin: 15px 0;
}