/* Reviews Page Styles */
.reviews-page {
    background: #f9f9f9;
}

.reviews-hero {
    background: #1a1a1a;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #C49B3D;
}

.breadcrumb span {
    color: white;
}

.reviews-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.reviews-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.8;
    color: white;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #C49B3D;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviews-content {
    padding: 80px 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.review-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 32px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-author {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.author-location {
    font-size: 14px;
    color: #666;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #FFB400;
    font-size: 18px;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.review-service {
    font-size: 12px;
    color: #C49B3D;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(196, 155, 61, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* Review Summary Section */
.review-summary {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 60px;
}

.summary-header {
    text-align: center;
    margin-bottom: 40px;
}

.summary-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.overall-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #C49B3D;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .star {
    font-size: 24px;
    color: #FFB400;
}

.rating-count {
    font-size: 16px;
    color: #666;
    text-align: center;
}

.rating-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

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

.category-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.category-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.category-score {
    font-size: 14px;
    color: #666;
}

/* CTA Section */
.reviews-cta {
    background: #C49B3D;
    color: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.cta-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-button.primary {
    background: white;
    color: #C49B3D;
}

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

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

.cta-button.secondary:hover {
    background: white;
    color: #C49B3D;
}

/* Platform Reviews */
.platform-reviews {
    margin-top: 60px;
}

.platform-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.platform-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 24px;
    text-align: center;
}

.platform-logo {
    height: 32px;
    margin-bottom: 16px;
}

.platform-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.platform-count {
    font-size: 14px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reviews-hero {
        padding: 60px 0 80px;
    }
    
    .reviews-title {
        font-size: 32px;
    }
    
    .reviews-subtitle {
        font-size: 16px;
    }
    
    .reviews-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .reviews-content {
        padding: 60px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .review-summary {
        padding: 24px;
    }
    
    .summary-title {
        font-size: 24px;
    }
    
    .rating-number {
        font-size: 36px;
    }
    
    .overall-rating {
        flex-direction: column;
        gap: 12px;
    }
    
    .rating-breakdown {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .reviews-cta {
        padding: 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}