/* Contact Section */
.contact-section {
    padding: 8rem 0 5rem;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.contact-section h1 {
    font-size: 3rem;
    color: var(--pakistan-green);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Map */
.contact-map {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
    width: 100%;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--pakistan-green);
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-card a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--pakistan-green);
    text-decoration: underline;
}

/* Horaires */
.horaires {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.horaire-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.horaire-item:last-child {
    border-bottom: none;
}

.jour {
    font-weight: 500;
    color: var(--pakistan-green);
}

.heure {
    color: #555;
}

/* Social Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--pakistan-green);
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--tigers-eye);
    transform: scale(1.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 6rem 0 3rem;
    }

    .contact-section h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-map {
        margin-bottom: 2rem;
    }

    .contact-map iframe {
        height: 300px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
