/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testi-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
}

.testi-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stars {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.testi-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Special Cat Card */
.special-cat-card {
    background: linear-gradient(135deg, #fff, #fff9f0);
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.special-cat-card::before {
    content: '\f1b0';
    /* Paw icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    color: rgba(181, 156, 110, 0.1);
    transform: rotate(25deg);
    pointer-events: none;
}