*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Cairo', sans-serif;
}

body{
    background:#0b1b2b;
    color:#fff;
}

/* Container */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */
header{
    background:#0f2740;
    padding:15px 0;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:22px;
    font-weight:700;
}

.logo .orange{
    color:#ff7a18 !important;
}

.logo .white{
    color:#ffffff !important;
}.nav{
    list-style:none;
    display:flex;
    gap:20px;
    justify-content:flex-end;
    direction:rtl;
}

.nav li a{
    text-decoration:none;
    color:#fff;
    transition:0.3s;
}

.nav li a:hover{
    color:#ff7a18;
}
.social-icons{
    display:flex;
    align-items:center;
    gap:12px;
}
.social-icons{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:20px auto;
}

.social-icons a{
    display:flex;
    justify-content:center;
    align-items:center;
    width:48px;
    height:48px;
}

.social-icon{
    width:48px;
    height:48px;
    object-fit:contain;
    display:block;
    transition:.3s;
}

.social-icon:hover{
    transform:translateY(-4px) scale(1.08);
}


@media (max-width:768px){

    .social-icons{
        margin:15px auto;
    }

    .social-icons a{
        width:45px;
        height:45px;
    }

    .social-icon{
        width:45px;
        height:45px;
    }
}
/* WhatsApp button */
.whatsapp-btn{
    background:#25d366;
    padding:8px 15px;
    border-radius:25px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.05);
}

/* Services */
.services{
    padding:60px 0;
}

.grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.box{
    background:#102a45;
    padding:30px;
    border-radius:15px;
    text-align:center;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.05);
}


.box img{
    width:300px;
    height:200px;
    object-fit:cover;

    padding:10px;
    background:#fff;

    border:4px solid #ff7a18;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.35);

    margin-bottom:20px;

    transition:.4s;
}

.box:hover img{
    transform:scale(1.08) rotate(2deg);
}
.box h3{
    color:#ff7a18;
    margin-bottom:10px;
}

/* About */
.about{
    padding:60px 0;
    text-align:center;
    background:#0f2740;
}

.about h2{
    color:#ff7a18;
    margin-bottom:15px;
}
/* Responsive */
@media(max-width:768px){
    .grid{
        grid-template-columns:1fr;
    }

    .nav{
        display:none;
    }

    .hero h1{
        font-size:26px;
    }
}





.menu-toggle{
    display:none;
    width:40px;
    height:40px;
    background:#ff7a18;
    color:#fff;
    border-radius:9px;
    font-size:28px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.menu-toggle:hover{
    background:#ffa24a;
    transform:scale(1.05);
}


.box-link{
    display:block;
    text-decoration:none;
    color:inherit;
}


/* الموبايل */
@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav{
        display:none;
        position:absolute;
        top:70px;
        right:15px;
        width:230px;
        background:#102a45;
        border-radius:12px;
        box-shadow:0 10px 25px rgba(0,0,0,.3);
        overflow:hidden;
 
    justify-content:flex-end; /* تبدأ من اليمين */

    }

    .nav.active{
        display:block;
    }

    .nav li{
        display:block;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .nav li:last-child{
        border:none;
    }

    .nav li a{
        display:block;
        padding:15px;
    }
}


.floating-whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 25px rgba(37,211,102,.45);
    z-index:9999;
    transition:.3s;
    animation:whatsappPulse 2s infinite;
}

.floating-whatsapp img{
    width:36px;
    height:36px;
}

.floating-whatsapp:hover{
    transform:scale(1.12);
    box-shadow:0 12px 35px rgba(37,211,102,.7);
}

@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:768px){
    .floating-whatsapp{
        width:58px;
        height:58px;
        bottom:20px;
        right:20px;
    }

    .floating-whatsapp img{
        width:32px;
        height:32px;
    }
}





footer{
    background:#0b1b2b;
    padding:18px 0;
}

/* مهم جدًا: يمنع أي override */
.footer-flex{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:row;
    gap:18px;
    flex-wrap:wrap;
    text-align:center;
}

/* النص */
.footer-text{
    color:#fff !important;   /* 🔥 أهم سطر */
    font-size:14px;
    opacity:0.95;
    display:inline-block;
    align-items:center;
    gap:8px;
}

/* الفاصل */
.divider{
    width:1px;
    height:18px;
    background:rgba(255,255,255,0.35);
}

/* اللينك البرتقالي */
.brand{
    color:#ff7a18 !important;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

/* hover احترافي */
.brand:hover{
    color:#ffa24a;
    text-shadow:0 0 10px rgba(255,122,24,0.5);
}





.hero{
    width:100%;
    height:350px;
    background:url("../images/arco-express.jpg") center center no-repeat;
    background-size:cover;   /* للديسكتوب */
}


/* تابلت */
@media (max-width:1024px){
    .hero{
        height:260px;
        background-position:60% center;
    }
}

/* موبايل كبير */
@media (max-width:768px){
    .hero{
        height:180px;
        background-position:30% center;
    }
}

/* موبايل متوسط */
@media (max-width:600px){
    .hero{
        height:160px;
        background-position:25% center;
    }
}

/* موبايل صغير */
@media (max-width:480px){
    .hero{
        height:150px;
        background-position:20% center;
    }
}

/* موبايل صغير جدًا */
@media (max-width:360px){
    .hero{
        height:140px;
        background-position:15% center;
    }
}
.orange-icon{
    color:#f28c28;
    font-size:18px;
}
.logo-link{
    text-decoration:none;
    color:inherit;
}

.logo-link:hover{
    text-decoration:none;
}




/* زر التواصل */
.contact-btn-wrapper{
    text-align:center;
    margin-top:50px;
    margin-bottom: 50px; /* المسافة أسفل الزر */
}

.contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:linear-gradient(135deg,#ff7a18,#f28c28);
    color:#fff;
    text-decoration:none;

    padding:15px 38px;
    border-radius:50px;

    font-size:18px;
    font-weight:700;

    box-shadow:0 12px 30px rgba(242,140,40,.35);

    transition:.35s ease;
}

.contact-btn i{
    font-size:18px;
}

.contact-btn:hover{
    transform:translateY(-4px) scale(1.03);
    box-shadow:0 18px 40px rgba(242,140,40,.5);
    background:linear-gradient(135deg,#ff8d2b,#ff6a00);
}

.contact-btn:active{
    transform:scale(.98);
}

@media(max-width:768px){
    .contact-btn{
        width:100%;
        max-width:320px;
        padding:15px 20px;
        font-size:17px;
    }
}