/* ========= AZURE FOOTER ========= */

footer.azure-footer {
    background-color: #0b3c5d;
    color: #ffffff;
    padding: 70px 0 30px;
}

footer.azure-footer a {
    color: #ffffff;
    text-decoration: none;
}

footer.azure-footer a:hover {
    text-decoration: underline;
}

/* ================= GRID ================= */
.azure-footer-grid {
    display: grid !important;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* ================= BRAND ================= */
.azure-brand {
    padding-left: 25px; /* pushes logo slightly toward center */
}

.azure-logo {
    max-width: 120px; /* reduced size */
    display: block;
}

.azure-brand p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 15px;
    opacity: 0.9;
}

/* ================= HEADINGS ================= */
.azure-footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #d4af37; /* GOLD */
    font-weight: 600;
}

/* ================= LISTS ================= */
.azure-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.azure-footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

/* ================= CONTACT ================= */
.azure-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

/* ================= SOCIAL ================= */
.azure-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.azure-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ================= COPYRIGHT ================= */
.azure-footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 14px;
}
/* ===== FINAL FOOTER SPACING FIX ===== */

.azure-footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;   /* main vertical spacing */
}

/* space after headings */
.azure-footer-col h4 {
    margin-bottom: 10px;
}

/* space between list items */
.azure-footer-col ul li {
    margin-bottom: 10px;
}

/* contact list spacing */
.azure-contact li {
    margin-bottom: 12px;
}

/* spacing above social icons */
.azure-social {
    margin-top: 18px;
}
/* ===== SPACE BEFORE FOOTER ===== */
footer.azure-footer {
    margin-top: 70px;
}


/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 1024px) {
    .azure-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .azure-brand {
        padding-left: 0;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .azure-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .azure-brand {
        padding-left: 0;
        text-align: center;
    }

    .azure-logo {
        margin: 0 auto;
    }

    .azure-contact li {
        justify-content: center;
    }

    .azure-social {
        justify-content: center;
    }
}
