/**
 * Universal Value Bar Styles - Updated to match How Mediation Works page
 * Full-width green trust/value bar with testimonial and stats
 */

/* ============================================
   BASE STYLES
   ============================================ */

.value-bar-section {
    background: #014921;
    padding: 60px 0;
    margin-bottom: 0;
}

.value-bar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ============================================
   TESTIMONIAL QUOTE
   ============================================ */

.value-bar-quote {
    color: #ffffff;
    position: relative;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 600px;
}

.value-bar-quote::before {
    content: '"';
    font-size: 120px;
    line-height: 0.8;
    color: rgba(144, 238, 144, 0.5);
    font-family: 'Monument Grotesk', sans-serif;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: -10px;
}

.value-bar-quote blockquote {
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: block;
    margin-top: 15px;
    font-size: 0.95rem;
    font-style: normal;
    opacity: 0.9;
    font-weight: 500;
}

/* ============================================
   STATS & AWARDS
   ============================================ */

.value-bar-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
    align-items: center;
}

.value-bar-stats .stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-bar-stats .stat-value {
    white-space: nowrap;
}

.value-bar-section .value-bar-stats .stat-number {
    display: inline;
    font-family: 'Recoleta', serif;
    font-size: 56px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.value-bar-section .value-bar-stats .stat-suffix {
    display: inline;
    font-family: 'Recoleta', serif;
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.value-bar-stats .stat-label {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   AWARDS
   ============================================ */

.value-bar-stats .award-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-bar-stats .award-logo {
    max-height: 120px;
    max-width: 150px;
    height: auto;
    width: auto;
    object-fit: contain;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 900px) {
    .value-bar-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .value-bar-quote {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .value-bar-quote::before {
        margin-top: 0;
    }

    .value-bar-stats {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .value-bar-section .value-bar-stats .stat-number {
        font-size: 48px;
    }

    .value-bar-section .value-bar-stats .stat-suffix {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .value-bar-section {
        padding: 40px 0;
    }

    .value-bar-quote::before {
        font-size: 100px;
    }

    .value-bar-quote blockquote {
        font-size: 1rem;
    }

    .value-bar-stats {
        gap: 25px;
    }

    .value-bar-section .value-bar-stats .stat-number {
        font-size: 42px;
    }

    .value-bar-section .value-bar-stats .stat-suffix {
        font-size: 32px;
    }

    .award-logo {
        max-height: 100px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .value-bar-quote blockquote {
        font-size: 0.95rem;
    }

    .value-bar-section .value-bar-stats .stat-number {
        font-size: 36px;
    }

    .value-bar-section .value-bar-stats .stat-suffix {
        font-size: 28px;
    }
}
