/* الأنماط العامة للصفحة */
.contact-us-section {
    padding: 60px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-us-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 10px;
}

.contact-us-section .lead-paragraph {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
}

/* تنسيقات بطاقات الاتصال */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #343a40;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.contact-card p a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

/* تنسيقات وسائل التواصل الاجتماعي */
.social-media-contact h2 {
    font-size: 2rem;
    color: #343a40;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    font-size: 1.8rem;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a[aria-label="فيسبوك"] {
    background-color: #3b5998;
}
.social-links a[aria-label="فيسبوك"]:hover {
    background-color: #2d4373;
}

.social-links a[aria-label="تويتر"] {
    background-color: #1da1f2;
}
.social-links a[aria-label="تويتر"]:hover {
    background-color: #0c85d0;
}

.social-links a[aria-label="انستغرام"] {
    background: #e1306c;
}
.social-links a[aria-label="انستغرام"]:hover {
    background: #c1255e;
}

.social-links a[aria-label="لينكد إن"] {
    background-color: #0077b5;
}
.social-links a[aria-label="لينكد إن"]:hover {
    background-color: #005f93;
}