﻿/* ==========================================
   footer.css
   ========================================== */

.site-footer {
    background: #0f172a;
    color: #e2e8f0;
    margin-top: 80px;
    border-radius: 20px;
}


/* ==========================
   Container
========================== */

.footer-container {
    max-width: 1280px;
    margin: auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
}


/* ==========================
   Columns
========================== */

.footer-column {
    display: flex;
    flex-direction: column;
}


    .footer-column h3 {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
        position: relative;
    }


        .footer-column h3::after {
            content: "";
            display: block;
            width: 48px;
            height: 2px;
            margin-top: 8px;
            background: #3b82f6;
        }


    /* ==========================
   Text
========================== */

    .footer-column p,
    .footer-column address {
        font-size: 14px;
        line-height: 2;
        color: #cbd5e1;
        font-style: normal;
    }


/* ==========================
   Links
========================== */

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    margin-bottom: 14px;
    transition: .25s;
}


    .footer-link:hover {
        color: #ffffff;
        transform: translateX(-4px);
    }


    /* ==========================
   SVG Icons
========================== */

    .footer-link .icon,
    .social-links .icon,
    .navigate-btn .icon {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        fill: none;
        flex-shrink: 0;
    }


/* ==========================
   Social
========================== */

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}


    .social-links a {
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #cbd5e1;
        transition: .3s;
    }


        .social-links a:hover {
            background: #2563eb;
            border-color: #2563eb;
            color: #fff;
            transform: translateY(-3px);
        }


/* ==========================
   Navigate Button
========================== */

.navigate-btn {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #2563eb;
    color: #fff;
    border-radius: 10px;
    transition: .3s;
}


    .navigate-btn:hover {
        background: #1d4ed8;
    }


/* ==========================
   Footer Bottom
========================== */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
}


/* ==========================
   Responsive
========================== */

@media(max-width:992px) {

    .footer-container {
        grid-template-columns: repeat(2,1fr);
    }
}


@media(max-width:768px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 18px;
    }

    .footer-column {
        text-align: center;
        align-items: center;
    }

        .footer-column h3::after {
            margin-inline: auto;
        }

    .footer-link {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}
