/* ============================================
   TESTIMONIALS PAGE STYLES - Simple Version
   ============================================ */

/* ===== INTRO SECTION ===== */
.testimonials-intro {
    padding: 60px 0 40px;
}

.testimonials-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.testimonials-content .lead {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.testimonials-content .lead strong {
    color: var(--gold);
}

.testimonials-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===== FEATURED TESTIMONIALS ===== */
.testimonials-featured {
    padding: 60px 0 80px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 35px 30px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    opacity: 0;
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.featured-card:hover::before {
    opacity: 1;
}

.featured-quote {
    color: var(--gold);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 10px;
}

.featured-stars {
    margin-bottom: 12px;
}

.featured-stars i {
    color: #4a6a8a;
    font-size: 0.9rem;
}

.featured-stars i.active {
    color: var(--gold);
}

.featured-content {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.featured-author {
    display: flex;
    flex-direction: column;
}

.featured-author strong {
    color: var(--text-light);
    font-size: 1rem;
}

.featured-author span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== ALL TESTIMONIALS - SINGLE COLUMN ===== */
.testimonials-grid-section {
    padding: 60px 0 80px;
}

.testimonials-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 30px 35px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    width: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.testimonial-stars {
    margin-bottom: 10px;
}

.testimonial-stars i {
    color: #4a6a8a;
    font-size: 0.85rem;
}

.testimonial-stars i.active {
    color: var(--gold);
}

.testimonial-content {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 14px;
    font-style: italic;
    white-space: pre-wrap;
}

.testimonial-author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.testimonial-author strong {
    color: var(--text-light);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== EMPTY STATE ===== */
.testimonials-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 60px 0;
}

.testimonials-empty i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-card {
        padding: 25px 20px;
    }
    
    .testimonial-card {
        padding: 20px 18px;
    }
    
    .testimonial-content {
        font-size: 0.9rem;
    }
    
    .testimonials-intro {
        padding: 40px 0 20px;
    }
    
    .testimonials-featured {
        padding: 40px 0 60px;
    }
    
    .testimonials-grid-section {
        padding: 40px 0 60px;
    }
}

@media (max-width: 480px) {
    .testimonials-content h1 {
        font-size: 1.8rem;
    }
    
    .testimonials-content .lead {
        font-size: 1rem;
    }
    
    .featured-content {
        font-size: 0.85rem;
    }
    
    .testimonial-content {
        font-size: 0.85rem;
    }
    
    .testimonial-card {
        padding: 16px 14px;
    }
}