/* Footer wrapper spacing & bg */
.footer-wrapper {
    background-color: var(--footer-bg);
    color: var(--light-gray);
    overflow-x: hidden;
    position: relative;
}

.footer {
    padding-top: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-wrapper p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Footer logo section */
.footer-logo {
    background-color: var(--white);
    display: inline-block;
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 8px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

/* Footer Headers */
.footer-list-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    padding-bottom: 12px;
    margin-bottom: 20px;
    position: relative;
}

.footer-list-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--orange);
    border-radius: 2px;
}

/* Footer link lists */
.main-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-footer ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-footer ul li span {
    font-size: 11px;
    color: var(--orange);
    transition: transform 0.3s ease;
}

.main-footer ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.main-footer ul li:hover a {
    color: var(--orange);
    padding-left: 5px;
}

.main-footer ul li:hover span {
    transform: translateX(3px);
}

/* Social icons in footer */
.footer .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer .social-icons .single-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer .social-icons .single-icon:hover {
    background-color: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 159, 42, 0.3);
}

/* Copyright footer bar */
.footer-bootom {
    background-color: var(--top-header-mobile);
    padding: 20px 0;
}

.footer-bootom p {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bootom p a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
}

.footer-bootom p a:hover {
    color: var(--white);
}

/* Footer layout responsiveness */
@media (max-width: 991px) {
    .footer {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    
    .footer-list-heading {
        margin-top: 15px;
        margin-bottom: 12px;
        font-size: 16px;
    }
    
    .main-footer ul {
        gap: 8px;
    }
    
    .main-footer .col-xl-4 {
        margin-bottom: 15px;
    }
}
