/* REWRITE FROM SCRATCH TO ENSURE ALIGNMENT */

body .footer {
    background-color: #ffffff !important;
    color: #22223A !important;
    padding: 60px 0 !important;
    font-family: 'Poppins', 'Outfit', sans-serif !important;
    border-top: 1px solid #f0f0f0 !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

body .footer-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    align-items: center !important;
    max-width: 1400px !important;
    /* Increased max-width */
    margin: 0 auto !important;
    padding: 0 3% !important;
    /* Reduced padding */
    gap: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Left Column */
body .footer-left {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}

body .footer-socials {
    display: flex !important;
    gap: 12px !important;
    margin-bottom: 10px !important;
}

body .footer-socials img.social {
    width: 32px !important;
    height: 32px !important;
    display: block !important;
}

body .footer-contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

body .footer-contact-info p {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 15px !important;
    color: #22223A !important;
}

body .footer-contact-info a {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

body .footer-contact-info a:hover {
    color: #9ca3af !important;
}

/* Center Column */
body .footer-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

body .footer-badge img {
    width: 110px !important;
    height: auto !important;
    display: block !important;
}

/* Right Column - THE CRITICAL PART */
body .footer-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    /* Aligns the block and its contents to the right */
    text-align: right !important;
    /* Ensures text inside lines is right-aligned */
    justify-self: end !important;
}

body .footer-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    /* Forces links to the right edge */
    gap: 2px !important;
    margin-bottom: 2px !important;
}

body .footer-nav a {
    color: #22223A !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    display: block !important;
    transition: color 0.3s ease !important;
}

body .footer-nav a:hover {
    color: #9ca3af !important;
}

body .footer-copy {
    margin: 0 !important;
    font-size: 13px !important;
    color: #22223A !important;
    font-weight: 400 !important;
    display: block !important;
}

/* Responsive */
@media (max-width: 992px) {
    body .footer-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 40px !important;
    }

    body .footer-left,
    body .footer-right,
    body .footer-nav {
        align-items: center !important;
        text-align: center !important;
        justify-self: center !important;
    }

    body .footer-contact-info p {
        justify-content: center !important;
    }
}