/* ==========================================================================
   Section 2: Trust Highlights Bar
   ========================================================================== */
.trust-bar {
    background-color: #111217;
    border-top: 1px solid rgba(197, 157, 39, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.trust-item:hover .trust-icon-box {
    background: rgba(197, 157, 39, 0.25);
    transform: scale(1.05);
}

.trust-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(197, 157, 39, 0.12);
    border: 1px solid #c59d27;
    color: #c59d27;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.trust-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

.trust-subtitle {
    color: #9ca3af;
    font-size: 0.82rem;
}

@media (max-width: 992px) {
    .service-grid-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}