/* Reviews Landing Page Styles */
.reviews-landing-hero {
    background: linear-gradient(180deg, var(--main-bg-color) 0%, rgba(207, 73, 73, 1) 100%);
    padding: 80px 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reviews-landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(237, 84, 84, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(237, 84, 84, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-landing-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reviews-landing-hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reviews-landing-hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

.reviews-stat-number {
    font-size: 3em;
    font-weight: 700;
    display: block;
}

.reviews-stat-label {
    font-size: 1.1em;
    opacity: 0.9;
    margin-top: 5px;
}

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

/* Review Filters */
.reviews-filters {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.reviews-filter-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.reviews-filter-label {
    font-weight: 600;
    color: var(--main-bg-accent);
}

.reviews-filter-buttons {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: var(--main-bg-color);
    background: rgba(237, 84, 84, 0.05);
}

.filter-btn.active {
    background: var(--main-bg-color);
    color: white;
    border-color: var(--main-bg-color);
}

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

.review-card-expanded {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--main-bg-accent);
    margin-bottom: 5px;
    text-transform: capitalize;
}

.review-date {
    color: var(--main-bg-accent);
    font-size: 0.9em;
}

.review-rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-stars {
    color: #ED5454;
    font-size: 1.1em;
}

.review-card-body {
    margin: 20px 0;
}

.review-content {
    font-size: 1.05em;
    line-height: 1.6;
    color: var(--main-bg-accent);
    min-height: 130px;
}

.review-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--main-bg-accent);
    font-size: 0.9em;
}

.review-source img {
    height: 20px;
    width: auto;
}

.review-source a {
    transition: opacity 0.3s ease;
}

.review-source a:hover {
    opacity: 0.8;
    text-decoration: underline !important;
}

.review-helpful {
    display: flex;
    gap: 15px;
    align-items: center;
}

.helpful-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.helpful-btn:hover {
    border-color: var(--main-bg-color);
    color: var(--main-bg-color);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin: 50px 0;
}

.load-more-btn {
    background: var(--main-bg-color);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 84, 84, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 84, 84, 0.4);
}

/* CTA Section */
.reviews-cta-section {
    background: var(--main-bg-white);
    padding: 60px 0;
    text-align: center;
    margin: 40px 0 0 0;
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.reviews-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.reviews-cta-content h2 {
    font-size: 2.5em;
    color: var(--main-bg-accent);
    margin-bottom: 20px;
    font-weight: bolder;
}

.reviews-cta-content p {
    font-size: 1.2em;
    color: var(--main-bg-accent);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn-primary {
    background: var(--main-bg-color);
    color: white;
    box-shadow: 0 4px 15px rgba(237, 84, 84, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 84, 84, 0.4);
}

.cta-btn-secondary {
    background: white;
    color: var(--main-bg-color);
    border: 2px solid var(--main-bg-color);
}

.cta-btn-secondary:hover {
    background: var(--main-bg-color);
    color: white;
}

/* Review Summary Stats */
.reviews-summary-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.rating-breakdown {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

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

.rating-number-large {
    font-size: 4em;
    font-weight: 700;
    color: var(--main-bg-color);
    line-height: 1;
}

.rating-stars-large {
    margin: 10px 0;
    color: #ED5454;
    font-size: 1.5em;
}

.total-reviews {
    color: var(--main-bg-accent);
    font-size: 1.1em;
}

.rating-bars {
    flex: 1;
    max-width: 400px;
}

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

.rating-bar-label {
    width: 20px;
    text-align: right;
    font-weight: 600;
    color: var(--main-bg-accent);
}

.rating-bar-track {
    flex: 1;
    height: 10px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ED5454 0%, #ff7a7a 100%);
    transition: width 0.5s ease;
    border-radius: 10px;
}

.rating-bar-count {
    width: 40px;
    text-align: right;
    color: #999;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-landing-hero h1 {
        font-size: 2em;
    }
    
    .reviews-landing-hero p {
        font-size: 1.1em;
    }
    
    .reviews-stats-banner {
        gap: 30px;
    }
    
    .reviews-stat-number {
        font-size: 2.5em;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rating-breakdown {
        flex-direction: column;
    }
    
    .reviews-cta-content h2 {
        font-size: 2em;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .reviews-cta-section {
        padding: 40px 0;
    }
    
    .reviews-cta-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .reviews-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .reviews-filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .reviews-filter-buttons {
        flex-wrap: wrap;
    }
    
    .filter-btn {
        flex: 1;
        min-width: 100px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card-expanded {
    animation: fadeInUp 0.4s ease;
}

.review-card-expanded:nth-child(1) { animation-delay: 0.1s; }
.review-card-expanded:nth-child(2) { animation-delay: 0.2s; }
.review-card-expanded:nth-child(3) { animation-delay: 0.3s; }
.review-card-expanded:nth-child(4) { animation-delay: 0.4s; }
.review-card-expanded:nth-child(5) { animation-delay: 0.5s; }
.review-card-expanded:nth-child(6) { animation-delay: 0.6s; }

/* Verified Badge */
.verified-badge {
    background: #4CAF50;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
}

.verified-badge i {
    font-size: 0.9em;
}

/* SEO Content Section */
.seo-content-section {
    margin: 20px 0 0 0;
}

.seo-content-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--main-bg-accent);
    font-weight: bolder;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.seo-content-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.seo-content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--main-bg-color), #ff7a7a);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.seo-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(237, 84, 84, 0.1);
}

.seo-content-card:hover::before {
    transform: translateX(0);
}

.seo-content-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(237, 84, 84, 0.1), rgba(237, 84, 84, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2em;
    transition: all 0.3s ease;
    --fa-secondary-opacity: 0.5;
}

.seo-content-icon i {
    color: var(--main-bg-color) !important;
}

.seo-content-card:hover .seo-content-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--main-bg-color);
}

.seo-content-card h3 {
    color: var(--main-bg-accent);
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.seo-content-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--main-bg-color);
    transition: width 0.3s ease;
}

.seo-content-card:hover h3::after {
    width: 60px;
}

.seo-content-card p {
    line-height: 1.7;
    color: var(--main-bg-accent);
    font-size: 1.05em;
}

.seo-content-card a {
    color: var(--main-bg-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.seo-content-card a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-bg-color);
    transition: width 0.3s ease;
}

.seo-content-card a:hover {
    color: #ff7a7a;
}

.seo-content-card a:hover::after {
    width: 100%;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .seo-content-section h2 {
        font-size: 1.8em;
    }
    
    .seo-content-grid {
        grid-template-columns: 1fr;
    }
}