/* ===== Google Reviews Carousel ===== */

.reviews-carousel-section {
    padding-bottom: 3rem;
}

.reviews-carousel-wrapper {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.reviews-carousel {
    flex: 1;
    position: relative;
    min-height: 260px;
}

/* Slides */
.review-slide {
    display: none;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 4px 24px rgba(10, 42, 94, 0.07);
    animation: reviewFadeIn 0.45s ease;
}
.review-slide.active {
    display: block;
}
@keyframes reviewFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Google badge */
.review-google-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}
.review-g-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #4285F4;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 50%;
    font-style: italic;
    font-family: Georgia, serif;
}
.review-google-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #4285F4;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Stars */
.review-stars {
    color: #f59e0b;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.85rem;
}

/* Review text */
.review-text {
    color: #374151;
    font-size: 1rem;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.25rem;
}

/* Author row */
.review-author-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
}
.review-author-row strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-900);
}
.review-author-row span {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* Prev / Next buttons */
.carousel-btn {
    background: #fff;
    border: 2px solid #e2e8f0;
    color: var(--primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-family: inherit;
}
.carousel-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Dot indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* Pause on hover */
.reviews-carousel-wrapper:hover .carousel-btn {
    opacity: 1;
}

@media (max-width: 600px) {
    .reviews-carousel-wrapper {
        gap: 0.5rem;
        padding: 0 0.25rem;
    }
    .carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
    .review-slide {
        padding: 1.5rem 1.25rem;
    }
    .reviews-carousel {
        min-height: 300px;
    }
}
