﻿




.op-contact {
    padding: 100px 0;
/*    background: linear-gradient(160deg, #3a4d5c 0%, #53687a 40%, #6b8296 100%);*/
  background:  linear-gradient(135deg,var(--secondary-color) 0%,var(--primary-color) 100%);
}

.op-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.op-contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}

.op-contact-info > p {
    font-size: 15px;
    color: rgba(255,255,255,.6);
    line-height: 1.9;
    margin-bottom: 36px;
}

.op-contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.op-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.op-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--base-bg);
}

.op-contact-item div strong {
    display: block;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2px;
}

.op-contact-item div span {
    font-size: 14px;
    color: rgba(255,255,255,.6);
}

/* Contact Form */
.op-contact-form {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 36px;
    backdrop-filter: blur(16px);
}

.op-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.op-form-group {
    margin-bottom: 16px;
}

    .op-form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: rgba(255,255,255,.7);
        margin-bottom: 8px;
    }

    .op-form-group input, .op-form-group textarea, .op-form-group select {
        width: 100%;
        padding: 12px 16px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 12px;
        color: #fff;
        font-size: 14px;
        font-family: inherit;
        outline: none;
        transition: border-color .3s;
        -webkit-appearance: none;
    }

        .op-form-group input::placeholder, .op-form-group textarea::placeholder {
            color: rgba(255,255,255,.3);
        }

        .op-form-group input:focus, .op-form-group textarea:focus, .op-form-group select:focus {
            border-color: var(--base-bg);
        }

    .op-form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .op-form-group select {
        cursor: pointer;
    }

        .op-form-group select option {
            background: #3a4d5c;
            color: #fff;
        }

.op-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #fff;
    color: #53687a;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all .3s;
}

    .op-submit-btn:hover {
        background: var(--base-bg);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(15,191,174,.3);
    }
/* حاوية الكابتشا لتشبه حقول الإدخال */
.captcha-container-contact {
    display: flex;
    justify-content: flex-start; /* ليكون بمحاذاة اليمين أو اليسار حسب لغة الموقع */
    margin-top: 15px;
}

#captcha-modal3 {
    background: rgba(255, 255, 255, 0.05); /* شفافية زجاجية */
    backdrop-filter: blur(5px); /* تأثير الضبابية */
    border: 1px solid rgba(255, 255, 255, 0.1); /* حدود ناعمة مثل الحقول */
    border-radius: 12px;
    padding: 8px;
    display: inline-block;
    /* تغيير الحجم ليتناسب مع عرض الحقول في الصورة */
    transform: scale(0.9);
    transform-origin: right top; /* اجعلها left top إذا كان الموقع بالإنجليزية */
}

/* إخفاء خلفية جوجل البيضاء القوية وإظهار خلفية المودال */
.rc-anchor-dark {
    background: transparent !important;
    border: none !important;
}
/* حل مشكلة الإملاء التلقائي لجميع المتصفحات */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    /* تجعل الخلفية شفافة عبر استخدام ظل داخلي يطابق لون الحقل */
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.05) inset !important;
    /* لون النص الذي يظهر عند الإملاء التلقائي */
    -webkit-text-fill-color: #ffffff !important;
    /* انتقال تدريجي لمنع الوميض الأبيض */
    transition: background-color 5000s ease-in-out 0s;
}