/* ========================================
   REVIEWS PAGE - LUXURY DESIGN
   ======================================== */

.reviews-page {
    padding: 120px 0 80px;
    background-color: var(--off-white);
}

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

.reviews-header h1 {
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.city-name {
    color: var(--accent-gold);
}

.reviews-intro {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.rating-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    padding: 50px;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

.rating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-sage));
}

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

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

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

.rating-stars {
    color: var(--accent-gold);
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.rating-average {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

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

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

.star-label {
    width: 50px;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.progress-bar {
    flex-grow: 1;
    height: 6px;
    background-color: var(--off-white);
    margin: 0 20px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-sage));
}

.percent {
    width: 50px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: right;
}

.rating-cta {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

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

.filter-label {
    font-weight: 500;
    margin-right: 20px;
    color: var(--primary-dark);
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

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

.filter-btn {
    padding: 10px 20px;
    border: 1px solid var(--border-light);
    background-color: var(--white);
    color: var(--text-medium);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

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

.review-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    padding: 35px;
    transition: var(--transition-smooth);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    color: var(--border-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 160, 89, 0.3);
}

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

.reviewer-photo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 18px;
    border: 2px solid var(--border-light);
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.review-location,
.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.review-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.stars {
    color: var(--accent-gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-content {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

.review-content p {
    margin: 0;
}

.review-response {
    background-color: var(--off-white);
    padding: 20px;
    font-size: 0.9rem;
    color: var(--text-medium);
    border-left: 3px solid var(--accent-gold);
}

.response-header {
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.review-response p {
    margin: 0;
    line-height: 1.6;
}

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

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.pagination-btn:hover,
.pagination-btn.active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.pagination-dots {
    padding: 0 10px;
    color: var(--text-light);
}

/* Reviews CTA Section */
.reviews-cta {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    padding: 60px 50px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.reviews-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-sage));
}

.reviews-cta h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-size: 1.8rem;
    font-weight: 400;
}

.reviews-cta p {
    margin-bottom: 35px;
    color: var(--text-medium);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

/* No Reviews Message */
.no-reviews-message {
    text-align: center;
    padding: 60px 40px;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.no-reviews-content i {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
    display: block;
    opacity: 0.8;
}

.no-reviews-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.no-reviews-content p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 15px;
}

.no-reviews-content p:last-child {
    margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    margin-bottom: 60px;
}

.why-choose-section h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 160, 89, 0.3);
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
}

.trust-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.trust-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

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

    .reviews-header h1 {
        font-size: 2.2rem;
    }

    .rating-card {
        padding: 35px 25px;
    }

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

    .rating-average {
        font-size: 2.5rem;
    }

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

    .review-card {
        padding: 30px 25px;
    }

    .reviews-cta {
        padding: 40px 25px;
    }

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

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

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

    .no-reviews-message {
        padding: 40px 25px;
    }

    .no-reviews-content i {
        font-size: 3rem;
    }

    .no-reviews-content h2 {
        font-size: 1.5rem;
    }

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

    .trust-item {
        padding: 30px 25px;
    }

    .why-choose-section h2 {
        font-size: 1.5rem;
    }
}
