@charset "utf-8";
/* CSS Document */
	
* {			
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #333;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #4285F4, #34A853);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .google-badge {
            display: inline-flex;
            align-items: center;
            background: #fff;
            padding: 10px 20px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-top: 15px;
            transition: transform 0.3s;
        }

        .google-badge:hover {
            transform: translateY(-3px);
        }

        .google-badge svg {
            width: 24px;
            height: 24px;
            margin-right: 10px;
        }

        .google-badge span {
            font-weight: 600;
            color: #5f6368;
        }

        /* Slider Styles */
        .reviews-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .slider-container {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .review-card {
            flex: 0 0 33.333%;
            padding: 15px;
        }

        @media (max-width: 992px) {
            .review-card {
                flex: 0 0 50%;
            }
        }

        @media (max-width: 768px) {
            .review-card {
                flex: 0 0 100%;
            }
        }

        .review-content {
            background: white;
            border-radius: 20px;
            padding: 35px;
            height: 100%;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .review-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        /* Header Review */
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .review-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, #4285F4, #34A853);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            margin-right: 20px;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
        }

        .review-info h4 {
            color: #333;
            margin-bottom: 8px;
            font-size: 1.2rem;
        }

        /* Stars */
        .stars {
            color: #FFD700;
            font-size: 20px;
            margin-bottom: 8px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .stars .far {
            color: #e0e0e0;
        }

        .review-date {
            color: #888;
            font-size: 0.95rem;
        }

        /* Review Text */
        .review-text {
            color: #555;
            line-height: 1.7;
            font-size: 1.05rem;
            margin-bottom: 25px;
            position: relative;
            padding-left: 25px;
            font-style: italic;
        }

        .review-text:before {
            content: "❝";
            font-size: 70px;
            color: #4285F4;
            opacity: 0.2;
            position: absolute;
            left: -15px;
            top: -25px;
            font-family: Georgia, serif;
        }

        /* Google Logo */
        .google-logo {
            text-align: right;
            margin-top: 20px;
        }

        .google-logo svg {
            width: 28px;
            height: 28px;
            transition: transform 0.3s;
        }

        .review-content:hover .google-logo svg {
            transform: scale(1.2);
        }

        /* Dots Navigation - SIMPLIFIÉ */
        .dots-container {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot:hover {
            background: #aaa;
        }

        .dot.active {
            background: #4285F4;
            transform: scale(1.2);
        }

        /* Effet de flou sur les cartes non actives */
        .slider-container:hover .review-card:not(:hover) {
            filter: blur(1px);
            opacity: 0.9;
        }

        .review-card:hover {
            z-index: 2;
        }

        /* Animation d'entrée pour les avis */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .review-content {
            animation: fadeIn 0.6s ease-out;
        }

