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

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

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

.city-name {
    color: #022447 ; /* à 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: #022447 ; /* à adapter selon votre charte graphique */
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3; /* à 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: #022447 ; /* à adapter selon votre charte graphique */
    border-color: #022447 ; /* à 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: #022447 ; /* à adapter selon votre charte graphique */
    border-color: #022447 ; /* à 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;
}

/* 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;
    }
}