/* Contact Info - Style Élégant avec fond crème */
.contact-info {
    background: linear-gradient(135deg, #F8F4ED 0%, #eef3e4 100%);
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 12px 34px rgba(46, 89, 132, 0.09);
    border: none;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(111, 167, 67, 0.12);
    top: -100px;
    right: -70px;
    z-index: 0;
}

.contact-info > * {
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2E5984;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(111, 167, 67, 0.2);
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #6FA743, #8BC34A);
    border-radius: 2px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 45px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* Effet de surbrillance au survol */
.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(111, 167, 67, 0.1), transparent);
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #6FA743;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(111, 167, 67, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6FA743, #8BC34A);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(111, 167, 67, 0.25);
}

.contact-item:hover .contact-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(111, 167, 67, 0.35);
}

.contact-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2E5984;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.contact-text a {
    color: #2E5984;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    position: relative;
    padding-left: 24px;
}

.contact-text a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background: #6FA743;
}

.contact-text a:hover {
    color: #6FA743;
    padding-left: 30px;
}

.contact-text a:hover::before {
    width: 24px;
}

.contact-text p {
    color: #5D7592;
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

.schedule {
    font-size: 15px;
    color: #6FA743;
    margin-top: 8px;
    font-weight: 500;
    display: inline-block;
    background: rgba(111, 167, 67, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(111, 167, 67, 0.2);
}

/* Animations */
@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info {
        padding: 30px;
        border-radius: 16px;
    }
    
    .contact-info h2 {
        font-size: 26px;
        margin-bottom: 28px;
        padding-bottom: 16px;
    }
    
    .contact-item {
        padding: 20px;
        gap: 18px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin: 0 auto;
    }
    
    .contact-text a {
        padding-left: 0;
        text-align: center;
    }
    
    .contact-text a::before {
        display: none;
    }
    
    .contact-text a:hover {
        padding-left: 0;
    }
}

/* Effet de brillance sur les bordures */
.contact-info {
    position: relative;
}

.contact-info::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #6FA743, #8BC34A, #6FA743);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.1;
    filter: blur(5px);
}