/* ========================================================================== */
/* CORRECTION BLOC AVIS - TOTALEMENT RESPONSIVE                               */
/* ========================================================================== */

/* Grille principale responsive */
.reviews-slider {
    display: grid !important;
    gap: 20px !important;
    margin: 25px 0 !important;
    width: 100% !important;
    align-items: start !important;
    justify-items: stretch !important;
}

/* Desktop XL (≥1920px) - 4 colonnes × 2 rangées */
@media (min-width: 1920px) {
    .reviews-slider {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px !important;
    }
    
    .review-card {
        aspect-ratio: 1.2 !important;
        min-height: 280px !important;
        max-height: 300px !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        width: calc(100% + 10px) !important;
        margin-left: -5px !important;
        margin-right: -5px !important;
    }
}

/* Desktop Large (1440px-1919px) - 4 colonnes × 2 rangées */
@media (min-width: 1440px) and (max-width: 1919px) {
    .reviews-slider {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 22px !important;
    }
    
    .review-card {
        aspect-ratio: 1.2 !important;
        min-height: 260px !important;
        max-height: 280px !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        width: calc(100% + 10px) !important;
        margin-left: -5px !important;
        margin-right: -5px !important;
    }
}

/* Desktop Medium (1200px-1439px) - 3 colonnes × 3 rangées */
@media (min-width: 1200px) and (max-width: 1439px) {
    .reviews-slider {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
    
    .review-card {
        aspect-ratio: 1.3 !important;
        min-height: 240px !important;
        max-height: 260px !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        width: calc(100% + 10px) !important;
        margin-left: -5px !important;
        margin-right: -5px !important;
    }
}

/* Desktop Small (1024px-1199px) - 3 colonnes × 3 rangées */
@media (min-width: 1024px) and (max-width: 1199px) {
    .reviews-slider {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 18px !important;
    }
    
    .review-card {
        aspect-ratio: 1.35 !important;
        min-height: 220px !important;
        max-height: 240px !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        width: calc(100% + 10px) !important;
        margin-left: -5px !important;
        margin-right: -5px !important;
    }
}

/* Tablette Landscape (768px-1023px) - 2 colonnes × 4 rangées */
@media (min-width: 768px) and (max-width: 1023px) {
    .reviews-slider {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
    }
    
    .review-card {
        aspect-ratio: 1.2 !important;
        min-height: 220px !important;
    }
}

/* Tablette Portrait (600px-767px) - 2 colonnes × 4 rangées */
@media (min-width: 600px) and (max-width: 767px) {
    .reviews-slider {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .review-card {
        aspect-ratio: 1.25 !important;
        min-height: 210px !important;
    }
}

/* Mobile Large (480px-599px) - 1 colonne */
@media (min-width: 480px) and (max-width: 599px) {
    .reviews-slider {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .review-card {
        aspect-ratio: unset !important;
        min-height: auto !important;
        height: auto !important;
        padding-bottom: 20px !important;
        margin-bottom: 5px !important;
    }
    
    /* Assurer que chaque carte a sa propre hauteur basée sur son contenu */
    .review-card .testimonial-text {
        margin-bottom: 15px !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        max-height: none !important;
        height: auto !important;
        display: block !important;
        overflow: visible !important;
    }
}

/* Mobile Medium (375px-479px) - 1 colonne */
@media (min-width: 375px) and (max-width: 479px) {
    .reviews-slider {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }
    
    .review-card {
        aspect-ratio: unset !important;
        min-height: auto !important;
        height: auto !important;
        padding-bottom: 18px !important;
        margin-bottom: 5px !important;
    }
    
    /* Assurer que chaque carte a sa propre hauteur basée sur son contenu */
    .review-card .testimonial-text {
        margin-bottom: 12px !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        max-height: none !important;
        height: auto !important;
        display: block !important;
        overflow: visible !important;
    }
}

/* Mobile Small (320px-374px) - 1 colonne */
@media (min-width: 320px) and (max-width: 374px) {
    .reviews-slider {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .review-card {
        aspect-ratio: unset !important;
        min-height: auto !important;
        height: auto !important;
        padding-bottom: 16px !important;
        margin-bottom: 5px !important;
    }
    
    /* Assurer que chaque carte a sa propre hauteur basée sur son contenu */
    .review-card .testimonial-text {
        margin-bottom: 10px !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        max-height: none !important;
        height: auto !important;
        display: block !important;
        overflow: visible !important;
    }
}

/* Mobile XS (<320px) - 1 colonne */
@media (max-width: 319px) {
    .reviews-slider {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    
    .review-card {
        aspect-ratio: unset !important;
        min-height: auto !important;
        height: auto !important;
        padding-bottom: 14px !important;
        margin-bottom: 5px !important;
    }
    
    /* Assurer que chaque carte a sa propre hauteur basée sur son contenu */
    .review-card .testimonial-text {
        margin-bottom: 8px !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        max-height: none !important;
        height: auto !important;
        display: block !important;
        overflow: visible !important;
    }
}

/* Carte d'avis - styles généraux */
.review-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(125, 163, 164, 0.15);
    border-left: 4px solid #7da3a4;
    box-shadow: 0 4px 16px rgba(125, 163, 164, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    height: 100%;
}

/* État étendu pour les cartes */
.review-card.is-expanded {
    aspect-ratio: unset !important;
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
}

/* Texte d'avis - responsive */
.review-text {
    color: #000000;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
    flex-grow: 1;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    position: relative;
    z-index: 3;
    word-break: break-word;
    hyphens: auto;
}

/* Augmenter la hauteur des blocs avec des textes longs sur PC */
@media (min-width: 1024px) {
    /* Assurer que les blocs s'adaptent aux textes longs */
    .review-card {
        height: auto !important;
        min-height: 350px !important;
        max-height: none !important;
    }
    
    /* Permettre aux textes longs de s'afficher complètement */
    .review-text {
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        max-height: none !important;
        display: block !important;
        overflow: visible !important;
    }
}

/* Line-clamp responsive */
@media (min-width: 1920px) {
    .review-text {
        font-size: 1rem;
        -webkit-line-clamp: 10;
        line-clamp: 10;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .review-text {
        font-size: 0.95rem;
        -webkit-line-clamp: 9;
        line-clamp: 9;
    }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .review-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 8;
        line-clamp: 8;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .review-text {
        font-size: 0.85rem;
        -webkit-line-clamp: 7;
        line-clamp: 7;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .review-text {
        font-size: 0.85rem;
        -webkit-line-clamp: 6;
        line-clamp: 6;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .review-text {
        font-size: 0.8rem;
        -webkit-line-clamp: 6;
        line-clamp: 6;
    }
}

@media (min-width: 480px) and (max-width: 599px) {
    .review-text {
        font-size: 0.8rem;
        -webkit-line-clamp: 7;
        line-clamp: 7;
    }
}

@media (max-width: 599px) {
    .review-text {
        font-size: 0.75rem;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        max-height: none !important;
        height: auto !important;
        display: block !important;
        overflow: visible !important;
    }
    
    /* Augmenter la hauteur de tous les blocs sur mobile pour s'assurer que le texte est visible */
    .review-card {
        min-height: 300px !important;
        max-height: none !important;
        height: auto !important;
    }
    
    /* Augmenter l'espace pour les textes plus longs */
    .review-text {
        padding-bottom: 20px !important;
        margin-bottom: 20px !important;
    }
}

/* Navigation responsive */
.bottom-navigation {
    display: flex;
    justify-content: center;
    margin: 25px 0 0 0;
    padding: 0 15px;
}

.navigation-line {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

/* Flèches de navigation - responsive */
.nav-arrow-left,
.nav-arrow-right {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Tailles des flèches responsive */
@media (min-width: 768px) {
    .nav-arrow-left,
    .nav-arrow-right {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .nav-arrow-left,
    .nav-arrow-right {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nav-arrow-left,
    .nav-arrow-right {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Indicateur de page - responsive */
.page-indicator {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

@media (min-width: 768px) {
    .page-indicator {
        padding: 8px 14px;
        font-size: 0.9rem;
        min-width: 60px;
        height: 50px;
    }
}

@media (max-width: 767px) {
    .page-indicator {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 55px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .page-indicator {
        padding: 5px 10px;
        font-size: 0.75rem;
        min-width: 50px;
        height: 35px;
    }
}

/* Bouton Google - responsive */
.google-review-btn-center {
    background: white;
    color: black;
    border: 2px solid #7da3a4;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .google-review-btn-center {
        padding: 12px 20px;
        font-size: 0.9rem;
        height: 50px;
    }
}

@media (max-width: 767px) {
    .google-review-btn-center {
        padding: 10px 16px;
        font-size: 0.8rem;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .google-review-btn-center {
        padding: 8px 14px;
        font-size: 0.75rem;
        height: 35px;
    }
    
    /* Masquer l'icône sur très petit écran */
    .google-review-btn-center svg {
        display: none;
    }
}

/* Header Google - responsive */
.google-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

/* Style pour le texte du nombre d'avis et le logo */
.rating-text {
    padding-right: 10px;
}

/* Style pour le logo Google */
.google-logo {
    padding-left: 10px;
}

@media (max-width: 768px) {
    .google-reviews-header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .google-header-left,
    .google-header-right {
        width: 100%;
        justify-content: center;
    }
    
    /* Augmenter les marges sur mobile */
    .rating-text {
        padding-right: 15px;
        margin-right: 10px;
    }
    
    /* Réduire l'espace entre le logo Google et le texte sur mobile */
    .google-reviews-header .google-logo {
        padding-left: 0px !important;
        margin-left: 15px !important;
        margin-right: 0px !important;
    }
    
    .google-info {
        margin-left: 0px;
    }
}

/* Widget complet - responsive */
.google-reviews-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .google-reviews-widget {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .google-reviews-widget {
        padding: 15px;
        border-radius: 12px;
    }
    
    /* Augmenter davantage les marges sur très petits écrans */
    .rating-text {
        padding-right: 20px;
        margin-right: 15px;
    }
    
    /* Réduire encore plus l'espace sur très petits écrans */
    .google-reviews-header .google-logo {
        /*padding-left: 3px !important;
        margin-left: 3px !important;
        margin-right: 5px !important;*/
		padding-left: 0px !important;
        margin-left: 25px !important;
        margin-right: 0px !important;
    }
    
    .google-info {
        margin-left: 0px;
    }
}

/* Styles pour les blocs récupérés de temoignages-secondaire.html */
.testimonials-section {
    max-width: 100%;
    margin: 0;
    padding: 40px 0;
    background: transparent;
}

.temoignages-left {
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.testimonials-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: white;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* STATISTIQUES */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: linear-gradient(135deg, #7da3a4 0%, #6a8f90 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(125, 163, 164, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(125, 163, 164, 0.4);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    opacity: 0.95;
    font-weight: 500;
}

/* SECTION APPEL À L'ACTION */
.cta-section {
    background: linear-gradient(135deg, #7da3a4 0%, #6a8f90 100%);
    border-radius: 6px;/*25px*/
    padding: /*50px*/10px 10px/*15p*/;
    text-align: center;
    color: white;
    margin: 60px auto 40px;
    position: relative;
    overflow: hidden;
    max-width: 768px/*95%*/;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Règle spécifique pour PC - force les marges */
@media (min-width: 1024px) {
    .cta-section {
        max-width: 95% !important;
        margin: 60px auto 40px !important;
        padding: 50px 15px !important;
    }
    
    .google-reviews-container {
        padding: 0 5px 40px 5px !important;
        max-width: 95% !important;
    }
}

/* Règle pour écrans 1440px et plus */
@media (min-width: 1440px) {
    .google-reviews-container {
        padding: 0 5px 40px 5px !important;
        max-width: 95% !important;
    }
    
    .cta-section h2 {
        font-size: 1.8rem !important;
        width: 100% !important;
        max-width: 100% !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
}

/* Règles très spécifiques pour écraser style.css */
@media (min-width: 1920px) {
    .google-reviews-container {
        width: 95% !important;
        margin: 20px auto !important;
        padding: 0 5px 40px 5px !important;
        max-width: 95% !important;
    }
    
    .cta-section {
        max-width: 95% !important;
        margin: 60px auto 40px !important;
        padding: 50px 5px !important;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .google-reviews-container {
        width: 95% !important;
        margin: 20px auto !important;
        padding: 0 5px 40px 5px !important;
        max-width: 95% !important;
    }
    
    .cta-section {
        max-width: 95% !important;
        margin: 60px auto 40px !important;
        padding: 50px 5px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .google-reviews-container {
        width: 95% !important;
        margin: 20px auto !important;
        padding: 0 5px 40px 5px !important;
        max-width: 95% !important;
    }
    
    .cta-section h2 {
        font-size: 1.6rem !important;
        width: 100% !important;
        max-width: 100% !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
    
    .cta-section {
        max-width: 95% !important;
        margin: 60px auto 40px !important;
        padding: 50px 5px !important;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .google-reviews-container {
        width: 95% !important;
        margin: 20px auto !important;
        padding: 0 5px 40px 5px !important;
        max-width: 95% !important;
    }
    
    .cta-section {
        max-width: 95% !important;
        margin: 60px auto 40px !important;
        padding: 50px 5px !important;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-section * {
    color: white !important;
}

/* Règle spécifique pour optimiser le titre sur les écrans moyens et grands */
@media (min-width: 1200px) {
    .cta-section h2 {
        font-size: clamp(1.4rem, 1.8vw, 1.8rem) !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        line-height: 1.3 !important;
    }
}

.cta-section h2 {
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
    margin-bottom: 20px;
    font-weight: 700;
    color: white !important;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.cta-section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white !important;
    text-align: center;
    line-height: 1.6;
    padding: 0 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #7da3a4 0%, #6a8f90 100%);
    color: white !important;
    box-shadow: 0 6px 20px rgba(125, 163, 164, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6a8f90 0%, #5a7f80 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(125, 163, 164, 0.6);
    color: white !important;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(125, 163, 164, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    color: white !important;
}

.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.2);
}

/* Responsive pour les nouveaux blocs */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 30px 0;
    }
    
    .testimonials-header {
        margin-bottom: 30px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
        max-width: 100%;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .cta-section {
        padding: 30px 10px !important;
        margin: 40px 20px 30px 20px !important;
        text-align: center;
        max-width: calc(100% - 40px) !important;
        box-sizing: border-box;
    }
    
    .cta-section h2 {
        font-size: clamp(1.2rem, 4.5vw, 2.2rem);
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .cta-section p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 0 15px;
        line-height: 1.5;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 25px 0;
    }
    
    .testimonials-header {
        margin-bottom: 30px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
        margin-bottom: 15px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .cta-section {
        padding: 25px 8px !important;
        /*margin: 30px 15px 25px 15px !important;*/
        max-width: calc(100% - 30px) !important;
        box-sizing: border-box;
    }
    
    .cta-section h2 {
        font-size: clamp(1.1rem, 5vw, 1.6rem);
        padding: 0 10px;
        line-height: 1.3;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .cta-section p {
        font-size: clamp(0.85rem, 4vw, 1rem);
        padding: 0 10px;
        line-height: 1.4;
        margin-bottom: 25px;
    }
}

/* Container principal - responsive */
.temoignages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    padding: 0;
    margin: 30px auto;
    max-width: 100%;
    box-sizing: border-box;
}

/* Alignement parfait des blocs sur grand écran - règle supprimée car dupliquée */

@media (max-width: 768px) {
    .temoignages-grid {
        padding: 0;
        gap: 20px;
        max-width: 98%;
    }
    
    .temoignages-left {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .google-reviews-container {
        max-width: calc(100% - 40px) !important;
        margin: 0 30px 0 5px !important;
        padding: 0 10px 40px 10px !important;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .temoignages-grid {
        padding: 0;
        gap: 15px;
        max-width: 100%;
    }
    
    .temoignages-left {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .google-reviews-container {
        max-width: calc(100% - 30px) !important;
        margin: 0 25px 0 3px !important;
        padding: 0 8px 40px 8px !important;
        box-sizing: border-box;
    }
}

/* Assurer la visibilité sur tous les écrans */
.review-card.active {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

.review-card:not(.active) {
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
}

/* Fix pour éviter le débordement horizontal */
body, html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

.google-reviews-container {
    width: 100% !important;
    max-width: 85% !important;
    margin: 0 auto !important;
    padding: 0 5px 40px 5px !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}




