.dark-background {
    background-color: #111;
    position: relative;
    overflow: hidden;
}

/* ✅ FORCE LEFT ALIGN (MAIN FIX) */
.footer .row > div {
    text-align: left !important;
}

/* Titles */
.footer h5 {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 2px;
    background: #0e9226;
}

/* QUICK LINKS */
.quick-links ul {
    padding-left: 0;
    margin: 0;
}

.quick-links ul li {
    list-style: none;
    margin-bottom: 12px;
    position: relative;
    padding-left: 12px;
    border-left: 2px solid transparent;
    transition: 0.3s ease-in-out;
}

.quick-links ul li a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.quick-links ul li:hover {
    border-left: 2px solid #0e9226;
    padding-left: 16px;
}

.quick-links ul li:hover a {
    color: #0e9226;
}

.quick-links ul li a::after {
    content: "\f285";
    font-family: "bootstrap-icons";
    opacity: 0;
    transform: translateX(-5px);
    transition: 0.3s ease;
}

.quick-links ul li:hover a::after {
    opacity: 1;
    transform: translateX(0px);
}

/* SOCIAL ICONS */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start !important; /* ✅ FIX */
}

.social-links a {
    font-size: 32px;
    transition: 0.3s ease;
    color: #ffffff;
    text-decoration: none;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #0a9a3f;
}

.footer .social-links a {
    font-size: 25px;
    background: none !important;
}

/* CONTACT INFO */
.contact-information p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    flex-wrap: nowrap;
}

.contact-information a {
    color: #fff;
    text-decoration: none;
    word-break: break-word;
}

/* MOBILE CONTACT FIX */
@media (max-width: 480px) {
    .contact-information p {
        gap: 10px !important;
        align-items: flex-start !important;
        flex-wrap: wrap !important;
    }

    .contact-information i {
        margin-top: 2px;
        font-size: 18px;
    }
}

/* BUBBLES */
#bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    animation: rise 10s infinite linear;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-1200px) scale(0.5);
        opacity: 0;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer .col-md-3 {
        text-align: left !important;
    }

    .footer-logo img {
        width: 180px !important;
    }

    .social-links {
        justify-content: flex-start !important;
    }
}

@media (max-width: 768px) {

    .quick-links,
    .quick-links ul,
    .quick-links ul li,
    .quick-links ul li a {
        text-align: left !important;
        justify-content: flex-start !important;
    }

    .contact-information,
    .contact-information p,
    .contact-information a {
        text-align: left !important;
        justify-content: flex-start !important;
        align-items: center;
        gap: 6px;
    }

    .footer h5::after {
        left: 0;
        width: 35%;
    }

    .footer-logo img {
        width: 160px !important;
    }

    .footer p,
    .footer a {
        font-size: 15px;
    }

    .social-links {
        justify-content: flex-start !important;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        width: 140px !important;
    }

    .footer h5 {
        font-size: 16px;
    }

    .social-links a {
        font-size: 24px;
    }
}

.contact-information .bi-telephone-fill { color: #4caf50; }
.contact-information .bi-envelope-fill { color: #ff9800; }
.contact-information .bi-geo-alt-fill { color: #e91e63; }
.contact-information .bi-clock-fill { color: #03a9f4; }