/* Reviews Page Specific Styles */

/* Page Header */
.page-header {
    padding: 4rem 2rem 2rem;
    background: linear-gradient(135deg, var(--soft-white) 0%, var(--warm-gray) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, var(--blue-soft) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--orange-soft) 0%, transparent 50%);
    opacity: 0.4;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 700px;
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    padding: 4rem 2rem;
    background: var(--primary-blue);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Filter Section */
.filter-section {
    padding: 3rem 2rem;
    background: var(--soft-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

/* Reviews Section */
.reviews-section {
    padding: 6rem 2rem;
    background: var(--warm-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.review-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--gentle-shadow);
    transition: all 0.3s ease;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.3;
    font-family: serif;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.client-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.client-condition {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.star-rating {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: var(--star-color);
    font-size: 1.1rem;
}

.review-content {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--blue-soft);
    color: var(--primary-blue);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Featured Review */
.featured-review {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    color: white;
    border: none;
}

.featured-review::before {
    color: rgba(255, 255, 255, 0.3);
}

.featured-review .client-info h4,
.featured-review .review-content {
    color: white;
}

.featured-review .client-condition {
    color: rgba(255, 255, 255, 0.8);
}

.featured-review .service-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Video Testimonials */
.video-section {
    padding: 6rem 2rem;
    background: var(--soft-white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--gentle-shadow);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    position: relative;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.video-info {
    padding: 2rem;
}

.video-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.video-info p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Success Metrics */
.success-section {
    padding: 6rem 2rem;
    background: var(--warm-gray);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.success-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--gentle-shadow);
    text-align: center;
    border-top: 4px solid var(--primary-orange);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--blue-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.success-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.success-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.success-description {
    color: var(--text-medium);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.cta-primary {
    padding: 1.2rem 2.5rem;
    background: var(--accent-red);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.cta-secondary {
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Responsive Design for Reviews Page */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .featured-review {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-container {
        flex-direction: column;
        align-items: center;
    }

    .video-grid,
    .success-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header,
    .stats-section,
    .reviews-section,
    .video-section,
    .success-section,
    .cta-section {
        padding: 4rem 1rem;
    }

    .filter-section {
        padding: 2rem 1rem;
    }

    .review-card,
    .video-info,
    .success-card {
        padding: 2rem;
    }

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