.reviews-page {
    padding: 80px 0;
    background-color: #EAE2D7;
}

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

.reviews-header h1 {
    margin-bottom: 15px;
    color: #333;
}

.city-name {
    color: #967E66; /* à adapter selon votre charte graphique */
}

.reviews-intro {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

/* Rating Overview Card */
.rating-overview {
    margin-bottom: 50px;
}

.rating-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.rating-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.google-logo img {
    max-width: 50px;
    height: auto;
}

.rating-overall {
    text-align: center;
}

.rating-stars {
    color: #FBBC05; /* Couleur étoiles Google */
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.rating-average {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 5px;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

.rating-breakdown {
    margin-bottom: 25px;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.star-label {
    width: 40px;
    font-size: 0.9rem;
    color: #666;
}

.progress-bar {
    flex-grow: 1;
    height: 8px;
    background-color: #eee;
    border-radius: 10px;
    margin: 0 15px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #FBBC05; /* Couleur étoiles Google */
    border-radius: 10px;
}

.percent {
    width: 40px;
    font-size: 0.9rem;
    color: #666;
    text-align: right;
}

.rating-cta {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn i {
    margin-right: 10px;
}

.btn-primary {
    background-color: #967E66; /* à adapter selon votre charte graphique */
    color: white;
}

.btn-primary:hover {
    background-color: #EAE2D7; /* à adapter selon votre charte graphique */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    color: #333;
}

.btn-secondary:hover {
    background-color: #e9ecef;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Reviews Filter */
.reviews-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-label {
    font-weight: 500;
    margin-right: 15px;
    color: #333;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    background-color: #fff;
    color: #555;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #967E66; /* à adapter selon votre charte graphique */
    border-color: #967E66; /* à adapter selon votre charte graphique */
    color: #fff;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.review-location,
.review-date {
    font-size: 0.8rem;
    color: #888;
}

.review-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stars {
    color: #FBBC05; /* Couleur étoiles Google */
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.review-content {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.review-content p {
    margin: 0;
}

.review-response {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #555;
}

.response-header {
    margin-bottom: 8px;
    color: #333;
}

.review-response p {
    margin: 0;
}

/* Pagination */
.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 5px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background-color: #967E66; /* à adapter selon votre charte graphique */
    border-color: #967E66; /* à adapter selon votre charte graphique */
    color: #fff;
}

.pagination-dots {
    padding: 0 5px;
    color: #555;
}

/* Reviews CTA Section */
.reviews-cta {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-cta h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.reviews-cta p {
    margin-bottom: 25px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* No Reviews Section */
.no-reviews-section {
    margin-bottom: 50px;
}

.no-reviews-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 50px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.no-reviews-icon {
    width: 80px;
    height: 80px;
    background-color: #EAE2D7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.no-reviews-icon i {
    font-size: 2rem;
    color: #967E66;
}

.no-reviews-card h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.no-reviews-card > p {
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 30px;
}

.no-reviews-benefits {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 30px;
    text-align: left;
}

.no-reviews-benefits h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.no-reviews-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.no-reviews-benefits li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.no-reviews-benefits li i {
    color: #967E66;
    margin-top: 3px;
}

.no-reviews-cta p {
    color: #666;
    margin-bottom: 20px;
}

/* Trust Section */
.reviews-trust {
    margin-bottom: 50px;
}

.reviews-trust h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.trust-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background-color: #EAE2D7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-icon i {
    font-size: 1.5rem;
    color: #967E66;
}

.trust-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.trust-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cta-sub {
    margin-top: 15px;
    font-size: 0.9rem;
}

.cta-sub a {
    color: #967E66;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-page {
        padding: 60px 20px;
    }

    .rating-header {
        flex-direction: column;
        gap: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .filter-options {
        width: 100%;
        justify-content: center;
    }

    .no-reviews-card {
        padding: 30px 20px;
    }

    .no-reviews-benefits {
        padding: 20px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}