/* --- 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);
}

/* --- Global Resets --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 5%; }

/* --- Updated Navbar (Premium Style) --- */
/* --- Updated Navbar (Premium Style) --- */
.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); }

/* --- Hero Section --- */
.hero { display: grid; grid-template-columns: 45% 55%; min-height: 90vh; margin-top: 90px; width: 100%; }
.hero-content { background-color: var(--black); padding: 80px 8%; display: flex; align-items: center; position: relative; }
.hero-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 4rem; line-height: 0.95; letter-spacing: -2px; margin-bottom: 20px; }
.hero-title span { color: var(--red); }
.title-line { width: 60px; height: 4px; background-color: var(--red); margin-bottom: 30px; }
.hero-description { color: var(--light-gray); font-size: 1.1rem; max-width: 500px; margin-bottom: 40px; }
.hero-checklist { list-style: none; }
.hero-checklist li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-size: 0.95rem; }
.check-icon { background-color: var(--red); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: bold; }
.islamic-pattern { position: absolute; bottom: 20px; right: 20px; width: 200px; height: 200px; background-image: url('https://www.transparenttextures.com/patterns/mosque-icons.png'); opacity: 0.05; pointer-events: none; }
.hero-image { background-color: #000; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; border-left: 2px solid rgba(160,0,0,0.8); }
.mobile-extra-content { display: none; }
.main-image-wrapper { width: 100%; display: flex; justify-content: center; position: relative; }
.main-kebab { max-height: 80vh; max-width: 90%; object-fit: contain; z-index: 2; filter: drop-shadow(0 0 50px rgba(179, 0, 0, 0.3)); }
.image-glow { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(179, 0, 0, 0.15) 0%, transparent 70%); z-index: 1; }

/* --- Features Bar --- */
.features-bar { background-color: var(--white); padding: 60px 0; border-bottom: 1px solid #eee; }
.features-grid { display: flex; justify-content: space-between; align-items: center; }
.feature-item { display: flex; flex-direction: column; align-items: center; text-align: center; color: var(--black); gap: 10px; flex: 1; border-right: 1px solid #f0f0f0; }
.feature-item:last-child { border-right: none; }
.feat-icon { width: 50px; height: 50px; border: 1px solid var(--light-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--red); }
.feature-item span { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; }

/* --- CTA & Footer --- */
.cta-section { background: linear-gradient(135deg, var(--dark-red), var(--red)); padding: 80px 0; }
.cta-wrapper { display: flex; justify-content: space-between; align-items: center; }
.cta-left { display: flex; align-items: center; gap: 30px; }
.handshake-icon { font-size: 4rem; background: rgba(255,255,255,0.1); padding: 20px; border-radius: 50%; }
.footer { padding: 40px 0; text-align: center; background-color: var(--black); border-top: 1px solid rgba(255,255,255,0.05); }

/* --- Mobile Responsiveness --- */
@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; margin-top: 10px; }
    .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); }

    /* الترتيب المطلوب للموبايل */
    .hero { display: flex; flex-direction: column; margin-top: 80px; }
    .hero-content { order: 1; text-align: center; padding: 40px 5%; min-height: auto; }
    .hero-title { font-size: 2.5rem; }
    .title-line { margin: 0 auto 20px auto; }
    .hero-description { margin: 0 auto 30px auto; }
    .hero-checklist { display: inline-block; text-align: left; }
    .hero-image { order: 2; border-left: none; border-top: 2px solid rgba(160,0,0,0.8); padding: 0; }
    .mobile-stack { width: 100%; display: flex; flex-direction: column; align-items: center; }
    .mobile-extra-content { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 40px 20px; }
    .mobile-logo { width: 120px; margin-bottom: 15px; }
    .hero-text { font-size: 1.5rem; text-transform: uppercase; }
    .main-image-wrapper { width: 100%; }
    .main-kebab { width: 100%; max-height: none; }
    .features-grid { flex-wrap: wrap; gap: 20px; }
    .feature-item { flex: 0 0 45%; border-right: none; }
    .cta-wrapper { flex-direction: column; text-align: center; gap: 30px; }
    .cta-left { flex-direction: column; }
}