/* Premium Footer Styles */
.premium-footer {
    position: relative;
    background: url('../images/6.png') center center/cover no-repeat;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.footer-wave-container {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
}

.footer-content {
    position: relative;
    padding: 80px 0 50px;
    background: url('../images/6.png') center center/cover no-repeat;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer-col {
    flex: 1 1 250px;
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #2461FF;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #2461FF;
    border-radius: 10px;
}

.footer-menu,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li,
.footer-links li {
    margin-bottom: 12px;
}

.footer-menu a,
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-left: 15px;
}

.footer-menu a:before,
.footer-links a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #2461FF;
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-menu a:hover,
.footer-links a:hover {
    color: #ffffff;
    padding-left: 20px;
}

.footer-menu a:hover:before,
.footer-links a:hover:before {
    opacity: 1;
    left: 5px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact-info li i {
    margin-top: 5px;
    margin-right: 15px;
    color: #2461FF;
    font-size: 16px;
}

.footer-contact-info li span,
.footer-contact-info li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer-contact-info li a:hover {
    color: #ffffff;
}

.footer-bottom {
    background-color: #0f0f1e;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.payment-methods img {
    height: 30px;
    width: auto;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .footer-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .footer-content {
        padding: 60px 0 30px;
    }
    
    .footer-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-wave-container {
        height: 100px;
        margin-top: -100px;
    }
}

@media (max-width: 480px) {
    .footer-social {
        justify-content: center;
    }
    
    .footer-heading:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-contact-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-contact-info li i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-menu a:before,
    .footer-links a:before {
        display: none;
    }
    
    .footer-menu a,
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-menu a:hover,
    .footer-links a:hover {
        padding-left: 0;
    }
}
