/* Styles personnalisés pour EXAINE-CONSULTING */

/* Variables CSS personnalisées */
:root {
    --exaine-blue: #074FAF;
    --exaine-yellow: #FFED00;
    --exaine-dark-blue: #053a7a;
    --exaine-light-blue: #e6f0ff;
}

/* Styles pour les étapes du processus */
.process-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--exaine-blue);
    color: var(--exaine-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 8px rgba(7, 79, 175, 0.3);
}

.process-arrow {
    display: flex;
    align-items: center;
    margin: 0 1rem;
}

/* Styles pour les cartes de services */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Styles pour les images de l'équipe */
.team-member img {
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

/* Styles pour le formulaire de contact */
.form-input:focus {
    border-color: var(--exaine-blue);
    box-shadow: 0 0 0 3px rgba(7, 79, 175, 0.1);
    outline: none;
}

/* Styles pour les boutons */
.btn-primary {
    background: var(--exaine-blue);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--exaine-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 79, 175, 0.3);
}

.btn-secondary {
    background: var(--exaine-yellow);
    color: var(--exaine-blue);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 237, 0, 0.3);
}

/* Styles pour les sections */
.section-padding {
    padding: 4rem 0;
}

.section-title {
    color: var(--exaine-blue);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

/* Styles pour les cartes d'expertise */
.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

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

.expertise-icon {
    font-size: 3rem;
    color: var(--exaine-blue);
    margin-bottom: 1rem;
}

/* Styles pour la navigation mobile */
.mobile-menu {
    display: none;
    background: var(--exaine-blue);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

/* Styles pour les animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Styles pour les messages de formulaire */
.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Styles pour la carte Google Maps */
#map {
    height: 400px;
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Styles pour les icônes de contact */
.contact-icon {
    background: var(--exaine-blue);
    color: var(--exaine-yellow);
    padding: 1rem;
    border-radius: 50%;
    margin-right: 1rem;
    min-width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styles pour le QR Code WhatsApp */
.whatsapp-section {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.whatsapp-button {
    background: #25d366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Styles responsifs */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .process-arrow {
        display: none;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Styles pour les liens d'ancrage */
html {
    scroll-behavior: smooth;
}

/* Styles pour les images de projets */
.project-image {
    transition: transform 0.3s ease;
}

.project-image:hover {
    transform: scale(1.05);
}

/* Styles pour les certificats */
.certification-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--exaine-blue);
}

/* Styles pour les valeurs */
.value-card {
    text-align: center;
    padding: 2rem 1rem;
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: var(--exaine-blue);
    color: var(--exaine-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

/* Styles pour les cartes de réalisations */
.realisation-card {
    height: 100%;
}

.realisation-card .bg-white {
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.realisation-card .p-6 {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.realisation-card .flex-grow {
    flex: 1;
}

.realisation-card .mt-auto {
    margin-top: auto;
}

/* Responsive pour les cartes de réalisations */
@media (max-width: 768px) {
    .realisation-card .bg-white {
        min-height: 350px;
    }
}

@media (max-width: 640px) {
    .realisation-card .bg-white {
        min-height: 320px;
    }
}
