<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Styles personnalisÃ©s pour la page contact */

/* Animation des champs du formulaire */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(38, 92, 75, 0.25) !important;
    border-color: var(--secondary) !important;
    transition: all 0.3s ease;
}

/* Style des cartes */
.card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Style spÃ©cifique pour la carte des coordonnÃ©es */
.col-md-5 .card {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-image: url('../img/contact-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Image vectorielle en arriÃ¨re-plan */
.col-md-5 .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: -1;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.col-md-5 .card:hover::before {
    opacity: 0.25;
}

/* Style des icÃ´nes circulaires */
.rounded-circle {
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.card:hover .rounded-circle {
    background-color: var(--secondary) !important;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.card:hover .rounded-circle i {
    color: white !important;
}

/* AmÃ©lioration des informations de contact */
.col-md-5 .card h5 {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.col-md-5 .card:hover h5 {
    color: var(--secondary);
    transform: translateX(5px);
}

.col-md-5 .card a {
    position: relative;
    transition: all 0.3s ease;
}

.col-md-5 .card a:hover {
    color: var(--secondary) !important;
    text-decoration: none;
}

.col-md-5 .card a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.col-md-5 .card a:hover::after {
    width: 100%;
}

/* Style du bouton d'envoi */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Style des rÃ©seaux sociaux */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: var(--secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(38, 92, 75, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
    
    .social-icons a {
        margin: 0 5px;
    }
}

/* Animation d'entrÃ©e des Ã©lÃ©ments */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.5s ease-out forwards;
}

.col-md-5 .card {
    animation-delay: 0.2s;
}

.col-md-7 .card {
    animation-delay: 0.4s;
}</pre></body></html>