:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5e11dcf *//* ---------- TESTIMONIALS SECTION (UPDATED) ---------- */
.testimonials {
    padding: 90px 0 80px;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 44px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-card .stars {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .author .avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

.testimonial-card .author .name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.98rem;
}

.testimonial-card .author .title {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-top: 2px;
}

/* ---------- DEDICATED TESTIMONIALS PAGE HEADER (If using the standalone page) ---------- */
.page-header {
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 90px 0;
    text-align: center;
    color: var(--white);
}

.page-header .section-title {
    color: var(--white);
}

.page-header .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin: 12px auto 0;
}/* End custom CSS */