/* Testimony Page Styles */
.testimony-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.testimony-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.testimony-hero p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
}

.testimony-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -2px rgba(0,0,0,0.02);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimony-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}

/* Decorative Quote Icon */
.testimony-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3.5rem;
    color: #f1f5f9;
    z-index: 0;
    line-height: 1;
    font-family: serif;
}

.testimony-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimony-stars {
    color: #fbbf24;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.testimony-text {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
}

.testimony-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #64748b;
    font-size: 1.25rem;
}

/* Different avatar colors based on initials or purely aesthetic */
.avatar-blue { background: #eff6ff; color: #3b82f6; }
.avatar-green { background: #f0fdf4; color: #22c55e; }
.avatar-purple { background: #faf5ff; color: #a855f7; }
.avatar-orange { background: #fff7ed; color: #f97316; }
.avatar-red { background: #fef2f2; color: #ef4444; }

.author-info h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
}

/* Stats Section */
.testimony-stats-block {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    margin-top: 5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.testimony-stats-block h3 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.testimony-stats-block > p {
    color: #64748b;
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.stat-item {
    padding: 1.5rem;
    border-radius: 1rem;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}
