/*
=================================================
--- TESTIMONIAL CAROUSEL ---
=================================================
*/

/* This creates the full-width container effect for the new section */
.reviews-section {
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}

.testimonial-card {
    border: 2px solid var(--border-color);
    border-radius: 15px;
    background-color: rgba(15, 29, 26, 0.4);
    box-shadow: 0 0 15px transparent;
    transition: all 0.3s ease-in-out;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px); /* Increased upward movement */
    box-shadow: 0 10px 30px var(--border-glow-color); /* Increased glow */
    border-color: var(--border-glow-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(8, 18, 16, 0.7);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-meta h5 {
    color: var(--text-icon-color);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-stars {
    color: var(--text-icon-color);
    text-shadow: 0 0 10px var(--text-glow-color);
    letter-spacing: 2px;
    font-size: 1rem;
}

.testimonial-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows the "Read More" to stick to the bottom */
}

.testimonial-body p {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1; /* Pushes the link down */
}

.testimonial-body .read-more {
    color: var(--text-icon-color);
    text-decoration: underline;
    text-decoration-color: var(--border-color);
    font-weight: bold;
    transition: all 0.2s ease;
    margin-top: auto; /* Aligns to the bottom of the flex container */
    align-self: flex-start; /* Prevents it from stretching full-width */
}

.testimonial-body .read-more:hover {
    color: #fff;
    text-decoration-color: var(--text-icon-color);
}

/* Slick Carousel Specifics */
.review-carousel .slick-track {
    display: flex !important;
}

.review-carousel .slick-slide {
    height: inherit !important;
    display: flex !important;
    padding: 0 12px;
}

/* FIX for hover effect getting cropped */
.review-carousel .slick-list {
    margin: -15px -12px;
    padding: 15px 0;
}

/* Navigation Buttons */
.carousel-nav-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.carousel-btn {
    width: 55px;
    height: 55px;
    background-color: var(--bg-color);
    color: var(--text-icon-color);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 0 15px var(--border-glow-color);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: #0c1311;
    color: #fff;
    box-shadow: 0 0 25px var(--border-glow-color);
    transform: scale(1.05);
}