﻿/* ============================
   FOOTER WRAPPER
   ============================ */
.azimuth-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    width: 100%;
    padding-bottom: 20px;
    border-top: 3px solid var(--footer-heading);
}

/* ============================
   INNER CONTAINER
   ============================ */
.footer-inner {
    padding: 40px 12px 0;
}

/* ============================
   FOOTER COLUMNS
   ============================ */
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    width: 100%;
}

.footer-col-1 {
    flex: 2;
    min-width: 280px;
    padding-right: 100px;
}

.footer-col-2,
.footer-col-3 {
    flex: 1;
    min-width: 240px;
}

/* ============================
   TYPOGRAPHY
   ============================ */
.footer-brand {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.brand-primary {
    color: var(--footer-brand-primary);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.brand-secondary {
    color: var(--footer-brand-secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.azimuth-footer h5,
.azimuth-footer h6 {
    color: var(--footer-heading);
    margin-bottom: 0.75rem;
}

.azimuth-footer h5 {
    font-size: 0.70rem;
    font-weight: 700;
}

.azimuth-footer h6 {
    font-size: 0.65rem;
    font-weight: 600;
}

.footer-link,
.azimuth-footer .small {
    font-size: 0.65rem;
    color: var(--footer-link);
    line-height: 1.4;
}

.footer-link {
    display: block;
    margin-bottom: 0.4rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer-link:hover {
        color: var(--footer-link-hover);
    }

.azimuth-footer hr {
    border-color: var(--footer-hr);
    opacity: 0.3;
}

/* ============================
   MOBILE STACKING
   ============================ */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col-1,
    .footer-col-2,
    .footer-col-3 {
        padding-right: 0;
        width: 100%;
    }
}
