:root {
    --primary-color: #0d6efd;
    --secondary-color: #ff6b35;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1546410531-bb4caa6b424d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80') center/cover no-repeat;
    color: white;
    padding: 180px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.3) 0%, rgba(255, 107, 53, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.section {
    padding: 80px 0;
}

.section-title {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 20px 0;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(13, 110, 253, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-horizontal {
    gap: 1rem;
}

.contact-item {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.vertical-divider {
    width: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

.footer {
    background: var(--dark-color);
    color: #ccc;
    padding: 60px 0 20px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.counter-plus {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: inline-block;
    margin-left: 5px;
}

/* Pour le pourcentage qui est plus petit */
.counter-plus:nth-child(2) {
    font-size: 2.5rem;
    margin-left: 2px;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: inline-block;
}

@media (max-width: 768px) {
    .contact-item {
        flex: 0 0 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0;
    }

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

    .vertical-divider {
        display: none !important;
    }
}