﻿.main-footer {
    background: #0b1d2a;
    color: #cfd8e3;
    padding: 80px 40px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.3fr;
    gap: 60px;
}

.footer-brand h3 {
    font-size: 32px;
    color: orange;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 17px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-menus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-menu h4 {
    color: orange;
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #cfd8e3;
    text-decoration: none;
    font-size: 16px;
    transition: all .3s ease;
}

    .footer-menu a:hover {
        color: #ff8c2b;
        padding-left: 6px;
    }

.footer-contact h4 {
    color: orange;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cfd8e3;
    font-size: 13.5px;
    margin-bottom: 14px;
    text-decoration: none;
    line-height: 1.6;
}

    .footer-contact .contact-item i {
        font-size: 14px;
        color: #ff8c2b;
        margin-top: 3px;
        min-width: 16px;
    }

.footer-contact a.contact-item:hover span {
    color: #ffffff;
}

.footer-contact a.contact-item:hover i {
    transform: translateX(2px);
    transition: 0.2s ease;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-menus {
        grid-template-columns: 1fr;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-contact .contact-item {
        flex-direction: row; 
        justify-content: center;
        text-align: center;
    }

        .footer-contact .contact-item i {
            margin-top: 0;
        }

    .footer-brand .social-links {
        justify-content: center;
        margin-top: 15px;
    }
}

.footer-brand .social-links {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-brand .social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfd8e3;
    font-size: 15px;
    text-decoration: none;
    transition: all .3s ease;
}

.footer-brand .social-links a:hover {
    background: #ff8c2b;
    color: #0b1d2a;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-powered {
    margin-top: 6px;
}

    .footer-powered a {
        font-size: 13px;
        color: rgba(255,255,255,0.55);
        text-decoration: none;
        transition: all .25s ease;
    }

        .footer-powered a:hover {
            color: #ff8c2b;
            text-decoration: underline;
        }
