/* Testimonials Page Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--deep-shadow);
    margin-bottom: 1.5rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--gold-accent);
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    padding: 2rem;
    flex-grow: 1;
    position: relative;
}

.quote-icon {
    color: var(--gold-accent);
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--deep-shadow);
    font-style: italic;
    position: relative;
}

.rating {
    color: var(--gold-accent);
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.client-info {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(108, 122, 137, 0.05);
    border-top: 1px solid rgba(108, 122, 137, 0.1);
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid var(--gold-accent);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--deep-shadow);
}

.client-details p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--deep-shadow);
    color: var(--white);
    margin-top: 3rem;
    border-radius: 10px;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gold-accent);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-hero {
        height: 40vh;
    }
    
    .testimonials-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .testimonials-hero {
        height: 50vh;
        padding-top: 80px;
    }
    
    .testimonials-hero .tagline {
        font-size: 1.1rem;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
    }
    
    .client-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}


/*Category/tag*/
/* Testimonial Filters */
.testimonial-filters {
    text-align: center;
    margin: 2rem 0;
}

.filter-btn {
    background: #f5f5f5;
    border: 2px solid #d4af37;
    color: #0a2342;
    padding: 0.5rem 1.5rem;
    margin: 0.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #d4af37;
    color: white;
}

/* Add transition to testimonial cards */
.testimonial-card {
    transition: all 0.3s ease;
}