/* ========================================
   FOOTER STYLES
   ======================================== */
footer {
    background: var(--second-color);
    color: var(--text-color);
    padding: 30px 0;
    font-size: 14px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left Section: Apps Stacked */
.footer-apps-stacked {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-app-item {
    display: flex;
    flex-direction: column;
}

.footer-app-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-app-meta i {
    font-size: 20px;
}

.footer-app-btn-img {
    height: 75px;
    width: auto;
    transition: var(--transition);
    display: block;
}

.footer-app-btn-img:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Right Section: Info & Navigation */
.footer-info-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex: 1;
}

.footer-nav-horizontal {
    margin-bottom: 30px;
}

.footer-nav-horizontal ul {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-nav-horizontal a {
    font-weight: 700;
    color: var(--footer-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    padding-bottom: 4px;
    border-bottom: 3px solid transparent;
}

.footer-nav-horizontal a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    text-decoration: none;
}

.footer-company-details h3 {
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-company-details p {
    margin-bottom: 5px;
    opacity: 0.9;
    line-height: 1.4;
}

.footer-company-details a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    justify-content: flex-start;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--button-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: right;
    padding-top: 10px;
    opacity: 0.5;
    font-size: 14px;
    width: 100%;
}

@media (max-width: 768px) {
    /* Footer Changes */
    footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 15px;
    }

    .footer-nav-horizontal {
        display: none;
    }

    .footer-apps-stacked {
        order: 1;
        align-items: center;
        margin-bottom: 25px;
        width: 100%;
    }

    .footer-app-item {
        margin-bottom: 10px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 15px;
        width: 100%;
    }

    .footer-info-block {
        order: 2;
        align-items: center;
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-company-details {
        margin-bottom: 10px;
    }

    .footer-company-details h3 {
        font-size: 18px;
    }

    .footer-company-details p {
        font-size: 13px;
    }

    .footer-copyright {
        order: 3;
        text-align: center;
        width: 100%;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

}
