/* Footer Minimal V2 */
.footer-minimal-v2 {
    background: #1a2332;
    color: #fff;
    margin-top: auto;
}

/* Trust bar */
.footer-minimal-v2-trust {
    background: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
}

.footer-minimal-v2-trust-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-minimal-v2-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 13px;
}

.footer-minimal-v2-trust-item i {
    font-size: 20px;
    color: #2695da;
    line-height: 1;
}

/* Payment icons */
.footer-minimal-v2-payment {
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
}

.footer-minimal-v2-payment-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-minimal-v2-payment-inner img {
    height: 28px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-minimal-v2-payment-inner img:hover {
    opacity: 1;
}

/* Main footer */
.footer-minimal-v2-main {
    padding: 25px 0;
}

.footer-minimal-v2-main-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-minimal-v2-contact {
    display: flex;
    gap: 25px;
}

.footer-minimal-v2-contact a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-minimal-v2-contact a:hover {
    color: #fff;
}

.footer-minimal-v2-contact a i {
    color: #2695da;
    line-height: 1;
}

.footer-minimal-v2-copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.footer-minimal-v2-copyright a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer-minimal-v2-copyright a:hover {
    color: #fff;
}

.footer-minimal-v2-legal {
    display: flex;
    gap: 20px;
}

.footer-minimal-v2-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-minimal-v2-legal a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-minimal-v2-trust-inner {
        gap: 25px;
    }

    .footer-minimal-v2-main-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-minimal-v2-contact {
        justify-content: center;
    }

    .footer-minimal-v2-legal {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-minimal-v2-trust-item span {
        display: none;
    }

    .footer-minimal-v2-contact {
        flex-direction: column;
        gap: 10px;
    }

    .footer-minimal-v2-legal {
        flex-wrap: wrap;
        gap: 10px;
    }
}
