.testimonial-section {
    padding: 100px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.testimonial-intro {
    flex: 1;
    max-width: 400px;
}

.testimonial-intro h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.testimonial-intro p {
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.learn-more-btn {
    padding: 14px 30px;
    border: 1px solid #000;
    background: none;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
    display: inline-block;
}

.learn-more-btn:hover {
    background-color: #000;
    color: #fff;
}

.testimonial-cards {
    flex: 2;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.testimonial-card {
    background: #f8f8f8;
    width: 300px;
    min-height: 300px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 40px 20px 60px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    flex: 1;
}

.quote-icon {
    font-size: 60px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 100px;
}

.testimonial-stars {
    font-size: 20px;
    color: #000;
    letter-spacing: 5px;
}

.testimonial-footer {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.testimonial-footer img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.testimonial-footer h4 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

/* Tablette */
@media (max-width: 900px) and (min-width: 600px) {
    .testimonial-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .testimonial-intro {
        max-width: 100%;
        text-align: center;
    }

    .testimonial-cards {
        justify-content: center;
    }

    .testimonial-card {
        width: 280px;
        height: auto;
    }
}

/* MOBILE - simple colonne verticale sans slider */
@media (max-width: 599px) {
    .testimonial-section {
        padding: 50px 15px;
    }

    .testimonial-grid {
        flex-direction: column;
        gap: 40px;
    }

    .testimonial-intro {
        max-width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .testimonial-cards {
        flex-direction: column;
        display: flex;
        gap: 30px;
        justify-content: center;
    }

    .testimonial-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        min-height: auto;
        position: relative;
        padding-bottom: 80px;
    }

    .testimonial-footer {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
    }
}
