/* ========== Footer Section ========== */

.footer-container {
    width: 100%;
    padding: 30px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer {
    background: url(../images/common/backgrounds/ad-noise.png) var(--primary-black);
    color: var(--primary-white);
    padding: 20px 0;
}

.footer-logo-side {
    flex-basis: 35%;
    min-width: 200px;
}

.footer-logo-img {
    height: 60px;
    /* match navbar */
}

.footer-tagline {
    font-size: 20px;
    padding-bottom: 10px;
}

.footer-description {
    font-size: 13px;
    font-style: italic;
}


/*Social Icons*/
.footer-social-icons ul {
    padding-left: 0;
    margin-top: 30px;
    margin-bottom: 10px;
    transition: transform 0.5s;
}

.footer-social-icons ul li {
    font-size: 15px;
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
}

.footer-social-icons ul li a {
    overflow: hidden;
    border-radius: 50%;
    display: block;
    color: var(--primary-white);
    height: 40px;
    line-height: 40px;
    width: 40px;
    border: 1px solid var(--primary-white);
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.footer-social-icons ul li a:hover {
    transform: translateY(-8px);
}

.footer .button-center {
    margin-top: 30px;
}

.footer .button-center h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-white);
}

.btn.footer-apply-btn {
    background-color: transparent;
    border: 2px solid var(--primary-white);
    color: var(--primary-white);
    font-weight: 600;
    margin-left: 1px;
    margin-top: 20px;
    text-decoration: none;
}

.btn.footer-apply-btn-hvr:hover {
    background-color: transparent;
    border: 2px solid var(--primary-white);
    color: var(--primary-white);
    font-weight: 600;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.6);
}

.btn.footer-apply-btn i {
    margin-left: 5px;
    font-size: 13px;
    display: inline-block;
    animation: drop-icon 2s infinite ease-in-out;
}

@keyframes drop-icon {
    0% {
        transform: translate(-3px, 3px);
        opacity: 0.8;
    }

    50% {
        transform: translate(3px, -3px);
        opacity: 1;
    }

    100% {
        transform: translate(-3px, 3px);
        opacity: 0.8;
    }
}

.footer-column {
    flex-basis: 35%;
    min-width: 150px;
}

.footer-column:nth-child(2) {
    flex-basis: 35%;
}

.footer-column:nth-child(3) {
    flex-basis: 35%;
}

.footer-column.contact {
    flex-basis: 45%;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 16px;
    padding-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    font-weight: 600;
    transform: translateX(8px);
}

.contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--primary-white);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    text-align: left;
}

.contact p i {
    font-size: 16px;
    color: var(--primary-white);
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.contact p a,
.contact p span {
    color: var(--primary-white);
    text-decoration: none;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    display: inline-block;
}

.contact p:hover a,
.contact p:hover span {
    transform: translateX(5px);
    color: var(--green-color-primary);
}


/* Horizontal Divider */

.footer-divider {
    border: 0;
    height: 1px;
    background-color: var(--black-color-3);
    margin: 20px 0;
}

.footer-awards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 140px;
    padding-top: 20px;
    padding-bottom: 35px;
}

.footer-awards-row img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-awards-row img:hover {
    transform: scale(1.05);
}

.footer-top-nav {
    background-color: var(--black-bg-6);
    padding: 10px 0;
    text-align: center;
}

.footer-top-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-top-nav ul li {
    display: inline;
    margin: 0 15px;
}

.footer-top-nav ul li a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 14px;
    text-transform: lowercase;
}

.footer-top-nav ul li a:hover {
    color: var(--green-color-primary);
}


.footer-menu-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding: 40px 80px;
}

.footer-links {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-white);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--green-color-primary);
}


/* Footer Bottom Section */
.footer-bottom {
    width: 100%;
    padding: 30px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.copyright {
    font-size: 14px;
    color: var(--primary-white);
    text-decoration: none;
}

.copyright a {
    font-size: 14px;
    color: var(--primary-white);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--green-color-primary);
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.footer-bottom-links li {
    display: inline;
}

.footer-bottom-links li a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom-links li a:hover {
    color: var(--green-color-primary);
}


.footer-disclaimer {
    font-size: 12px;
    font-style: italic;
    width: 100%;
    padding: 3px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-disclaimer span {
    font-weight: 600;
    font-style: normal;
}

/* == Footer Section Media Query == */
@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 30px 20px;
    }

    .footer-tagline {
        font-size: 17px;
        padding-bottom: 10px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
    }

    .footer-awards-row {
        gap: 40px;
        padding-top: 20px;
        padding-bottom: 35px;
    }

    .footer-awards-row img {
        width: 60px;
        height: 60px;
    }

    .footer-awards-row img:hover {
        transform: scale(1.05);
    }

    .footer-columns-wrapper {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding-left: 20px;
        gap: 25px;
    }

    .footer-columns-wrapper .footer-column {
        flex: 1;
        min-width: 45%;
        text-align: left;
    }

    .contact p i {
        font-size: 14px;
    }

    .contact p a {
        font-size: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 30px 60px;
    }

    .footer .button-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1px;
        margin-bottom: 30px;
    }

    .footer-top-nav ul li a {
        font-size: 12px;
    }

    .footer-menu-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 1px;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0;
        width: 100%;
        text-align: left;
        align-items: start;
        overflow-x: hidden;
    }

    .footer-links {
        width: auto;
        margin: 0;
    }

    .footer-links h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .footer-links ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .footer-links ul li {
        margin-bottom: 8px;
    }

    .footer-links ul li a {
        font-size: 14px;
        text-decoration: none;
        color: var(--primary-white);
    }

    .footer-disclaimer {
        padding: 10px 10px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        margin-top: 15px;
    }

}


@media (min-width: 769px) {
    .footer-container {
        display: flex;
        justify-content: space-between;
    }

    .footer-columns-wrapper {
        display: contents;
    }

    .footer-column {
        flex-basis: 20%;
    }

    .footer .button-center {
        display: flex;
        justify-content: flex-start;
    }

    .footer .button-center {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}