/* استایل فرم تماس با ما - آهولرن */

.ahu-contact-form-wrap {
    width: 100%;
    direction: rtl;
    font-family: 'IRANSans', 'IRANSansWeb', Vazirmatn, Tahoma, sans-serif;
}

.ahu-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ahu-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ahu-form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ahu-form-field label {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.ahu-required {
    color: #dc2626;
}

.ahu-optional {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 400;
}

.ahu-form-field input,
.ahu-form-field select,
.ahu-form-field textarea {
    width: 100%;
    min-height: 51px;
    padding: 12px 15px;
    color: #0f172a;
    background: #fbfdfe;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    font-size: 14px;
}

.ahu-form-field input::placeholder,
.ahu-form-field textarea::placeholder {
    color: #94a3b8;
}

.ahu-form-field input:focus,
.ahu-form-field select:focus,
.ahu-form-field textarea:focus {
    background: #ffffff;
    border-color: #0f766e;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.ahu-form-field textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.7;
}

.ahu-form-actions {
    margin-top: 8px;
}

.ahu-submit-btn {
    min-width: 165px;
    min-height: 52px;
    padding: 12px 23px;
    color: #ffffff;
    background: #0f766e;
    border: 0;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(15, 118, 110, 0.22);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    font-family: inherit;
}

.ahu-submit-btn:hover {
    transform: translateY(-2px);
    background: #115e59;
    box-shadow: 0 16px 35px rgba(15, 118, 110, 0.28);
}

.ahu-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.ahu-form-message {
    padding: 0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.9;
    transition: all 0.3s ease;
    min-height: 0;
    overflow: hidden;
}

.ahu-form-message.show {
    padding: 14px 16px;
    margin-top: 8px;
}

.ahu-form-message.success {
    color: #15803d;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.ahu-form-message.error {
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .ahu-form-row {
        grid-template-columns: 1fr;
    }

    .ahu-submit-btn {
        width: 100%;
    }
}
