/* فرم اصلی */
#soheil-contact-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    font-family: sans-serif;
}

/* لیبل‌ها */
#soheil-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #000; /* متن لیبل مشکی */
}

/* فیلدهای ورودی */
#soheil-contact-form input,
#soheil-contact-form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    color: #000 !important;       /* متن داخل فیلد مشکی */
    background: #fff !important;  /* پس‌زمینه سفید */
}

/* placeholder ها */
#soheil-contact-form input::placeholder,
#soheil-contact-form select::placeholder {
    color: #666 !important;       /* خاکستری تیره برای placeholder */
}

/* افکت focus روی فیلدها */
#soheil-contact-form input:focus,
#soheil-contact-form select:focus {
    border-color: #00b4d8;
    outline: none;
    box-shadow: 0 0 6px rgba(0,180,216,0.4);
}

/* دکمه ارسال – شیک و مشخص */
#soheil-contact-form button {
    display: block;
    background: #00b4d8 !important;   /* آبی شیک */
    color: #fff !important;           /* متن سفید */
    border: none !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;    /* گوشه گرد */
    cursor: pointer !important;
    width: auto !important;           /* جلوگیری از کشیده شدن */
    font-weight: 600 !important;
    text-align: center !important;
    margin: 0 auto !important;        /* وسط‌چین */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    line-height: 1.4 !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
}

#soheil-contact-form button:hover {
    background: #0096c7 !important;
    transform: translateY(-2px) !important;
}

/* پیام موفقیت/خطا */
#soheil-form-message {
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
    color: #023e8a; /* رنگ پیام */
}
