/*8 Reviews Section 


*/

/* Trust Badge Styling */
.trust-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.badge-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--steel-blue);
    padding: 10px 25px;
    border-radius: 50px; /* Pill shape */
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.rating-score {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bright-white);
}

.rating-stars, .slide-stars {
    color: #fbbc04; /* Official Google Star Yellow */
    letter-spacing: 2px;
}

.half-star {
    color: var(--steel-blue); /* Greys out the last star for a 4.1 look */
}

.rating-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.rating-text strong {
    color: var(--bright-white);
}

/* Carousel Layout */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden; /* Hides the scrollbar visually but keeps functionality */
    background: url("../assets/images/hero-image.webp") center/cover;
     border-radius: 8px;
     padding: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Smooth mobile swiping */
    
    padding-bottom: 20px; /* Room for shadow */
    
    /* Hide scrollbar for clean look */
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}


.carousel-track::-webkit-scrollbar {
    display: none;
}

/* Review Cards */
.review-card {
    min-width: 100%; /* Shows one card at a time. Change to 45% for two cards */
    background: var(--deep-navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--construction-orange);
    border-radius: 8px;
    padding: 40px 30px;
    scroll-snap-align: center; /* Snaps into place */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .review-card {
        min-width: calc(50% - 15px); /* Shows two cards side-by-side on desktop */
    }
}

.quote-mark {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
}

.review-text {
    color: var(--bright-white);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin: 20px 0;
    position: relative;
    z-index: 2;
}

.review-author h4 {
    color: var(--construction-orange);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.verified-tag {
    font-size: 0.85rem;
    color: #2ecc71; /* Success green */
}

/* Navigation Buttons */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel-btn {
    background: transparent;
    border: 2px solid var(--steel-blue);
    color: var(--bright-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--construction-orange);
    border-color: var(--construction-orange);
    transform: scale(1.1);
}
