/* ===========================
   FOOTER GLOBAL
=========================== */
.footer {
    background: #0A2A6C;
    color: white;
    padding: 80px 0 35px;
}

.footer-container {
    max-width: 1350px;
    margin: auto;
    padding: 0 25px;
}

/* ===========================
   GRID
=========================== */
.footer-grid {
    display: grid;
    gap: 50px;
    margin-bottom: 70px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================
   LOGO BLOCK
=========================== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 90px;
    width: 90px;
    object-fit: contain;
}


.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(to bottom right, #FF7A00, #e66d00);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-icon i {
    color: #fff;
    font-size: 22px;
}

.footer-logo-title {
    font-size: 18px;
    font-weight: 700;
}

.footer-logo-sub {
    font-size: 12px;
    color: #FF7A00;
    font-weight: 700;
}

.footer-desc {
    color: #cccccc;
    margin-top: 20px;
    line-height: 1.6;
}

/* ===========================
   SOCIALS
=========================== */
.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: 0.3s;
    color: white;
}
.footer-socials a {
    flex-shrink: 0;
}


.footer-socials a:hover {
    background: #FF7A00;
}

/* ===========================
   TITLES + LINKS
=========================== */
.footer-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #FF7A00;
}

/* ===========================
   FOOTER BOTTOM
=========================== */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 25px;

    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.footer-bottom p {
    color: #bfbfbf;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: #bfbfbf;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #FF7A00;
}

.footer-powered {
    font-size: 14px;
    color: #bfbfbf;
    transition: 0.3s;
    text-decoration: none;
}

.footer-powered:hover {
    color: #FF7A00;
}
