/* =============================================================
   SECTION — Testimonials
   ============================================================= */

#testimonials {
    padding: 140px 0;
    background-color: var(--brand-black);
    position: relative;
    overflow: hidden;
}

.testimonial-badge {
    background: linear-gradient(90deg, rgba(225, 169, 115, 0.12), rgba(225, 169, 115, 0.02));
    color: var(--gold-primary);
    border-right: 2px solid var(--gold-primary);
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.luxury-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    direction: rtl;
}

.testimonial-card {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 45px 35px;
    border-radius: 4px;
    text-align: right;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 169, 115, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: 25px;
    font-size: 100px;
    color: rgba(225, 169, 115, 0.04);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s;
}
.testimonial-card:hover .quote-mark { color: rgba(225, 169, 115, 0.08); }

.stars-container {
    color: var(--gold-primary);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #aeaeae;
    font-size: 14.5px;
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: justify;
}

.client-info {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 15px;
    margin-top: auto;
}
.client-info h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.client-info span {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
}
