/* =========================
   FOOTER CSS
========================= */

.footer {
    background: var(--navy);
    color: #cdddee;
    padding: 60px 0 20px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    width: 100%;
}

.footer-col .logo {
    font-size: 1.6rem;
    background: none;
    -webkit-text-fill-color: white;
    color: white;
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 700;
    line-height: 1.3;
}

.footer-col p {
    margin: 8px 0;
    line-height: 1.8;
    word-break: break-word;
}

.footer-col a {
    color: #b5cfdd;
    text-decoration: none;
    transition: all 0.2s ease;
    word-break: break-word;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col ul a {
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

.footer-col ul a:hover {
    transform: translateX(5px);
}

.footer-col ul a::before {
    content: '›';
    margin-right: 8px;
    opacity: 0;
    transition: all 0.2s ease;
    display: inline-block;
    color: var(--orange);
}

.footer-col ul a:hover::before {
    opacity: 1;
    transform: translateX(3px);
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons i {
    font-size: 1.6rem;
    color: #cdddee;
    transition: all 0.2s ease;
}

.social-icons i:hover {
    color: var(--orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #2a4b5a;
    padding-top: 20px;
    font-size: 0.85rem;
    text-align: center;
    color: #8faec9;
    line-height: 1.7;
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media (max-width: 1024px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .footer-col .logo {
        font-size: 1.9rem;
    }

    .footer-col p,
    .footer-col li,
    .footer-col a {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .social-icons {
        gap: 18px;
    }

    .social-icons i {
        font-size: 1.5rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        line-height: 1.7;
        margin-top: 10px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .footer {
        padding: 35px 0 18px;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-col .logo {
        font-size: 1.7rem;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    .footer-col p,
    .footer-col li,
    .footer-col a {
        font-size: 0.92rem;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icons i {
        font-size: 1.4rem;
    }

    .footer-bottom {
        font-size: 0.78rem;
    }

}