/* Footer Styles */
.site-footer {
    background-color: var(--secondary);
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

.footer-top {
    padding-bottom: 50px;
}

.footer-title {
    color: #fff;
    font-family: var(--font-family-title);
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    margin-bottom: 15px;
}

.widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.widget ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    /* background: rgba(0,0,0,0.2); */
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .fb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Social Icons */
.dz-social-icon ul {
    display: flex;
    gap: 15px;
}

.dz-social-icon ul li a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.dz-social-icon ul li a:hover {
    background: var(--primary);
    color: #000;
}