/* استایل‌های پایه فوتر */
.site-footer {
    width: 100%;
    direction: rtl !important;
    text-align: right;
   background:var(--footer);
  border-top:1px solid var(--primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

}

/* ۱. بخش مزایا */
.footer-features-row {
    padding: 30px 0 ;

}
.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-icon {
    color: #1e293b;
    width: 32px;
    height: 32px;
}
.feature-text h3 {
    font-size: 13.5px;
    color:var(--footer-title);
    margin: 0 0 4px 0;
    font-weight: bold;
}
.feature-text p {
    font-size: 11.5px;
    color:var(--footer-text);
    margin: 0;
}

.feature-icon svg{
width:28px;
height:28px;
stroke:var(--svg);
stroke-width:1.8;
fill:none;
stroke-linecap:round;
stroke-linejoin:round;
}
.feature-icon.wa svg{
width:35px;
height:35px;
stroke-width:4;
}
/*====================================
        Footer Features Mobile
=====================================*/

@media (max-width:768px){

.feature-item:last-child{
    grid-column:1 / -1;   /* تمام عرض */
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.feature-item{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    border:1px solid var(--footer-border);
    border-radius:16px;
    padding:5px 8px;
    min-height:145px;
    gap:12px;
}

.feature-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon svg{
    width:32px;
    height:32px;
}

.feature-icon.wa svg{
    width:36px;
    height:36px;
}

.feature-text h3{
    font-size:14px;
    line-height:1.7;
    margin-bottom:6px;
}

.feature-text p{
    font-size:12px;
    line-height:1.8;
}

}
/*==============================
        Footer Middle
==============================*/

.footer-middle{
    max-width:1200px;
    margin:auto;
    padding:50px 0px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
    background:var(--footer);
   border-top:1px solid var(--footer-border)
}

/* ستون ها */

.footer-col h3{
    margin:0 0 22px;
    color:var(--footer-title);
    font-size:20px;
    font-weight:700;
    position:relative;
    padding-bottom:12px;
}

.footer-col h3::after{
    content:"";
    position:absolute;
    bottom:0;
    right:0;
    width:55px;
    height:3px;
    background:var(--primary);
    border-radius:30px;
}

.footer-col p{
    color:var(--footer-text);
    line-height:2.2;
    font-size:15px;
    margin-top:25px;
}

/* لوگو */

.footer-logo{
    display:block;
    text-align:center;
}

.footer-logo img{
    display:inline-block;
}
.footer-logo img{
    max-width:195px;
    height:auto;
}

/* منو */

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

.footer-col ul li{
    margin-bottom:14px;
}

.footer-col ul li a{
    color:var(--footer-text);
    text-decoration:none;
    transition:.3s;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.footer-col ul li a::before{
    content:"›";
    color:var(--primary);
    font-size:18px;
}

.footer-col ul li a:hover{
    color:#e0c06c;
    padding-right:8px;
}

/* اینماد */

.footer-enamad{
    text-align:center;
}

.footer-enamad img{
    width:150px;
    border:1px solid var(--footer-border);
    border-radius:12px;
    padding:12px;
    transition:.35s;
}

.footer-enamad img:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/* جداکننده */

.footer-col{
    position:relative;
}

.footer-col:not(:last-child)::before{
    content:"";
    position:absolute;
    left:-30px;
    top:0;
    width:1px;
    height:100%;
    background:var(--footer-border);
}

/*==============================
        Responsive
==============================*/
@media (max-width:576px){

.footer-middle{
    display:flex;
    flex-direction:column;
    text-align:center;
    gap:35px;
}

/* ترتیب نمایش */
.footer-middle .footer-col:nth-child(2){order:1;}
.footer-middle .footer-col:nth-child(3){order:2;}
.footer-middle .footer-about{order:3;}
.footer-middle .footer-enamad{order:4;}

.footer-col::before{
    display:none;
}

.footer-col h3::after{
    right:50%;
    transform:translateX(50%);
}

.footer-col ul li a{
    justify-content:center;
}

}

/*==============================
        Footer Bottom
==============================*/

.footer-bottom-bar{
    background: var(--footer);
    border-top: 1px solid var(--footer-border);
    padding: 18px 15px;
}

.copyright-texts-right{
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.copyright-texts-right p{
    margin: 0;
    color: var(--footer-text);
    font-size: 14px;
    line-height: 1.9;
}

/*=========== Tablet ===========*/

@media (max-width: 768px){

    .footer-bottom-bar{
        padding: 16px 20px;
    }

    .copyright-texts-right p{
        font-size: 13px;
        line-height: 2;
    }

}

/*=========== Mobile ===========*/

@media (max-width: 480px){

    .footer-bottom-bar{
        padding: 14px 15px;
    }

    .copyright-texts-right p{
        font-size: 12px;
        line-height: 2.1;
    }

}


/***********************      شروع شبکه اجتماعی شناور     ********************************/
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.image-social{
    padding-left: 7px;
}
.social-menu {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.social-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.social-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.bale {
    background: linear-gradient(135deg, #f09433, #e1306c, #833ab4);
}

.telegrami {
    background:#1d87bb;
}

.whatsapp {
    background: #25D366;
}

.social-icon{
    width: 32px;
    height: 32px;
    display: block;
}

.social-item i{
    font-size: 32px;
}
@media (max-width: 768px) {
    .social-menu {
        right: 33px;
        bottom: 90px;
        gap: 8px;
margin-bottom: 5px;
    }
    
    .social-item {
        width: 55px !important;
        height: 55px !important;
    }
    
   .image-social {
        width: 36px !important;
        height: 30px !important;
        padding-left: 7px !important;
        flex-shrink: 0 !important;
    }
    
  
}
overflow-x{
display:hidden;
}


/***********************  پایان  شبکه اجتماعی شناور    ********************************/
