:root {
    --dark-red: #cd8501;
    --bg-light: #f4f4f4;
    --text-dark: #1a1a1a;
    --white: #ffffff;
    /* إضافة المتغيرات المستعملة في الناف بار المتطابقة */
    --red: #ee9236;  
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navbar المطابقة تماماً لكود الـ Contact --- */
.navbar {
    height: 90px; 
    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); }

/* إضافة تأثير Badge الحلال ليتطابق مع الـ Contact */
.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);
}

/* إضافة دعم حالة الرابط النشط Active */
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link:hover::after, .nav-link.active::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;
    text-align: center;
}

.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-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url('imgs/ChatGPT\ Image\ May\ 13\,\ 2026\,\ 03_43_30\ AM.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 30%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: var(--white);
}

.tagline {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.red-text {
    color: var(--primary-red);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 500px;
    
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-red {
    background: var(--primary-red);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.btn-outline {
    border: 1.5px solid white;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Features Bar */
.features-bar {
    background: var(--bg-light);
    padding: 35px 0;
    border-bottom: 1px solid #ddd;
}

.features-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: bold;
}

.icon-circle {
    width: 42px;
    height: 42px;
    border: 1px solid #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #333;
}

/* Main Product Section */
.main-product {
    padding: 80px 0 0 0;
    background: var(--bg-light);
}

.product-flex {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.product-text {
    flex: 1;
    padding-top: 40px;
}

.product-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #111;
}

.product-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.product-image {
    flex: 1;
    background: #000;
    border-top-left-radius: 25px; 
    overflow: hidden;
    line-height: 0;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Media Queries القديمة الخاصة بك */
@media (max-width: 992px) {
    /* دمج شاشات الموبايل المتطابقة تماماً من كود الـ Contact لتشغيل الناف بار بشكل سليم وعصري */
    .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); }
}

@media (max-width: 768px) {
    /* الإعدادات التنافسية الخاصة بصفحة الهوم بدون تغيير */
    .hero-content h1 { font-size: 2.3rem; }
    .features-wrapper { flex-wrap: wrap; gap: 20px; justify-content: center; }
    .product-flex { flex-direction: column; }
    .product-image { border-top-left-radius: 0; }
    .hero-btns { flex-direction: column; }
}


/* ==========================================================================
   إضافة الستايل الخاص بقسم المنتجات الجديد في نهاية الملف بدون التعديل على ما سبق
   ========================================================================== */

.products-section-new {
    padding: 80px 0;
    background-color: #ffffff;
}

.products-header-new {
    text-align: center;
    margin-bottom: 50px;
}

.products-header-new .sub-title-new {
    color: #c49a52; /* اللون الذهبي المتناسق مع تصميم الصورة */
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.products-header-new h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 15px;
}

.products-header-new .title-line-new {
    width: 50px;
    height: 3px;
    background-color: #c49a52;
    margin: 0 auto;
}

.products-container-new {
    display: flex;
    align-items: center;
    gap: 40px;
}

.products-left-new {
    flex: 1;
}

.check-list-new {
    list-style: none;
}

.check-list-new li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.check-list-new li i {
    color: #c49a52;
    font-size: 1.3rem;
    margin-top: 3px;
}

.products-right-new {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.img-box-new {
    background-color: #f7f7f7; /* خلفية رمادية خفيفة تظهر بشكل مؤقت حتى تضيف مسارات الصور */
    border: 1px dashed #ddd;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 4.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* شاشات التابلت والموبايل للقسم الجديد لضمان التجاوب الاحترافي */
@media (max-width: 992px) {
    .products-container-new {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
    .products-right-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-right-new {
        grid-template-columns: 1fr;
    }
    .products-header-new h2 {
        font-size: 2rem;
    }
}
/* إلغاء التوسيط وجعل الهيرو يبدأ من الحافة اليسرى للشاشة تماماً */
.hero-section .container {
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
    padding-left: 80px; /* مسافة أمان صغيرة واحترافية عن حافة الشاشة اليسرى */
}

/* التأكد من محاذاة الأسطر والأزرار لتبدأ من اليسار */
.hero-content {
    text-align: left;
}

.hero-btns {
    justify-content: flex-start;
}