/* ===================================================
   COMMON FOOTER STYLES — shared across all pages
   =================================================== */

/* Consistent gap before footer (matches privacy-policy padding-bottom: 80px) */
footer {
    margin-top: 80px;
    background-color: #3C3C3C;
    color: #fff;
    padding: 60px 150px 30px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}


.footer-logo img {
    height: 50px;
    margin-bottom: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    width: fit-content !important;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #666;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
}

.footer-bottom-right a {
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom-right a:hover {
    color: #5c83e6;
}

.work-footer {
    margin-top: 115px;
}

.social-cont {
    margin-top: 15px;
    margin-left: -5px;
}

.footer-list {
    text-decoration: none;
    color: white;
}

.footer-list:hover {
    color: #5c83e6;
}

.contact {
    display: flex;
}

.label {
    width: 60px;
}

.value {
    white-space: nowrap;
}

/* ===================================================
   TABLET (≤ 1024px)
   =================================================== */
@media screen and (max-width: 1024px) {
    footer {
        padding: 50px 50px 30px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1.5fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-section h4 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .footer-section ul li,
    .footer-section p {
        font-size: 14px;
    }

    .work-footer {
        margin-top: 125px !important;
        padding-top: 0 !important;
    }

    .footer-section:nth-child(2) {
        display: flex;
        flex-direction: column;
    }

    .footer-logo img {
        height: 44px;
        margin-bottom: 30px;
    }

    .social-cont {
        margin-top: 12px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}

/* ===================================================
   MOBILE (≤ 768px)
   =================================================== */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo img {
        height: 44px;
        margin-bottom: 25px;
    }

    .footer-section h4 {
        font-size: 22px;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 14px;
    }

    .work-footer {
        margin-top: 20px !important;
        padding-top: 0 !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        font-size: 13px;
    }

    .footer-bottom-right {
        justify-content: center;
        gap: 16px;
    }

    .footer-bottom-right a {
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        transition: color 0.25s ease;
    }

    .footer-bottom-right a:hover {
        color: #5c83e6;
    }

    .social-cont {
        display: flex;
        gap: 18px;
        justify-content: flex-start;
        margin-top: 15px;
        margin-left: 0;
    }
}

/* ===================================================
   SMALL MOBILE (≤ 480px)
   =================================================== */
@media (max-width: 480px) {
    footer {
        padding: 30px 15px 20px;
    }

    .footer-logo img {
        height: 38px;
        margin-bottom: 20px;
    }

    .footer-section h4 {
        font-size: 20px;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 11px;
        gap: 10px;
    }

    .footer-bottom-right {
        gap: 12px;
    }

    .contact {
        flex-direction: row;
        align-items: baseline;
    }

    .label {
        width: 45px;
        flex-shrink: 0;
    }

    .value {
        white-space: normal;
        word-break: break-word;
    }
}