/* تحسينات صفحة الاتصال */

/* تحسين تنسيق الفورم */
.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

/* تحسين حقول الإدخال */
.form-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    font-size: 16px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #36A3CA;
    box-shadow: 0 0 0 0.2rem rgba(54, 163, 202, 0.25);
}

/* تحسين زر الإرسال */
.btn-primary {
    background-color: #36A3CA;
    border-color: #36A3CA;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2a8bb3;
    border-color: #2a8bb3;
    transform: translateY(-2px);
}

/* تحسين قسم معلومات الاتصال */
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-icon {
    background: #36A3CA;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
}

.contact-details h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* تحسين الروابط الاجتماعية */
.social-links h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #36A3CA;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #2a8bb3;
    transform: translateY(-3px);
    color: white;
}

.social-icon i {
    font-size: 18px;
}

/* تحسين رسائل النجاح والخطأ */
.alert {
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

/* تحسين الفوتر */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    padding: 40px 0 20px 0 !important;
}

footer h5 {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 20px !important;
}

footer p {
    font-size: 16px !important;
    color: #bdc3c7 !important;
    line-height: 1.6 !important;
}

footer .list-unstyled li {
    margin-bottom: 8px;
}

footer .list-unstyled a {
    font-size: 16px !important;
    color: #bdc3c7 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .list-unstyled a:hover {
    color: #36A3CA !important;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #36A3CA;
    color: white;
    border-radius: 50%;
    margin-left: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background: #2a8bb3;
    transform: translateY(-2px);
}

footer .social-links i {
    font-size: 16px;
}

footer hr {
    border-color: #34495e;
    margin: 30px 0 20px 0;
}

footer .text-center p {
    font-size: 14px !important;
    color: #95a5a6 !important;
    margin: 0 !important;
}

/* تحسين الخريطة */
.map-section {
    margin-top: 0;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* تحسين responsive */
@media (max-width: 768px) {
    .contact-form, .contact-info {
        margin-bottom: 30px;
    }
    
    .contact-form h3 {
        font-size: 24px;
    }
    
    .contact-info h3 {
        font-size: 20px;
    }
    
    .form-label {
        font-size: 15px;
    }
    
    .form-control {
        font-size: 15px;
    }
    
    .btn-primary {
        font-size: 16px;
        width: 100%;
    }
}