/* =============================================
   Over Ons — About, Stats, Reviews
   ============================================= */

/* ---------- About section ---------- */
.about-section {
    padding: 5rem 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-label {
    margin-bottom: 0.75rem;
    color: #FFB61B;
}

.about-text h2 {
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 1.2rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #555570;
    margin-bottom: 1rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -1.2rem;
    left: -1.2rem;
    background: #FFB61B;
    color: #1a1a2e;
    border-radius: 14px;
    padding: 1rem 1.4rem;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
    box-shadow: 0 8px 24px rgba(255, 182, 27, 0.35);
}

.about-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

/* ---------- Stats bar ---------- */
.stats-bar {
    background: #f6f7fb;
    border-top: 1px solid #e8e8f0;
    border-bottom: 1px solid #e8e8f0;
    padding: 2.4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #FFB61B;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666680;
    font-weight: 500;
}

/* ---------- Reviews carousel ---------- */
.reviews-section {
    padding: 5rem 0;
}

.reviews-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.reviews-track-outer {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reviews-track .review-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
}

.carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 182, 27, 0.4);
    background: #fff;
    color: #7a5000;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.carousel-btn:hover:not(:disabled) {
    background: #FFB61B;
    color: #1a1a2e;
    border-color: #FFB61B;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.review-card {
    background: #fff;
    border: 1.5px solid #e8e8f0;
    border-radius: 16px;
    padding: 1.6rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.review-meta strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
}

.review-meta span {
    font-size: 0.8rem;
    color: #666680;
}

.review-stars {
    color: #fbbc04;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.93rem;
    line-height: 1.7;
    color: #444460;
    flex: 1;
}

.reviews-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.reviews-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #FFB61B;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    box-shadow: 0 4px 18px rgba(255, 182, 27, 0.4);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.reviews-cta a:hover {
    background: #e6a000;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 182, 27, 0.5);
}

/* Reviews dots + swipe hint (mobile only) */
.reviews-dots {
    display: none;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.2rem;
}

.reviews-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0e0;
    transition: background 0.25s, transform 0.25s;
    flex-shrink: 0;
}

.reviews-dot.active {
    background: #FFB61B;
    transform: scale(1.35);
}

.swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #666680;
    margin-top: 0.7rem;
    transition: opacity 0.4s;
}

.swipe-hint i {
    font-size: 0.85rem;
}

/* Services redirect block on over-ons page */
.diensten-link-section {
    padding: 5rem 0;
    background: #0D1626;
    position: relative;
    overflow: hidden;
}

.diensten-link-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 182, 27, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.diensten-link-wrap {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.diensten-link-wrap h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.diensten-link-wrap p {
    color: rgba(236, 243, 255, 0.82);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.diensten-link-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0.15rem 0 1.6rem;
}

.diensten-link-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 0.42rem 0.78rem;
    font-size: 0.84rem;
    font-weight: 600;
}

.diensten-link-points i {
    color: #FFB61B;
}

.diensten-link-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.diensten-link-actions .btn-primary,
.diensten-link-actions .diensten-link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.82rem 1.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.diensten-link-actions .btn-primary {
    background: #FFB61B;
    color: #1a1a2e;
    box-shadow: 0 8px 20px rgba(255, 182, 27, 0.28);
}

.diensten-link-actions .btn-primary:hover {
    background: #ffbf44;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255, 182, 27, 0.4);
}

.diensten-link-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.diensten-link-secondary:hover {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* =============================================
   Responsive — Over Ons Page
   ============================================= */

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        order: -1;
    }

    .about-badge {
        bottom: -1rem;
        left: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .carousel-btn {
        display: none;
    }

    .reviews-track .review-card {
        flex: 0 0 100%;
    }

    .review-card {
        padding: 1.2rem;
        gap: 0.6rem;
    }

    .review-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .reviews-dots {
        display: flex;
    }

    .swipe-hint {
        display: flex;
    }
}

@media (max-width: 600px) {
    .diensten-link-wrap {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .diensten-link-actions {
        flex-direction: column;
        align-items: center;
    }

    .diensten-link-actions .btn-primary,
    .diensten-link-actions .diensten-link-secondary {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
