/* ================ HOME PAGE SPECIFIC STYLES ================ */

.testimonial-card {
    background: linear-gradient(165deg, rgba(12,12,25,0.7), rgba(18,18,35,0.7));
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 40px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.testimonial-card:hover {
    border-color: rgba(59,130,246,0.2);
    transform: translateY(-3px);
}

.quote-mark {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 80px;
    color: rgba(59,130,246,0.1);
    font-weight: 900;
    pointer-events: none;
}

.reply-admin {
    background: linear-gradient(145deg, rgba(59,130,246,0.08) 0%, rgba(59,130,246,0.02) 100%);
    border-left: 3px solid #3b82f6;
    position: relative;
    border-radius: 20px;
}

.reply-owner {
    background: linear-gradient(145deg, rgba(139,92,246,0.08) 0%, rgba(99,102,241,0.02) 100%);
    border-left: 3px solid #8b5cf6;
    position: relative;
    border-radius: 20px;
}

.badge-official {
    background: #3b82f6;
    color: white;
    border-radius: 40px;
    padding: 2px 8px;
    font-size: 6px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-owner-official {
    background: #8b5cf6;
    color: white;
    border-radius: 40px;
    padding: 2px 8px;
    font-size: 6px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}