/* Footer Styles with Poppins Font */
.footer {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(120deg, rgba(10, 8, 41, 0.97) 0%, rgba(26, 26, 92, 0.95) 100%);
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

.footer h4, .footer h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer p, .footer span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.footer a {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer .social-icons a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer .social-icons a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer .list-unstyled li {
    margin-bottom: 0.75rem;
}

/* Copyright section */
.footer .copyright {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
}

/* Payment methods section */
.footer .payment-methods img {
    height: 30px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .footer {
        text-align: center;
    }
    
    .footer .social-icons {
        justify-content: center;
        margin-bottom: 2rem;
    }
} 