


.site-footer {
    background: var(--primary);
    color: var(--white);
    padding: 70px 0 28px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 5px;
  
}

.footer-brand img {
    max-width: 150px;
    height: auto;
    margin-bottom: 22px;
    filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-col p {
    color: rgba(255,255,255,0.86);
    line-height: 1.8;
    margin: 0 0 10px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 22px;
}

.footer-col a {
    color: rgba(255,255,255,0.86);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:16px;

    text-align:center;

    padding-top:20px;
    


}

.developer-link{

    display:inline-flex;

    align-items:center;

    gap:12px;

    color:rgba(255,255,255,.85);

    text-decoration:none;

    font-size:.95rem;

    font-weight:600;

    transition:.3s ease;

}

.developer-link:hover{

    color:var(--accent);

}

.developer-icon{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.16);

    transition:.3s ease;

}

.developer-icon svg{

    width:20px;

    height:20px;

}

.developer-link:hover .developer-icon{

    background:var(--secondary);

    color:#fff;

    transform:rotate(-8deg) scale(1.08);

}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

 
}















/* ============================================
   FOOTER - Enhanced with icons & underline
   ============================================ */

.site-footer {
    background: var(--primary);
    color: var(--white);
    padding: 70px 0 28px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 5px;
  
}

/* ===== LOGO ===== */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    max-width: 200px;
}

.footer-logo {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-description {
    color: rgba(255,255,255,0.86);
    line-height: 1.8;
    margin: 0;
    text-align: justify; /* لتساوي الأسطر */
    text-justify: inter-word;
}

/* ===== COLUMNS ===== */
.footer-col h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent); /* خط تحت العنوان */
    display: inline-block;
}

/* قوائم الأيقونات */
.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    color: rgba(255,255,255,0.86);
    line-height: 1.6;
}

.footer-list li i {
    width: 20px;
    text-align: center;
    color: var(--accent);
    font-size: 16px;
}

.footer-list a {
    color: rgba(255,255,255,0.86);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--accent);
}

/* ===== ساعات العمل ===== */
.footer-hours {
    margin-top: 20px;
}

.footer-hours h4 {
    color: var(--accent);
    font-size: 16px;
    margin: 0 0 10px 0;
     margin-left: 30px;
    font-weight: 700;
}

.footer-hours .footer-list li {
    padding: 4px 0;
}




.footer-copyright {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

.developer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.developer-link:hover {
    color: var(--accent);
}

.developer-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    transition: background 0.3s ease;
}

.developer-link:hover .developer-icon {
    background: rgba(255,255,255,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .footer-logo-wrap {
        max-width: 160px;
    }
    .footer-logo {
        max-height: 70px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
 
    .footer-logo-wrap {
        max-width: 140px;
    }
    .footer-logo {
        max-height: 60px;
    }
}















/* ==========================================
   Floating Buttons
========================================== */

.floating-btn{

    position:fixed;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    z-index:9999;

    transition:all .35s ease;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

/* ===========================
   Back To Top
=========================== */

.back-to-top{

    left:24px;

    bottom:24px;

    background:var(--primary);

    color:#fff;

    opacity:0;

    visibility:hidden;

    transform:translateY(25px);

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-to-top:hover{

    background:var(--secondary);

    transform:translateY(-4px);

}

.back-to-top svg{

    width:26px;

    height:26px;

}

/* ===========================
   WhatsApp
=========================== */

.whatsapp-btn{

    right:24px;

    bottom:24px;

    background:#25D366;

    color:#fff;

    text-decoration:none;

}

.whatsapp-btn:hover{

    transform:translateY(-4px) scale(1.05);

    box-shadow:0 18px 45px rgba(37,211,102,.35);

}

.whatsapp-btn svg{

    width:30px;

    height:30px;

}

/* Pulse */

.whatsapp-btn::after{

    content:"";

    position:absolute;

    inset:-6px;

    border-radius:50%;

    border:2px solid rgba(37,211,102,.35);

    animation:whatsappPulse 2.5s infinite;

}

@keyframes whatsappPulse{

    0%{

        transform:scale(.9);

        opacity:1;

    }

    70%{

        transform:scale(1.4);

        opacity:0;

    }

    100%{

        opacity:0;

    }

}

/* Mobile */

@media (max-width:768px){

    .back-to-top{

        left:18px;

        bottom:30px;

    }

    .whatsapp-btn{

        right:18px;

        bottom:30px;

    }

}















/* ==========================================
   Footer Bottom - Mobile
========================================== */

@media (max-width: 768px) {

    .footer-bottom{

        padding-top:24px;

        gap:14px;

    }

    .footer-copyright{

        font-size:.88rem;

        line-height:1.8;

        max-width:320px;

        margin:0 auto;

    }

    .developer-link{

        gap:10px;

        font-size:.9rem;

        flex-wrap:wrap;

        justify-content:center;

    }

    .developer-icon{

        width:38px;

        height:38px;

    }

    .developer-icon svg{

        width:18px;

        height:18px;

    }

}






@media (max-width:480px){

    .footer-bottom{

        padding-top:20px;

        gap:12px;

    }

    .footer-copyright{

        font-size:.82rem;

        line-height:1.7;

    }

    .developer-link{

        font-size:.85rem;

    }

    .developer-icon{

        width:34px;

        height:34px;

    }

    .developer-icon svg{

        width:16px;

        height:16px;

    }

}






.developer-link strong{

    color:var(--white);

    transition:color .3s ease;

}

.developer-link:hover strong{

    color:var(--accent);

}

















/*=========================================
  Developer Bar
=========================================*/

.footer-bottom{

    margin-top:0px;

    padding:18px 20px;

    background:#1E2D45;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

/* خط علوي بسيط */

.footer-bottom::before{

    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:120px;

    height:2px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--secondary),
        transparent
    );

    border-radius:999px;

}

.developer-link{

    display:inline-flex;

    align-items:center;

    gap:14px;

    color:rgba(255,255,255,.82);

    text-decoration:none;

    font-size:.95rem;

    font-weight:500;

    transition:.3s ease;

}

.developer-link:hover{

    color:#fff;

}

.developer-icon{

    width:40px;

    height:40px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.14);

    transition:.3s ease;

}

.developer-icon svg{

    width:18px;

    height:18px;

}

.developer-link:hover .developer-icon{

    background:var(--secondary);

    border-color:var(--secondary);

    color:#fff;

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(154,203,104,.30);

}