.testimonials {
    padding: 130px 20px;
    background: linear-gradient(to bottom, #000814, #001d3d);
    position: relative;
    overflow: hidden;
    color: #d1d5db;
}

 /* =========================
   TESTIMONIALS – LUXURY DARK
========================= */
.testimonials {
    padding: 130px 20px;
    background: linear-gradient(to bottom, #000814, #001d3d);
    position: relative;
    overflow: hidden;
    color: #d1d5db;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-block;
    color: var(--brand-yellow);
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonials-header h2 {
    font-size: 38px;
    color: var(--brand-yellow);
}

/* GRID */
.testimonials-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/* CARD */
.testimonial-card {
    background: #0f0f30; /* dark luxury card */
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.7);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: #d1d5db;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(255,204,0,0.05); /* subtle gold quote mark */
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 90px rgba(255,204,0,0.15); /* subtle gold glow */
}

/* CARD TEXT */
.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 20px;
}

.testimonial-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-yellow);
}

.testimonial-card span {
    font-size: 14px;
    color: #a0aec0; /* muted light gray for roles */
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

 /* TESTIMONIAL CARD – LUXURY DARK */
.testimonial-card {
    background: #0f0f30; /* dark luxury card */
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.7);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: #d1d5db; /* soft gray text */
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(255,204,0,0.05); /* subtle gold quote mark */
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 90px rgba(255,204,0,0.15); /* soft gold glow on hover */
}

/* STARS */
.stars {
    color: var(--brand-yellow);
    font-size: 18px;
    margin-bottom: 15px;
}

/* TEXT */
.testimonial-card p {
    font-size: 16px;
    color: #d1d5db; /* soft gray for readability */
    line-height: 1.7;
    margin-bottom: 25px;
}

/* CLIENT INFO */
.client strong {
    display: block;
    color: var(--brand-yellow); /* gold client name */
    font-weight: 600;
}

.client span {
    font-size: 13px;
    color: #a0aec0; /* muted light gray for role */
}


/* MOBILE */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-header h2 {
        font-size: 28px;
    }
}
 

 .review-summary {
    max-width: 1100px;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f0f30, #001d3d); /* dark luxury card */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7); /* deeper shadow for luxury feel */
    margin-bottom: 80px;
    color: #d1d5db; /* soft gray text */
}

/* RATING SCORE */
.rating-score strong {
    font-size: 48px;
    color: var(--brand-yellow); /* gold rating number */
}

.rating-score .stars {
    color: var(--brand-yellow); /* gold stars */
    font-size: 18px;
    margin: 5px 0;
}

.rating-score span {
    font-size: 14px;
    color: #a0aec0; /* muted gray for label text */
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .review-summary {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }
}

 