* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.2s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.2s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.2s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Services Hero Section */
.services-hero {
    padding: 150px 20px 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
}

.services-hero-description {
    font-size: 1.25rem;
    color: #666666;
    line-height: 1.8;
}

/* Services Gallery */
.services-gallery {
    padding: 40px 20px 80px;
    background-color: #ffffff;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.gallery-image {
    flex: 1;
    max-width: 580px;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(51, 51, 51, 0.9);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Services Details Section */
.services-details-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.services-details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-details-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-category {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #333333;
    padding-bottom: 0.5rem;
}

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

.service-list li {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #333333;
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    height: 40vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('image/WhatsApp Image 2025-11-14 à 13.19.58_5e789f71.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.reviews-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.reviews-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.reviews-background h2,
.reviews-background p {
    display: none;
}

.reviews-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.review-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.review-text {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    font-size: 1rem;
    font-weight: 600;
    color: #666666;
    text-align: right;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.75rem;
}

.faq-answer {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        padding: 120px 20px 60px;
    }

    .services-hero-title {
        font-size: 2.5rem;
    }

    .services-hero-description {
        font-size: 1.1rem;
    }

    .gallery-container {
        flex-direction: column;
        gap: 20px;
    }

    .gallery-image {
        max-width: 100%;
    }

    .services-details-section {
        padding: 60px 20px;
    }

    .services-details-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .reviews-section {
        background-attachment: scroll;
        height: auto;
        min-height: 40vh;
    }

    .reviews-container {
        flex-direction: column;
        gap: 20px;
    }

    .review-card {
        max-width: 100%;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 100px 20px 0px;
    }

    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-description {
        font-size: 1rem;
    }

    .services-gallery {
        padding: 60px 20px;
    }

    .services-details-section {
        padding: 50px 20px;
    }

    .services-details-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-category {
        padding: 20px;
    }

    .service-category-title {
        font-size: 1.2rem;
    }

    .service-list li {
        font-size: 0.95rem;
    }

    .review-card {
        padding: 20px;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}

