/* تحسينات قسم اتصل بنا - Enhanced Contact Section Styles
   تنسيقات مخصصة لقسم اتصل بنا وعرضه بشكل أكثر جاذبية
*/

/* قسم الاتصال */
.contact-section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-card {
    background: linear-gradient(135deg, #0a3a78 0%, #1a5baa 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* معلومات الاتصال */
.contact-info {
    padding: 0;
    background: linear-gradient(135deg, #0a3a78 0%, #1a5baa 100%);
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: #fff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 24px;
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-text {
    flex-grow: 1;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-text p, .contact-text a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: #fff;
    color: #0a3a78;
    transform: translateY(-5px);
}

/* نموذج الاتصال */
.contact-form {
    padding: 40px;
}

.contact-form h3 {
    font-size: 26px;
    color: #0a3a78;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #0a3a78 0%, #1a5baa 100%);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #0a3a78;
    box-shadow: 0 0 0 3px rgba(10, 58, 120, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, #0a3a78 0%, #1a5baa 100%);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(10, 58, 120, 0.2);
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 58, 120, 0.3);
}

/* خريطة الموقع */
.contact-map {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* تنسيقات للشاشات الصغيرة */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info, .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-info h3, .contact-form h3 {
        font-size: 22px;
    }
    
    .contact-map {
        height: 300px;
    }
}
