/**
 * Trust Logos - Hero Marquee
 * Horizontal scrolling trust elements
 * 
 * @package RealSales
 */

/* ===============================================
   TRUST LOGOS MARQUEE
   =============================================== */

.trust-marquee {
    padding: 10px 40px 40px 40px;
    margin-top: 20px;
    background: #7C3AED;
    overflow: hidden;
    position: relative;
}

.trust-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trust-marquee-inner {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.trust-marquee-track {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.trust-logo {
    flex-shrink: 0;
    width: 160px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-logo:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.trust-logo img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.9);
    transition: filter 0.3s ease;
}

.trust-logo:hover img {
    filter: brightness(0) invert(1) opacity(1);
}

/* ===============================================
   RESPONSIVE
   =============================================== */

@media (max-width: 1024px) {
    .trust-logo {
        width: 140px;
        height: 55px;
    }
    
    .trust-marquee-track {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .trust-marquee {
        padding: 30px 20px;
    }
    
    .trust-logo {
        width: 120px;
        height: 50px;
        padding: 10px 16px;
    }
    
    .trust-marquee-track {
        gap: 32px;
    }
}
