.footer {
    background: #283227;
    color: #fff;
    padding-top: 70px;
}

.newsletter-box {
    background: #b07b38;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    margin-top: -120px;
    margin-bottom: 60px;
}

.newsletter-box h2 {
    font-size: 38px;
    font-weight: 700;
}

.newsletter-box p {
    color: #fff;
    max-width: 650px;
    margin: 15px auto 30px;
    line-height: 1.8;
}

.newsletter-form {
    max-width: 500px;
    margin: auto;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 50px;
    padding: 0 75px 0 25px;
    outline: none;
}

.newsletter-form button {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #b07b38;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.footer-logo {
    width: 113px;
    margin-bottom: 20px;
}

.footer h5 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: 12px;
}

.footer li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer li a:hover {
    color: #b07b38;
}

.footer-text {
    color: #ddd;
    line-height: 1.8;
}

.contact-info li {
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .2);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    margin-right: 8px;
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover {
    background: #b07b38;
    border-color: #b07b38;
}

.footer hr {
    border-color: rgba(255, 255, 255, .15);
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
}

.footer-bottom a {
    color: #ddd;
    margin-left: 25px;
    text-decoration: none;
    transition: .3s;
}

.footer-bottom a:hover {
    color: #b07b38;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
}

@media (max-width: 991px) {

    .newsletter-box {
        margin-top: 0;
        padding: 30px 20px;
    }

    .newsletter-box h2 {
        font-size: 28px;
    }

    .footer-top > div {
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom a {
        margin: 0 10px;
    }

    .mobile-bottom-bar {
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background: #2d382b;
        padding: 12px 15px;
        z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }

    .mobile-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        background: #b07b38;
        color: #fff;
        text-decoration: none;
        padding: 12px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        transition: .3s;
    }

    .mobile-call-btn:hover {
        color: #fff;
    }

    /*
    Uncomment if the fixed bottom bar covers page content.

    body {
        padding-bottom: 80px;
    }
    */
}