/* ========================================
   Reviews Page Styles
   ======================================== */

/* Full Width Sections */
.reviews-hero-section,
.reviews-stats-section,
.what-we-offer-section,
.testimonials-grid-section,
.faq-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Hero Section */
.reviews-hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.reviews-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.reviews-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.reviews-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.reviews-hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-reviews-cta {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 74, 0, 0.3);
}

.btn-reviews-cta:hover {
    background: #ff6a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 74, 0, 0.4);
    color: white;
    text-decoration: none;
}

/* Trustpilot Badge */
.trustpilot-badge {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.rating-label {
    font-weight: 700;
    font-size: 18px;
}

.trustpilot-rating .stars {
    display: flex;
    gap: 3px;
}

.trustpilot-rating .stars i {
    color: var(--primary-orange);
    font-size: 18px;
}

.rating-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.trustpilot-logo {
    height: 20px;
    margin-left: auto;
}

.rating-subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Featured Testimonial Card */
.featured-testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.quote-icon i {
    color: var(--primary-orange);
    font-size: 24px;
    opacity: 0.3;
}

.testimonial-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--primary-orange);
    font-size: 18px;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 16px;
    margin: 0;
}

/* Stats Section */
.reviews-stats-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
}

.stat-stars i {
    color: #ffc107;
    font-size: 20px;
}

.stat-description {
    font-size: 13px;
    color: #6c757d;
    margin-top: 10px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 60px 0;
    background: white;
}

/* What We Offer Section */
.what-we-offer-section {
    padding: 80px 0;
    background: white;
}

.feature-highlight-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 74, 0, 0.15);
    border-color: var(--primary-orange);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), #ff6a00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-highlight-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 74, 0, 0.3);
}

.feature-icon i {
    color: white;
    font-size: 32px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* Testimonials Grid */
.testimonials-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 50px;
}

.testimonial-grid-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-date {
    font-size: 12px;
    color: #999;
}

.testimonial-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.testimonial-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.testimonial-card-author {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 14px;
    margin: 0;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--primary-orange);
    font-weight: 600;
}

.verified-badge i {
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-orange);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-orange);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 25px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    background: #f8f9fa;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .reviews-hero-title {
        font-size: 36px;
    }
    
    .featured-testimonial-card {
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .reviews-hero-section {
        padding: 60px 0;
    }
    
    .reviews-hero-title {
        font-size: 28px;
    }
    
    .reviews-hero-subtitle {
        font-size: 14px;
    }
    
    .btn-reviews-cta {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .featured-testimonial-card {
        padding: 25px;
    }
    
    .testimonial-title {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .trustpilot-rating {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trustpilot-logo {
        margin-left: 0;
        margin-top: 10px;
    }
}
