﻿/* Footer Section Base */
.footer-top {
    position: relative;
    overflow: hidden;
}

    .footer-top::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        opacity: 0.7;
    }

    .footer-top .container {
        position: relative;
        z-index: 1;
    }

/* Footer Headings */
.footer-single-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
    color: #fff;
    letter-spacing: 0.5px;
}

    .footer-single-col h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 2px;
    }

/* Footer Nav Links */
.footer-nav-list li {
    margin-bottom: 0.6rem;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 5px;
}

    .footer-nav-list a::before {
        content: "›";
        font-size: 1rem;
        color: rgba(255,255,255,0.4);
        margin-right: 8px;
        transition: color 0.3s ease;
    }

    .footer-nav-list a:hover {
        color: #fff;
        padding-left: 10px;
    }

        .footer-nav-list a:hover::before {
            color: #fff;
        }

/* Rating Box */
.ratting-wrap {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-single-col {
        margin-bottom: 2rem;
    }

        .footer-single-col h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

    .footer-nav-list a {
        justify-content: center;
    }

        .footer-nav-list a::before {
            display: none;
        }
}
 
