/* Reviews Page Styles */

/* Reviews Hero Layout - Remove min-height */
.reviews-hero-layout {
    min-height: auto !important;
}

/* Reviews Main */
.reviews-main {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Reviews Stats Section */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: #5a6c7d;
    font-weight: 600;
}

.stat-card .stat-stars {
    font-size: 1.3rem;
    color: #ffd700;
    letter-spacing: 2px;
}

.stat-card .stat-detail {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-card-full {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.review-info {
    flex: 1;
}

.reviewer-name {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
}

.review-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.review-rating {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-service {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.review-date {
    color: #95a5a6;
    font-size: 0.9rem;
}

.review-comment {
    line-height: 1.8;
    color: #5a6c7d;
    margin: 0 0 1rem 0;
}

/* Owner Response */
.owner-response {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 3px solid #3498db;
    border-radius: 8px;
}

.response-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.response-icon {
    font-size: 1.2rem;
}

.owner-response strong {
    color: #2c3e50;
    font-weight: 600;
}

.owner-response p {
    margin: 0;
    color: #5a6c7d;
    line-height: 1.6;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e1e8ed;
    border-radius: 25px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #3498db;
    border-color: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.pagination-btn.prev span:first-child,
.pagination-btn.next span:last-child {
    font-size: 1.2rem;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #e1e8ed;
    border-radius: 50%;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: #3498db;
    border-color: #3498db;
    color: white;
    transform: scale(1.1);
}

.pagination-number.active {
    background: #2c3e50;
    border-color: #2c3e50;
    color: white;
}

.pagination-ellipsis {
    color: #95a5a6;
    padding: 0 0.5rem;
}

/* CTA Section */
.reviews-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    margin-top: 4rem;
}

.reviews-cta .cta-content {
    text-align: center;
}

.reviews-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.reviews-cta p {
    font-size: 1.2rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: white;
    color: #667eea;
}

.cta-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #667eea;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-card .stat-number {
        font-size: 2rem;
    }
    
    .review-card-full {
        padding: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
    }
    
    .reviewer-name {
        font-size: 1.1rem;
    }
    
    .review-rating {
        font-size: 1rem;
    }
    
    .reviews-cta h2 {
        font-size: 2rem;
    }
    
    .reviews-cta p {
        font-size: 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .pagination {
        gap: 0.5rem;
    }
    
    .pagination-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .bath-hero-unique.reviews-variant .stat-value {
        font-size: 1.75rem;
    }
    
    .filter-section {
        padding: 1rem;
        margin: -20px 0 1.5rem 0;
    }
    
    .review-card-full {
        padding: 1rem;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-comment {
        font-size: 0.95rem;
    }
    
    .owner-response {
        padding: 0.75rem;
    }
    
    .reviews-cta {
        padding: 3rem 0;
    }
    
    .reviews-cta h2 {
        font-size: 1.75rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .pagination-btn span:not(:first-child):not(:last-child) {
        display: none;
    }
    
    .pagination-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}