.footer-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}
.footer-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    pointer-events: none;
}
.footer-gradient h6 {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-gradient h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.5);
}
.footer-gradient ul {
    list-style: none;
    padding: 0;
}
.footer-gradient ul li {
    margin-bottom: 15px;
}
.footer-gradient a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}
.footer-gradient a:hover {
    color: white;
    padding-left: 5px;
}
.social-gradient a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-right: 10px;
    transition: all 0.3s;
}
.social-gradient a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}
.payment-gradient i {
    font-size: 30px;
    margin-right: 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.payment-gradient i:hover {
    opacity: 1;
}
.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}
.logo-footer {
    max-height:80px;
    margin-bottom: 20px;
}
.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}