.logo-footer {
    max-width: 140px;
    margin-bottom: 20px;
}
.modern-footer {
    background:#000;
    color: #fff;
    padding: 70px 0 30px;
    position: relative; 
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
     background: linear-gradient(90deg, #ff6b6b, #ff9999, #ffb3b3);
}

.footer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ffb3b3;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 8px;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
    color: #fff;
}

.social-icons a:hover {
    background: #ff6b6b;
    transform: translateY(-3px) rotate(360deg);
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info i {
    width: 30px;
    color: #ff6b6b;
}

.payment-methods i {
    font-size: 30px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.payment-methods i:hover {
    color: #ff6b6b;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
