body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

/* =========================
   SECTION
========================= */
.reviews-section {
    padding: 90px 20px 120px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    text-align: center;
}

/* =========================
   HEADER
========================= */
.score {
    font-size: 40px;
    color: #ffc107;
}

.reviews-header h2 {
    font-size: 2.2rem;
    margin: 10px 0;
}

.reviews-header p {
    color: #666;
}

/* =========================
   BADGE
========================= */
.badge {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: #e8f5e9;
    color: #2e7d32;
    opacity: 0;
    transition: 0.3s ease;
}

.badge.show {
    opacity: 1;
}

/* =========================
   CAROUSEL WRAPPER
========================= */
.reviews-container {
    position: relative;
    max-width: 1400px;
    margin: 50px auto;

    display: flex;
    align-items: center;

    overflow: hidden;
}

/* =========================
   TRACK
========================= */
.reviews-track {
    display: flex;
    gap: 25px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    padding: 25px 10px;

    width: 100%;

    scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

/* =========================
   CARD
========================= */
.review-card {
    flex: 0 0 320px;

    scroll-snap-align: start;

    background: #fff;
    border-radius: 20px;

    padding: 30px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    text-align: left;

    transition: 0.25s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

/* =========================
   PROFILE
========================= */
.profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-fallback {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1877f2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* =========================
   STARS
========================= */
.stars {
    color: #ffc107;
    margin: 10px 0 15px;
    font-size: 18px;
}

/* =========================
   ARROWS
========================= */
.arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1877f2;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.arrow:hover {
    transform: scale(1.05);
}

/* =========================
   FADE EDGES
========================= */
.fade-left,
.fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, #f8fbff, transparent);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, #f8fbff, transparent);
}

/* =========================
   CTA BUTTONS (DESKTOP)
========================= */
.cta-wrapper {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.fb-btn,
.book-btn,
.wa-btn {
    padding: 12px 18px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.fb-btn { background: #1877f2; }
.book-btn { background: #111827; }
.wa-btn { background: #25D366; }

.fb-btn:hover,
.book-btn:hover,
.wa-btn:hover {
    transform: translateY(-2px);
}

/* =========================
   STICKY CTA (MOBILE ONLY)
========================= */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    display: none;

    background: white;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);

    padding: 10px;
    justify-content: space-around;
    z-index: 999;
}

.sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    margin: 0 5px;
}

/* =========================
   RESPONSIVE SWITCH
========================= */
@media (max-width: 768px) {

    .review-card {
        flex: 0 0 85%;
    }

    /* desktop CTA uit */
    .cta-wrapper {
        display: none;
    }

    /* mobile CTA aan */
    .sticky-cta {
        display: flex;
    }
}

/* =========================
   SAFETY
========================= */
.review-card:focus {
    outline: none;
}