/* Modern Footer Styles */
.footer-modern {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 60px;
    padding-bottom: 0;
    font-family: 'Jost', sans-serif;
}

.footer-modern h5 {
    color: #f39200;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-modern h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #f39200;
}

.footer-modern p,
.footer-modern a {
    color: #bbbbbb;
    font-size: 15px;
    line-height: 1.6;
    transition: 0.3s;
}

.footer-modern a:hover {
    color: #f39200;
    text-decoration: none;
    padding-left: 5px;
}

.footer-modern .contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-modern .contact-item i {
    color: #f39200;
    margin-right: 15px;
    margin-top: 5px;
}

.footer-modern .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-modern .social-links a:hover {
    background: #f39200;
    padding-left: 0;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* Back to top override */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #f39200;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #d68100;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Quick Links List */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li i {
    color: #f39200;
    font-size: 12px;
    margin-right: 8px;
}