/* --- Root Variables (مأخوذة من صفحة الحلال للناف بار) --- */
:root {
    --black: #050505;
    --dark-red: #cd8501;
    --red: #ee9236;
    --white: #ffffff;
    --light-gray: #d0d0d0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html{
    background-color: #000;
}
/* --- Global Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1400px; /* ليتناسب مع تصميم الناف بار الجديد */
    margin: 0 auto;
    padding: 0 5%;
}

.navbar {
    height: 90px; /* تم حذف حرف s الزائد هنا ليقرأ المتصفح الأكواد بشكل صحيح */
    background-color: rgba(0, 0, 0);
    backdrop-filter: blur(200px); /* تأثير ضبابي فخم */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0, 0.08);
    display: flex;
    align-items: center;
    position: fixed; /* هذه الخاصية ستبقى ثابتة وتجعل النافبار مستقرة في الأعلى أثناء السكرول */
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; }

/* Logo Group */
.nav-logo { display: flex; align-items: center; gap: 15px; }

.logo-img { height: 90px; width: auto; object-fit: contain; }

.logo-divider { width: 1px; height: 30px; background-color: rgba(0, 0, 0, 0.2); }


.nav-logo:hover .halal-badge {
    background-color: var(--red);
    transform: scale(1.05);
}

/* Nav Menu */
.nav-menu { display: flex; list-style: none; gap: 30px; align-items: center; }

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red);
    transition: var(--transition);
}

.nav-link:hover { color: var(--red); }
.nav-link:hover::after { width: 100%; }

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 4px; /* زوايا حادة قليلاً  */
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
}

.btn-red {
    background-color: var(--red);
    color: var(--white);
    border: 1px solid var(--red);
}

.btn-red:hover {
    background-color: transparent;
    color: var(--red);
    transform: translateY(-3px);
}

.btn-white { background-color: var(--white); color: var(--red); padding: 15px 40px; }

/* Control Visibility */
.mobile-only-item { display: none; } /* مخفي في اللابتوب */

/* Mobile Toggle */
.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 6px; }
.menu-toggle .bar { width: 28px; height: 2px; background-color: var(--white); transition: var(--transition); }


/* --- باقي ستايلات صفحة About Us الأصلية --- */

.hero { 
    background: #000; 
    padding: 80px 0; 
    margin-top: 90px; /* تم إضافة الهامش لكي لا تختفي الصفحة خلف الناف بار الثابت */
}

.hero-text-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('warehouse.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
}

.tagline { color: #ee9236; font-style: italic; font-size: 14px; }
.hero-text-bg h1 { font-family: 'Montserrat', sans-serif; font-size: 3.5rem; margin: 10px 0; }
.red-divider { width: 50px; height: 5px; background: #ee9236; margin: 15px auto 20px; }
.hero-text-bg p { max-width: 800px; margin: 0 auto 15px; }

.mission { padding: 60px 0 40px; text-align: center; background: #fff; }
.title { font-size: 2rem; font-family: 'Montserrat', sans-serif; }
.red-divider-center { width: 40px; height: 4px; background: #ee9236; margin: 10px auto 20px; }
.desc { max-width: 600px; margin: 0 auto 40px; font-size: 1.1rem; }

.pyramid-wrapper { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.feature-row { display: flex; justify-content: center; gap: 60px; width: 100%; }
.feature i { font-size: 3rem; color: #444; margin-bottom: 10px; }
.feature h3 { font-size: 0.85rem; font-weight: bold; text-transform: uppercase; }

.gallery { width: 100%; }
.gallery-inner { display: flex; width: 100%; height: 200px; }
.img-box { flex: 1; aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid #fff; }
.img-box img { width: 100%; height: 100%; object-fit: cover; }

.small-red-divider-container {
    width: 100%;
    background: #fff;
    padding-top: 30px;
    display: flex;
    justify-content: center;
}
.red-divider-small {
    width: 50px;
    height: 5px;
    background-color: #ee9236;
}

.footer-container { display: flex; flex-wrap: wrap; }
.footer-white { flex: 1.2; padding: 40px; background: #ffffff; }
.footer-red { flex: 0.8; padding: 40px; background: ##ee9236; color: #fff; }
.halal-info { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.h-logo { width: 70px; }
.h-text h4 { color: ##ee9236; font-size: 0.9rem; }
.h-text h3 { font-size: 1.2rem; }
.tags { display: flex; gap: 15px; font-size: 10px; font-weight: bold; color: #666; }
.contact-info ul { list-style: none; margin-top: 15px; }
.contact-info li { font-size: 0.9rem; margin-bottom: 10px; }

/* --- استجابة الموبايل (للناف بار وباقي الصفحة) --- */
@media (max-width: 992px) {
    .menu-toggle { display: flex; z-index: 1001; }
    .nav-actions { display: none; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 75%; height: 100vh; 
        background-color: rgba(5, 5, 5, 0.98);
        flex-direction: column; justify-content: center; align-items: center; 
        transition: 0.5s ease-in-out; gap: 25px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-menu.active { right: 0; }
    .mobile-only-item { display: block; width: 80%; text-align: center; }
    .mobile-only-item .btn { width: 100%; }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 768px) {
    .hero-text-bg h1 { font-size: 2.5rem; }
    .hero-text-bg { padding: 40px 20px; }
    .feature-row { gap: 20px; }
    .feature i { font-size: 2.2rem; }
    .footer-container { flex-direction: column; }
    .footer-white, .footer-red { padding: 30px 20px; }
    .img-box { height: 145px; } 
}