/* --- TESTIMONIALS SECTION CONTAINER --- */
.testimonials-section {
    background-color: var(--light-bg); /* Soft grey background */
    padding: 100px 0;
}

/* --- THE GRID LAYOUT --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 30px;
}

/* --- INDIVIDUAL TESTIMONIAL CARDS --- */
.testimonial-card {
    background-color: var(--white); /* Pure white cards */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04); /* Soft, premium shadow */
    position: relative; /* Needed to position the quote icon absolutely */
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* The giant faded quote icon in the background */
.quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 60px;
    color: var(--primary-blue);
    opacity: 0.05; /* Barely visible, super elegant */
    z-index: -1;
}

/* 5-Star Rating */
.stars {
    color: #f5b301; /* Professional gold color */
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* The Review Text */
.review-text {
    font-size: 16px;
    font-style: italic;
    color: var(--secondary-grey);
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes the client info nicely to the bottom */
}

/* The Client Name & Title */
.client-info {
    border-top: 1px solid #f0f0f0; /* Clean separator line */
    padding-top: 20px;
}

.client-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.client-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue); /* Navy blue title */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr; /* Stacks into 1 column on phones */
    }
    .testimonial-card {
        padding: 30px; /* Slightly less padding on mobile */
    }
}