﻿
    /* =========================
       FOOTER
    ========================= */

    .Pagefooter {
        background: #101820;
        color: #cbd5e1;
    }

    .footer-container {
        max-width: 1200px;
        margin: auto;

        padding: 60px 20px;

        display: grid;
        grid-template-columns: 1.5fr 1fr 1.2fr;

        gap: 60px;
    }


    /* =========================
       LOGO / ABOUT
    ========================= */

    .footer-logo {
        width: 180px;
        max-width: 100%;
        margin-bottom: 18px;
    }

    .footer-about p {
        color: #aeb8c4;
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .footer-about p a {
        color: #fff;
        font-weight: 600;
    }


    /* =========================
       HEADINGS
    ========================= */

    .footer-box h4 {
        color: #fff;

        font-size: 18px;
        font-weight: 700;

        margin-bottom: 22px;

        position: relative;
    }

    .footer-box h4::after {
        content: "";

        display: block;

        width: 35px;
        height: 2px;

        background: #ffc107;

        margin-top: 9px;
    }


    /* =========================
       SOCIAL ICONS
    ========================= */

    .social-icons {
        display: flex;
        gap: 10px;

        margin-bottom: 28px;
    }

    .social-icons a {
        width: 38px;
        height: 38px;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 50%;

        color: #fff;

        background: #1e293b;

        transition: all .3s ease;
    }

    .social-icons a:hover {
        transform: translateY(-3px);
        color: #fff;
        text-decoration: none;
    }

    .social-icons .facebook:hover {
        background: #1877f2;
    }

    .social-icons .instagram:hover {
        background: #e1306c;
    }

    .social-icons .whatsapp:hover {
        background: #25d366;
    }


    /* =========================
       TRUST
    ========================= */

    .trust {
        font-size: 12px;
        line-height: 2;

        color: #b8c2cc;
    }

    .trust div {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .trust i {
        color: #22c55e;
    }


    /* =========================
       LINKS
    ========================= */

    .footer-links {
        list-style: none;

        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #aeb8c4;

        font-size: 14px;

        transition: all .3s ease;
    }

    .footer-links a:hover {
        color: #ffc107;

        padding-left: 5px;

        text-decoration: none;
    }

    .footer-links i {
        color: #ffc107;
        margin-right: 7px;
    }


    /* =========================
       CONTACT
    ========================= */

    .contact-item {
        display: flex;

        align-items: flex-start;

        gap: 12px;

        margin-bottom: 18px;

        color: #aeb8c4;

        font-size: 14px;

        line-height: 1.6;
    }

    .contact-item > i {
        color: #ffc107;

        font-size: 17px;

        width: 20px;

        margin-top: 3px;
    }

    .contact-item a {
        color: #cbd5e1;
    }

    .contact-item a:hover {
        color: #ffc107;
        text-decoration: none;
    }


    /* =========================
       BOTTOM
    ========================= */

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,.08);

        padding: 20px;

        text-align: center;

        color: #8995a3;

        font-size: 12px;

        line-height: 2;
    }

    .footer-company strong {
        color: #dbe3ea;
    }

    .footer-legal {
        margin-top: 4px;
    }

    .footer-legal a {
        color: #3cf;
        margin: 0 5px;
    }

    .footer-legal a:hover {
        color: #fff;
        text-decoration: none;
    }

    .footer-design {
        margin-top: 3px;
    }

    .footer-design span {
        color: #ffc107;
    }


    /* =========================
       MOBILE
    ========================= */

    @media (max-width: 767px) {

        .footer-container {
            grid-template-columns: 1fr;

            gap: 35px;

            padding: 45px 20px;
        }

        .footer-box {
            text-align: left;
        }

        .footer-box h4 {
            margin-bottom: 18px;
        }

        .footer-logo {
            width: 160px;
        }

        .footer-bottom {
            padding: 18px 12px;
        }

    }