.elementor-23 .elementor-element.elementor-element-a5e3607{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-3d27926 *//* الفورم كله */
.forminator-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: #FFFFFF; /* أبيض ناصع */
    font-family: 'Inter', 'Roboto', sans-serif;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
}

/* عنوان الفورم */
.forminator-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFB300; /* اللون المميز */
    text-align: center;
    margin-bottom: 10px;
}

/* العنوان الفرعي */
.forminator-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #333333;
    text-align: center;
    margin-bottom: 20px;
}

/* تسميات الحقول */
.forminator-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000; /* أسود واضح */
    margin-bottom: 6px;
    display: block;
}

/* وصف الحقول */
.forminator-description {
    font-size: 0.85rem;
    color: #555555; /* رمادي خفيف */
    margin-bottom: 12px;
}

/* الحقول مربعة حادة */
.forminator-input,
.forminator-textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid #FFB300; /* اللون المميز للحدود */
    border-radius: 0; /* مربعة حادة */
    outline: none;
    background-color: #FFFFFF;
    color: #1a1a1a;
    box-sizing: border-box;
    transition: border 0.3s ease, background 0.3s ease;
}

/* التركيز على الحقول */
.forminator-input:focus,
.forminator-textarea:focus {
    border: 2px solid #FFB300;
    background-color: #FFFFFF;
}

/* textarea تخصيص */
.forminator-textarea {
    min-height: 120px;
    resize: none;
}

/* زر الإرسال احترافي عالي الجودة */
.forminator-button {
    padding: 16px 25px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0; /* مربعة حادة */
    border: 2px solid #FFB300; /* إطار أصفر مميز */
    background: linear-gradient(90deg, #FFB300 0%, #e6a100 100%); /* Gradient عصري */
    color: #000000; /* نص أسود واضح */
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 179, 0, 0.3); /* ظل خفيف احترافي */
}

/* تأثير عند التحويم */
.forminator-button:hover {
    background: linear-gradient(90deg, #e6a100 0%, #FFB300 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 14px rgba(255, 179, 0, 0.5); /* ظل أعمق عند hover */
}

/* Responsive - الموبايل */
@media (max-width: 600px) {
    .forminator-form {
        padding: 20px;
        gap: 15px;
    }
    
    .forminator-title {
        font-size: 1.5rem;
    }
    
    .forminator-subtitle {
        font-size: 0.9rem;
    }
    
    .forminator-input,
    .forminator-textarea {
        padding: 12px 15px;
    }
    
    .forminator-button {
        padding: 12px;
        font-size: 0.95rem;
    }
}/* End custom CSS */