/* Trustoo Reviews Section - Styling */
.section-reviews {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.section-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 143, 195, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 193, 7, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-reviews .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-reviews .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-reviews .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #008FC3 0%, #00a8e8 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 143, 195, 0.2);
}

.section-reviews .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.section-reviews .section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 143, 195, 0.1);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.reviews-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #008FC3 0%, #ffc107 50%, #008FC3 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
}

.reviews-intro {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 2px dashed #e5e5e5;
}

.reviews-intro-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.reviews-intro-icon svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
}

.reviews-intro h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.reviews-intro p {
    font-size: 16px;
    color: #666;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.trustoo-widget-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Vertrouwensbadges onder de reviews */
.reviews-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px dashed #e5e5e5;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: #f8f9fa;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    background: #e3f2fd;
    transform: translateY(-2px);
}

.trust-badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #008FC3 0%, #00a8e8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badge-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.trust-badge-content {
    text-align: left;
}

.trust-badge-content strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.trust-badge-content span {
    display: block;
    font-size: 13px;
    color: #666;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 968px) {
    .section-reviews {
        padding: 60px 0;
    }
    
    .section-reviews .section-title {
        font-size: 34px;
    }
    
    .section-reviews .section-subtitle {
        font-size: 16px;
    }
    
    .reviews-wrapper {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .reviews-trust-badges {
        gap: 20px;
    }
    
    .trust-badge-item {
        padding: 12px 20px;
    }
}

@media (max-width: 640px) {
    .section-reviews {
        padding: 50px 0;
    }
    
    .section-reviews .section-title {
        font-size: 28px;
    }
    
    .reviews-wrapper {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .reviews-intro h3 {
        font-size: 20px;
    }
    
    .reviews-intro p {
        font-size: 15px;
    }
    
    .reviews-trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-badge-item {
        width: 100%;
        justify-content: center;
    }
}
