/* Ensure you have a font like 'Poppins' linked in your HTML, or change to your preferred font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- NEW FOOTER V2 STYLES --- */

.footer-v2-background {
    background-color: #1a1a1a; /* Sophisticated dark charcoal */
    color: #f0f0f0;
    font-family: 'Poppins', sans-serif;
    padding: 60px 0 20px 0;
    width: 100%;
}

.footer-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

/* --- Top Section: Branding & Social --- */
.footer-v2-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-v2-branding {
    flex: 2;
    max-width: 400px;
}

.footer-v2-logo {
    max-width: 60px;
    margin-bottom: 20px;
}

.footer-v2-tagline {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-v2-social {
    flex: 1;
    text-align: right;
}

.footer-v2-social .social-icons-container {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 15px;
}

.footer-v2-social a {
    color: #f0f0f0;
    font-size: 18px;
    background-color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-v2-social a:hover {
    background-color: #fff;
    color: #1a1a1a;
}


/* --- Middle Section: Links --- */
.footer-v2-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-v2-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-v2-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-v2-column ul li {
    margin-bottom: 12px;
}

.footer-v2-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-v2-column ul li a:hover {
    color: #fff;
    padding-left: 5px;
    text-decoration: underline;
}

.footer-v2-column .contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b0b0;
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-v2-column .contact-info i {
    color: #fff;
}

.footer-v2-column .contact-info a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-v2-column .contact-info a:hover {
    color: #fff;
}

/* --- Bottom Section: Copyright & Payments --- */
.footer-v2-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #888;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 28px;
}

.payment-methods i {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.payment-methods i:hover {
    opacity: 1;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .footer-v2-top {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-v2-background {
        padding: 40px 0 20px 0;
    }
    .footer-v2-top,
    .footer-v2-bottom {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-v2-social {
        text-align: center;
        width: 100%;
    }
    
    .footer-v2-social .social-icons-container {
        justify-content: center;
    }

    .footer-v2-links {
        grid-template-columns: 1fr 1fr; /* Two columns for medium screens */
        text-align: left;
    }

    .footer-v2-bottom {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .footer-v2-links {
        grid-template-columns: 1fr; /* Single column for small screens */
        text-align: center;
    }

    .footer-v2-column .contact-info {
        justify-content: center;
    }
}