/* Hero Section */
.service-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(9, 179, 34, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.service-hero h1 span {
    color: #09b322;
    position: relative;
}

.service-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #09b322;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-hero:hover h1 span::after {
    transform: scaleX(1);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item .counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #09b322;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #09b322;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(9, 179, 34, 0.3);
}

.experience-badge span {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

/* Services Principaux Section */
.main-services {
    padding: 120px 0;
    background: white;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 179, 34, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: #09b322;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .icon {
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: #666;
}

.service-features li i {
    color: #09b322;
    margin-right: 0.5rem;
}

.btn-learn-more {
    color: #09b322;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-learn-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover {
    color: #07a01d;
}

.btn-learn-more:hover i {
    transform: translateX(5px);
}

/* Processus Section */
.process-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #09b322;
}

.process-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background: #09b322;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
}

.process-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    transition: transform 0.3s ease;
}

.process-item:hover .process-content {
    transform: translateX(10px);
}

.process-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.process-details li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.process-details li::before {
    content: '•';
    color: #09b322;
    position: absolute;
    left: 0;
}

/* Pourquoi Nous Choisir Section */
.why-choose-us {
    padding: 120px 0;
    background: white;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-card .icon {
    width: 70px;
    height: 70px;
    background: #09b322;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon {
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    margin: 0;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #09b322 0%, #07a01d 100%);
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section .btn-primary {
    background: white;
    color: #09b322;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .service-hero {
        padding: 80px 0;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-number {
        margin-bottom: 1rem;
    }

    .specialized-card,
    .testimonial-card,
    .faq-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-item .counter {
        font-size: 2rem;
    }

    .experience-badge {
        padding: 0.5rem 1rem;
    }

    .experience-badge span {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .client-info img {
        width: 50px;
        height: 50px;
    }

    .client-info h4 {
        font-size: 1rem;
    }

    .client-info span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .service-hero {
        padding: 60px 0;
    }

    .service-hero h1 {
        font-size: 1.8rem;
    }

    .hero-stats {
        margin-top: 2rem;
    }

    .stat-item {
        margin-bottom: 1rem;
    }

    .process-content {
        padding: 1.5rem;
    }

    .testimonial-card,
    .faq-item {
        padding: 1.5rem;
    }
}

/* Services Spécialisés Section */
.specialized-services {
    padding: 120px 0;
    background: #f8f9fa;
}

.specialized-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.specialized-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 179, 34, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.specialized-card:hover::before {
    opacity: 1;
}

.specialized-card .icon {
    width: 70px;
    height: 70px;
    background: #09b322;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.specialized-card:hover .icon {
    transform: rotateY(180deg);
}

.specialized-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

/* Témoignages Section */
.testimonials {
    padding: 120px 0;
    background: white;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

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

.testimonial-card .quote {
    color: #09b322;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.client-info span {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    margin: 0;
} 