/* USMF - Trust Strip Bottom Fix */

/* Bottom Trust Strip - Desktop */
.trust-strip-bottom {
    background: #1f2937;
    padding: 25px 0;
    position: relative;
    z-index: 100;
    border-top: 3px solid #2563eb;
}

@media (min-width: 769px) {
    .trust-strip-bottom .trust-items {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        flex-wrap: wrap;
    }
    
    .trust-strip-bottom .trust-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: white;
        padding: 10px 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    
    .trust-strip-bottom .trust-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .trust-strip-bottom .trust-item img {
        width: 35px;
        height: 35px;
        object-fit: contain;
    }
    
    .trust-strip-bottom .trust-item i {
        font-size: 1.8rem;
        color: #60a5fa;
    }
    
    .trust-strip-bottom .trust-item span {
        font-size: 0.9rem;
        font-weight: 600;
        color: white;
        white-space: nowrap;
    }
}

/* Mobile Trust Strip Bottom */
@media (max-width: 768px) {
    .trust-strip-bottom {
        background: #1f2937 !important;
        padding: 20px 0 !important;
        position: relative !important;
        z-index: 100 !important;
        width: 100% !important;
        border-top: 2px solid #2563eb !important;
        margin-bottom: 80px !important; /* Space for WhatsApp button */
    }
    
    .trust-strip-bottom .container {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    .trust-strip-bottom .trust-items {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .trust-strip-bottom .trust-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 15px 8px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        min-height: 75px !important;
        gap: 8px !important;
        position: relative !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .trust-strip-bottom .trust-item img {
        width: 30px !important;
        height: 30px !important;
        object-fit: contain !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        filter: brightness(1.2) !important;
    }
    
    .trust-strip-bottom .trust-item i {
        font-size: 1.6rem !important;
        color: #60a5fa !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .trust-strip-bottom .trust-item span {
        font-size: 0.75rem !important;
        color: white !important;
        line-height: 1.3 !important;
        font-weight: 500 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 380px) {
    .trust-items {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        padding: 0 10px !important;
    }
    
    .trust-item {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 10px !important;
        min-height: 50px !important;
    }
    
    .trust-item img,
    .trust-item i {
        flex-shrink: 0 !important;
    }
    
    .trust-item span {
        text-align: left !important;
        font-size: 0.75rem !important;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .trust-items {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    
    .trust-item {
        min-height: 60px !important;
        padding: 8px !important;
    }
    
    .trust-item img {
        width: 24px !important;
        height: 24px !important;
    }
    
    .trust-item i {
        font-size: 1.3rem !important;
    }
    
    .trust-item span {
        font-size: 0.65rem !important;
    }
}

/* Fix for SVG images */
.trust-item img[src*="svg"] {
    width: 30px !important;
    height: 30px !important;
}

/* Ensure no text duplication */
.trust-item * {
    pointer-events: none !important;
}

.trust-item {
    pointer-events: auto !important;
}

/* Animation for trust items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-item {
    animation: fadeInUp 0.5s ease forwards;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.15s; }
.trust-item:nth-child(3) { animation-delay: 0.2s; }
.trust-item:nth-child(4) { animation-delay: 0.25s; }
.trust-item:nth-child(5) { animation-delay: 0.3s; }