
.site-footer {
    display: none !important;
}
/* ==== Footer Wrapper ==== */
footer {

    color: white;
    padding: 50px;
    flex-wrap: wrap;
    display:flex;
    align-items: center;
    width:100%;
    justify-content:center;
}

/* ==== Main Footer Box ==== */
.footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, .2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    gap: 20px;
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    max-width: 100%;
}

/* ==== About Woores ==== */
.aboutWoores {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
footer h3{
    color: white;
}
.h2Logo {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;

}

.h2Logo h2 {
    font-weight: 1000;
    font-size: 50px;
    margin: 0;
    color: white;
}

.svglogo {
    width: 150px;
    height: 150px;
}

/* ==== Sections Row ==== */
.ss1 {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: center;
}
/* ==== Contact Info ==== */
.callInf {
    display: flex;
    flex-direction: column;
    width: 250px;
}

.callInf h3 {
    margin-top: 0;
}

.callInf a {
    color: white;
}

/* ==== Mobile Row ==== */
.mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    animation: 0.2s;
}

.mobile a {
    margin: 4px;
    &:hover {
        color: #1a1a1a;
    }
}

/* ==== Social Media ==== */
.socialMedia {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: auto;
    flex-wrap: wrap;
    gap: 10px;
    text-align: right;
    overflow: hidden; /* جلوگیری از بیرون زدن خطوط */
    h3{
        margin-top:0;
    }
}

.socialMedia h3 {
    margin-top: 0;
}

.socialLogo {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.socialMedia img {
    width: 35px;
    height: 35px;
    transition: all 0.25s ease-out;
}

.socialMedia img:hover {
    width: 50px;
    height: 50px;
}

.socialMedia i {
    font-size: 40px;
    color: white;
}




/* ==== Designer Credit ==== */
.designer {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.designer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.designer a:hover {
    color: #ffcc00;
    text-decoration: underline;
}



/* 📱 موبایل */
@media (max-width: 576px) {
    footer {
        padding: 20px;
            width:auto;
    }
    .footer {
        padding: 15px;
        border-radius: 20px;
        gap: 15px;
    }
    .h2Logo {
        gap: 10px;
    }
    .h2Logo h2 {
        font-size: 28px;
    }
    .svglogo {
        width: 50px;
        height: 50px;
    }
    .ss1 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .callInf,
    .socialMedia,
    .nave {
        width: 100%;
        text-align: center;
    }
    .socialMedia::after,
    .socialMedia::before {
        display: none;
    }
    #menu-main-menu-1 {
        gap: 5px;
    }
    #menu-main-menu-1 li a {
        font-size: 14px;
    }
}

/* 💻 تبلت */
@media (min-width: 577px) and (max-width: 992px) {
    footer {
        padding: 20px;
    width:100%;
    }
    .footer {
        padding: 15px;
        border-radius: 20px;
        gap: 15px;
    }
    .h2Logo {
        gap: 10px;
    }
    .h2Logo h2 {
        font-size: 28px;
    }
    .svglogo {
        width: 50px;
        height: 50px;
    }
    .ss1 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .callInf,
    .socialMedia,
    .nave {
        width: 100%;
        text-align: center;
    }
    .socialMedia::after,
    .socialMedia::before {
        display: none;
    }
    #menu-main-menu-1 {
        gap: 5px;
    }
    #menu-main-menu-1 li a {
        font-size: 14px;
    }
}

}

/* 🖥️ دسکتاپ */
@media (min-width: 992px) {
    .footer {
        max-width: 1200px;
        margin: 0 auto;
    }
}
.navebary ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.navebary ul li {
    all: unset;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    a {
        text-decoration: none;
        color:white ;
        font-style: normal;
        font-weight: bold;
        transition: 0.25s;
        font-weight: normal;
        &:hover{
            color: #879a77;
        }
    }
    &::after{
        content: " ";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0%;
        height: 2px;
        background-color: #879a77;
        transition: 0.25s;
    }
    &:hover::after{
        width: 100%;


    }
}