/* ================================================================
   TGT TESTIMONIALS SECTION (FINAL LUXURY GRID DESIGN)
   ================================================================ */

/* Section Base & Header */
.tgt-testimonials-section {
    background: #102842; /* Solid Dark Blue Background */
    padding: clamp(5rem, 12vw, 8rem) 0;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.tgt-testimonials-container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-title-dark {
    color: #d4a574; /* Gold Title */
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase; /* Title in ALL CAPS */
    letter-spacing: 0.1em;
}

.section-subtitle-dark {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
    line-height: 1.6;
}

/* Testimonials Grid Layout */
.tgt-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .tgt-testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .tgt-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Testimonial Card Styling */
.tgt-testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(2rem, 5vw, 2.5rem);
    border-radius: 20px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    color: #ffffff;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
    flex-grow: 1;
}

/* Author & SVG Avatar Styling */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #d4a574;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar-icon {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.author-name {
    display: block;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.author-detail {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}