footer {
    background-color: #2e2e3c;
    color: #e8e8e8;
    padding: 50px 20px 30px;
    font-size: 14px;
    line-height: 1.6;
}

/* Links */
footer a {
    color: #e8e8e8;
    text-decoration: none;
    transition: 0.2s;
}
footer a:hover {
    color: #F8931F;
}

/* Logo */
.footer-logo img {
    width: 100px;
    filter: drop-shadow(0 0 2px #4e8cff);
}

/* Section title (desktop only) */
footer h5 {
    font-weight: 600;
    color: #F8931F;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* MOBILE ACCORDION HEADER */
.footer-accordion-title {
    background: #2e2e3c;
    padding: 14px 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.footer-accordion-title i {
    transition: 0.3s;
}

/* Rotate icon when opened */
.footer-accordion-title.collapsed i {
    transform: rotate(0deg);
}
.footer-collapse.show + .footer-accordion-title i,
.footer-accordion-title:not(.collapsed) i {
    transform: rotate(180deg);
}

/* MOBILE COLLAPSE CONTAINER */
@media (max-width: 992px) {
    footer h5 {
        display: none; /* hide desktop headings */
    }

    .footer-collapse {
        border-bottom: 1px solid #3a3a3a;
        padding: 12px 6px;
    }
}

/* DESKTOP ALWAYS VISIBLE */
@media (min-width: 992px) {
    .footer-accordion-title {
        display: none;
    }
    .footer-collapse {
        display: block !important;
    }
}

/* Newsletter */
.newsletter-form {
    display: flex;
    background: #1f2739;
    border-radius: 5px;
    overflow: hidden;
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    padding: 10px;
    border: none;
    color: #fff;
}
.newsletter-form button {
    background: #F8931F;
    border: none;
    padding: 0 15px;
}
.newsletter-form button:hover {
    background: #c49c34;
}

/* Social Icons */
.footer-social-icons a {
    width: 35px;
    height: 35px;
    background: #1f2739;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.footer-social-icons a:hover {
    background: #F8931F;
    color: #000;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #2c2f3a;
    padding-top: 10px;
    margin-top: 20px;
    color: #cacaca;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #F8931F;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: #c49c34;
}
