/* -----------------------------
   Footer styling
----------------------------- */
footer {
    background-color: #00438b !important;  /* exact Oribium blue */
    padding: 1.5rem 0;
    color: #ffffff;
    font-size: 0.9rem;
    width: 100%;
}

/* Footer logo keeps natural size */
.footer-logo img {
    height: auto;
    width: auto;
    display: block;
}

/* Company info on right, left-aligned text */
footer .text-start p {
    margin-bottom: 0.2rem;
}

/* Google Maps button */
footer .btn-google-map {
    background-color: #ffffff;
    color: #00438b;
    border: 1px solid #00438b;
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

footer .btn-google-map:hover {
    background-color: #cfe2ff;
    color: #002a5f;
    border-color: #002a5f;
}

/* Bottom copyright line */
footer .copyright {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    footer .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }
    footer .text-start {
        text-align: center;
        margin-top: 0.5rem;
    }
    footer .btn-google-map {
        margin-top: 0.5rem;
    }
}

