/* لف الفورم كله */
.acf-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', sans-serif;
}

/* عنوان النموذج (لو موجود) */
.acf-form h3 {
    margin-bottom: 25px;
    font-size: 24px;
    color: #333;
}

/* كل مجموعة حقول */
.acf-fields {
    margin: 0;
}

/* كل حقل فردي */
.acf-field {
    margin-bottom: 20px !important;
}

/* عنوان الحقل */
.acf-label label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
}

/* المدخلات */
.acf-input input[type="text"],
.acf-input input[type="email"],
.acf-input input[type="file"],
.acf-input textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    background: #fff;
    transition: border-color 0.3s;
}

.acf-input input:focus,
.acf-input textarea:focus {
    border-color: #00b48a;
    outline: none;
}

/* زر الإرسال */
.acf-form input[type="submit"] {
    background: #00b48a;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.acf-form input[type="submit"]:hover {
    background: #009e77;
}
