/* Gov/MNC Testimonials Page (About-menu theme)
   Intentionally scoped to `.testimonials-page` to avoid global overrides. */

.testimonials-page {
    --mnc-navy: #001f3f;
    --mnc-navy-2: #00162e;
    --mnc-green: #0d4d4d;
    --mnc-green-2: #1a5f5f;
    --mnc-cream: #faf8f5;
    --mnc-ink: #0f172a;
    --mnc-muted: rgba(15, 23, 42, 0.72);
}

.testimonials-page .testimonials-hero {
    background:
        linear-gradient(135deg, rgba(0, 31, 63, 0.92), rgba(13, 77, 77, 0.88)),
        var(--testimonials-hero-image, url('../../img/gallery-3.jpg'));
    background-size: cover;
    background-position: center;
    padding: 110px 0 70px;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid rgba(26, 95, 95, 0.6);
}

.testimonials-page .testimonials-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.28;
    pointer-events: none;
}

.testimonials-page .testimonials-hero .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-page .testimonials-hero h1 {
    font-weight: 900;
    letter-spacing: 0.3px;
    text-transform: none;
    margin-bottom: 14px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.testimonials-page .testimonials-hero p {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    margin: 0 auto 22px;
    max-width: 760px;
}

.testimonials-page .hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.testimonials-page .btn-mnc {
    border-radius: 10px;
    padding: 12px 16px;
    font-weight: 800;
    letter-spacing: 0.3px;
    border: 2px solid rgba(250, 248, 245, 0.65);
}

.testimonials-page .btn-mnc-primary {
    background: linear-gradient(135deg, var(--mnc-green), var(--mnc-green-2));
    color: var(--mnc-cream);
    border-color: rgba(26, 95, 95, 0.65);
    box-shadow: 0 14px 28px rgba(13, 77, 77, 0.25);
}

.testimonials-page .btn-mnc-primary:hover {
    filter: brightness(1.02);
    transform: translateY(-1px);
}

.testimonials-page .btn-mnc-outline {
    background: rgba(0, 0, 0, 0.12);
    color: #fff;
}

.testimonials-page .btn-mnc-outline:hover {
    background: rgba(0, 0, 0, 0.18);
}

.testimonials-page .section-shell {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.testimonials-page .section-title {
    font-weight: 900;
    color: var(--mnc-ink);
    font-size: 1.45rem;
    margin: 0 0 12px;
}

.testimonials-page .section-subtitle {
    color: var(--mnc-muted);
    font-weight: 600;
    margin: 0;
}

.testimonials-page .stat-row {
    margin-top: -28px;
    position: relative;
    z-index: 2;
}

.testimonials-page .stat-card {
    background: linear-gradient(135deg, #fff, #fbfbfb);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    padding: 18px;
    height: 100%;
}

.testimonials-page .stat-card .kpi {
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--mnc-navy);
    line-height: 1.1;
}

.testimonials-page .stat-card .label {
    margin-top: 6px;
    color: var(--mnc-muted);
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonials-page .story-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    padding: 18px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonials-page .story-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.testimonials-page .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.82rem;
    border: 1px solid rgba(13, 77, 77, 0.20);
    background: rgba(13, 77, 77, 0.08);
    color: var(--mnc-green);
}

.testimonials-page .quote {
    margin: 14px 0 12px;
    color: rgba(15, 23, 42, 0.86);
    font-weight: 600;
    line-height: 1.65;
}

.testimonials-page .byline {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.testimonials-page .byline .name {
    font-weight: 900;
    color: var(--mnc-ink);
}

.testimonials-page .byline .meta {
    color: var(--mnc-muted);
    font-weight: 700;
}

.testimonials-page .process-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    border-top: 1px dashed rgba(15, 23, 42, 0.14);
}

.testimonials-page .process-step:first-child {
    border-top: none;
}

.testimonials-page .process-step .num {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--mnc-cream);
    background: linear-gradient(135deg, var(--mnc-navy), var(--mnc-green));
    flex: 0 0 auto;
}

.testimonials-page .process-step .txt strong {
    display: block;
    font-weight: 900;
    color: var(--mnc-ink);
}

.testimonials-page .process-step .txt span {
    color: var(--mnc-muted);
    font-weight: 600;
}

.testimonials-page .note-box {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.06), rgba(13, 77, 77, 0.06));
    border: 1px solid rgba(13, 77, 77, 0.18);
    border-left: 5px solid rgba(13, 77, 77, 0.55);
    border-radius: 16px;
    padding: 16px;
    color: rgba(15, 23, 42, 0.84);
    font-weight: 650;
}

@media (max-width: 768px) {
    .testimonials-page .testimonials-hero {
        padding: 95px 0 58px;
    }
    .testimonials-page .testimonials-hero h1 {
        font-size: 2.05rem;
    }
}
