
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        :root {
            --gold: #D4AF37;
            --dark-gold: #B8860B;
            --black: #0a0a0a;
            --light-black: #1a1a1a;
            --white: #fefefe;
            --gray: #eaeaea;
            --beige: #f8f5f0;
            --transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
            --safe-area-inset-top: env(safe-area-inset-top);
            --safe-area-inset-bottom: env(safe-area-inset-bottom);
        }
        
        html {
            font-size: 16px;
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        
        body {
            background-color: var(--white);
            color: var(--black);
            line-height: 1.6;
            font-family: 'Cairo', sans-serif;
            overflow-x: hidden;
            padding-top: var(--safe-area-inset-top);
            padding-bottom: var(--safe-area-inset-bottom);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        /* تحسين تحميل الصور */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* تحسين lazy loading */
        img[loading="lazy"] {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        img[loading="lazy"].loaded {
            opacity: 1;
        }
        
        /* خلفية مؤقتة للصور أثناء التحميل */
        .product-image {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }
        
        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        /* الشريط العلوي المحسن - تم إعادة التنظيم */
        header {
            background-color: rgba(10, 10, 10, 0.97);
            color: var(--white);
            padding: 0.8rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: var(--transition);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            height: 70px;
            min-height: 70px;
        }
        
        /* التعديل: الشعار على اليمين */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            order: 2; /* نقل الشعار لليمين */
        }
        
        .logo-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.3));
            animation: logoFloat 4s ease-in-out infinite;
            flex-shrink: 0;
        }
        
        .logo-text-container {
            display: flex;
            flex-direction: column;
            align-items: flex-end; /* محاذاة لليمين */
            text-align: right; /* نص لليمين */
        }
        
        .logo-text-container h1 {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--gold), #f8e7a1, var(--gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% 100%;
            animation: gradientShift 3s ease infinite;
            letter-spacing: 1px;
            line-height: 1.2;
        }
        
        .logo-text-container .subtitle {
            font-family: 'El Messiri', sans-serif;
            font-size: 0.8rem;
            color: var(--gray);
            margin-top: 3px;
            letter-spacing: 2px;
            opacity: 0.8;
            line-height: 1.2;
        }
        
        /* شريط التنقل المحسن - تم نقله لليسار */
        nav {
            order: 1; /* نقل التنقل لليسار */
        }
        
        /* شريط التنقل للهواتف - على اليسار */
    nav ul {
    display: flex; /* 👈 ضروري */
    position: fixed;
    top: 0;
    left: 0;

    width: 320px;
    height: 100vh;
    max-height: 100vh;

    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;

    padding: calc(70px + 1.5rem) 2rem 2rem;

    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;

   background: #0a0a0a;
    opacity: 1;
    filter: none;
    border-right: 1px solid rgba(212, 175, 55, 0.2);

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}


        
      nav ul.active {
    transform: translateX(0);
}

        
        @keyframes slideInLeft {
            from {
                transform: translateX(-100%);
            }
            to {
                transform: translateX(0);
            }
        }
        
        nav ul li {
            width: 100%;
            margin-bottom: 1rem;
        }
        
        nav ul a {
            width: 100%;
            height: 60px;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: flex-end; /* محاذاة لليمين */
            border-radius: 12px;
            transition: all 0.3s;
            font-size: 1.2rem;
            font-weight: 600;
            border: 1px solid transparent;
            position: relative;
            color: var(--white);
            text-decoration: none;
        }
        
        nav ul a:hover, nav ul a:active {
            background: rgba(212, 175, 55, 0.1);
            border-color: rgba(212, 175, 55, 0.3);
            color: var(--gold);
            padding-left: 30px; /* تعديل على اليسار */
        }
        
        nav ul a::before {
            content: '';
            position: absolute;
            left: 15px; /* تعديل للجانب الأيسر */
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        nav ul a:hover::before, nav ul a:active::before {
            opacity: 1;
        }
        
        /* زر القائمة المحسن - تم نقله لليسار */
        .mobile-menu-btn {
            display: flex;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2);
            color: var(--white);
            font-size: 1.6rem;
            cursor: pointer;
            z-index: 10000;
            transition: var(--transition);
            width: 50px;
            height: 50px;
            border-radius: 12px;
            align-items: center;
            justify-content: center;
            touch-action: manipulation;
            order: 1; /* زر القائمة في أقصى اليسار */
        }
        
        .mobile-menu-btn:hover {
            background: rgba(212, 175, 55, 0.2);
        }
        
        .mobile-menu-btn i {
            font-size: 1.4rem;
            transition: transform 0.3s;
        }
        
        .mobile-menu-btn.active i {
            transform: rotate(90deg);
        }
        
        /* طبقة التعتيم للخلفية
        .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); ❗ مش 0.8 أو 0.9 
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}*/
        
        /* الهيرو المحسن للهواتف - تم تعديل الارتفاع */
        .hero {
            background: url('../images/foulard.webp') center/cover no-repeat;
            color: var(--white);
            padding: 9rem 5% 6rem;
            text-align: center;
            min-height: 85vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            background-attachment: fixed;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
            z-index: 0;
        }
        
        .hero-content {
            max-width: 100%;
            z-index: 2;
            position: relative;
            width: 100%;
            padding: 0 10px;
        }
        
        .hero h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            letter-spacing: 1px;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            animation: fadeInUp 1s ease-out 0.3s both;
            line-height: 1.3;
        }
        
        .hero .highlight {
            color: var(--gold);
            position: relative;
            display: inline-block;
        }
        
        .hero .highlight::after {
            content: '';
            position: absolute;
            bottom: 3px;
            left: 0;
            width: 100%;
            height: 5px;
            background: rgba(212, 175, 55, 0.2);
            z-index: -1;
            transform: skewX(-15deg);
        }
        
        .hero p {
            font-size: 1.1rem;
            max-width: 100%;
            margin: 0 auto 2rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            line-height: 1.6;
            animation: fadeInUp 1s ease-out 0.6s both;
            padding: 0 5px;
        }
        
        .gold-line {
            height: 3px;
            width: 120px;
            background: linear-gradient(90deg, var(--gold), var(--dark-gold));
            margin: 2rem auto;
            border-radius: 2px;
            animation: expandWidth 1.5s ease-out 0.9s both;
        }
        
        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            margin-top: 2.5rem;
            animation: fadeInUp 1s ease-out 1.2s both;
            width: 100%;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            padding: 1rem 2rem;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            font-family: 'El Messiri', sans-serif;
            width: 100%;
            max-width: 300px;
            min-height: 56px;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:active {
            transform: scale(0.98);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--black);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }
        
        .btn-primary:hover, .btn-primary:focus {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
        
        .btn-secondary:hover, .btn-secondary:focus {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--gold);
            transform: translateY(-5px);
        }
        
        /* الأنيميشن للصور */
        .animated-image {
            animation: floatImage 6s ease-in-out infinite;
            transform-origin: center center;
        }
        
        .animated-image-delay {
            animation: floatImage 6s ease-in-out infinite 1s;
        }
        
        .animated-image-delay-2 {
            animation: floatImage 6s ease-in-out infinite 2s;
        }
        
        /* الأقسام العامة */
        section {
            padding: 4rem 5%;
            position: relative;
            scroll-margin-top: 80px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--black);
            display: inline-block;
            padding-bottom: 15px;
            position: relative;
            line-height: 1.3;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--dark-gold));
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1rem;
            color: var(--light-black);
            max-width: 100%;
            margin: 1rem auto 2.5rem;
            line-height: 1.6;
            opacity: 0.8;
            padding: 0 10px;
        }
        
        /* قسم من نحن */
        .about {
            background-color: var(--beige);
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            z-index: 0;
        }
        
        .about-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .about-text {
            width: 100%;
            order: 2;
        }
        
        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--light-black);
            line-height: 1.7;
            text-align: justify;
        }
        
        .mission-box {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 245, 240, 0.95));
            border-right: 4px solid var(--gold);
            padding: 1.5rem;
            border-radius: 0 12px 12px 0;
            margin-top: 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transform: translateX(0);
            transition: var(--transition);
        }
        
        .mission-box:hover {
            transform: translateX(5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .mission-box h3 {
            font-size: 1.5rem;
            color: var(--dark-gold);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .mission-box h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--gold);
            bottom: -6px;
            right: 0;
        }
        
        .about-image {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            order: 1;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
            z-index: 1;
            opacity: 0;
            transition: var(--transition);
        }
        
        .about-image:hover::before {
            opacity: 1;
        }
        
        .about-image:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }
        
        .about-image img {
            width: 100%;
            height: 300px;
            object-fit: contain;
            display: block;
            transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
            background-color: var(--beige);
            padding: 1rem;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* قسم المنتجات */
        .products {
            background-color: var(--white);
            position: relative;
        }
        
        .products::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            z-index: 0;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .product-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--dark-gold));
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
            z-index: 2;
        }
        
        .product-card:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        /* تحسين منطقة الصورة لجميع الأبعاد */
        .product-image-container {
            position: relative;
            overflow: hidden;
            flex: 0 0 auto;
        }
        
        .product-image {
            width: 100%;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .product-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.05));
            z-index: 1;
        }
        
        .product-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
            padding: 1rem;
            display: block;
            width: auto;
            height: auto;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.08);
        }
        
        .product-overlay {
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 2;
        }
        
        .product-label {
            background: rgba(10, 10, 10, 0.8);
            color: var(--gold);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        /* تحسين المحتوى النصي */
        .product-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex: 1;
            position: relative;
        }
        
        .product-content h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--black);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.3;
            min-height: 3.5em;
        }
        
        .product-content h3 i {
            color: var(--gold);
            font-size: 1.3rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }
        
        .product-content p {
            color: var(--light-black);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 1rem;
            flex: 1;
        }
        
        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .product-features span {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
            color: var(--dark-gold);
            background: rgba(212, 175, 55, 0.08);
            padding: 0.3rem 0.6rem;
            border-radius: 12px;
            white-space: nowrap;
        }
        
        .product-features i {
            font-size: 0.7rem;
        }
        
        /* قسم آلية البيع */
        .selling-process {
            background: linear-gradient(135deg, var(--beige), #f3efe6);
            position: relative;
            overflow: hidden;
        }
        
        .selling-process::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            z-index: 0;
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .step {
            width: 100%;
            text-align: center;
            padding: 2rem 1.5rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            transition: var(--transition);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(212, 175, 55, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
            opacity: 0;
            transition: var(--transition);
        }
        
        .step:hover::before {
            opacity: 1;
        }
        
        .step:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: rgba(212, 175, 55, 0.2);
        }
        
        .step-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: var(--gold);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .step-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            opacity: 0;
            transition: var(--transition);
        }
        
        .step:hover .step-icon::before {
            opacity: 1;
        }
        
        .step:hover .step-icon {
            color: var(--white);
            transform: scale(1.08) rotate(3deg);
        }
        
        .step-icon i {
            position: relative;
            z-index: 1;
        }
        
        .step h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--black);
            line-height: 1.3;
        }
        
        .step p {
            color: var(--light-black);
            line-height: 1.6;
            font-size: 1rem;
        }
        
        /* واتساب عائم */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            left: 25px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            z-index: 2000;
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
            transition: var(--transition);
            text-decoration: none;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }
        
        .whatsapp-float:hover, .whatsapp-float:active {
            transform: scale(1.1);
            box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
        }
        
        .whatsapp-float:active {
            transform: scale(1.05);
        }
        
        /* قسم التواصل */
        .contact {
            background: linear-gradient(135deg, var(--black), #121212);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--dark-gold), var(--gold));
        }
        
        .contact-content {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .contact-info {
            width: 100%;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--gold);
            position: relative;
            padding-bottom: 15px;
            line-height: 1.3;
        }
        
        .contact-info h3::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--gold);
            bottom: 0;
            right: 0;
            border-radius: 2px;
        }
        
        .contact-details {
            margin-top: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            border-radius: 12px;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            touch-action: manipulation;
        }
        
        .contact-item:active {
            background: rgba(255, 255, 255, 0.06);
        }
        
        .contact-item:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: translateX(-8px);
            border-color: rgba(212, 175, 55, 0.2);
        }
        
        .contact-item i {
            color: var(--gold);
            font-size: 1.2rem;
            width: 45px;
            height: 45px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-item span {
            font-size: 1rem;
            line-height: 1.4;
            direction: ltr;
            text-align: right;
            word-break: break-all;
        }
        
        .social-media {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: flex-start;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--gold);
            border-radius: 50%;
            font-size: 1.3rem;
            transition: var(--transition);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            touch-action: manipulation;
        }
        
        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            opacity: 0;
            transition: var(--transition);
            border-radius: 50%;
        }
        
        .social-icon:hover::before, .social-icon:active::before {
            opacity: 1;
        }
        
        .social-icon i {
            position: relative;
            z-index: 1;
        }
        
        .social-icon:hover, .social-icon:active {
            color: var(--black);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
        .contact-message {
            width: 100%;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transform: translateY(0);
            transition: var(--transition);
        }
        
        .contact-message:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }
        
        .contact-message p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
        }
        
        .client-message {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.1));
            border-right: 4px solid var(--gold);
            padding: 1.5rem;
            border-radius: 0 12px 12px 0;
            margin-top: 2rem;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
        
        .client-message p {
            color: var(--white);
            font-style: italic;
            margin-bottom: 0;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        /* الفوتر المحسن */
        footer {
            background: linear-gradient(135deg, #121212, var(--light-black));
            color: var(--gray);
            padding: 3rem 5% 2rem;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
        }
        
        .footer-content {
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
        }
        
        .footer-logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .footer-logo-img {
            width: 70px;
            height: 70px;
            object-fit: contain;
            filter: drop-shadow(0 3px 10px rgba(212, 175, 55, 0.3));
            margin-bottom: 1rem;
            animation: logoFloat 4s ease-in-out infinite 0.5s;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--gold), #f8e7a1, var(--gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% 100%;
            animation: gradientShift 3s ease infinite;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        
        .footer-tagline {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            padding: 0 10px;
        }
        
        .copyright {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            line-height: 1.5;
        }
        
        /* Scroll progress indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--dark-gold));
            z-index: 1001;
            transition: width 0.1s ease;
        }
        
        /* تحسينات أزرار التصفية للهواتف */
        .category-filter {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            padding: 0 10px;
        }
        
        .filter-btn {
            padding: 1rem 1.8rem;
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 50px;
            color: var(--black);
            font-family: 'El Messiri', sans-serif;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            min-width: 110px;
            text-align: center;
            margin: 0.3rem;
            touch-action: manipulation;
        }
        
        .filter-btn:hover {
            background: rgba(212, 175, 55, 0.15);
            transform: translateY(-3px);
        }
        
        .filter-btn.active {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 134, 11, 0.15));
            border-color: var(--gold);
            color: var(--dark-gold);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
        }
        
        /* أقسام الفئات */
        .category-section {
            margin-bottom: 5rem;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .category-title {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }
        
        .category-title h3 {
            font-size: 1.8rem;
            color: var(--dark-gold);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .category-title h3 i {
            color: var(--gold);
            font-size: 1.5rem;
        }
        
        .category-title p {
            color: var(--light-black);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0.8;
        }
        
        /* قسم الدعوة للتواصل */
        .cta-section {
            background: linear-gradient(135deg, rgba(248, 241, 240, 0.95), rgba(255, 255, 255, 0.95));
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            margin-top: 4rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            z-index: 0;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-content h3 {
            font-size: 1.8rem;
            color: var(--dark-gold);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .cta-content h3 i {
            color: var(--gold);
        }
        
        .cta-content p {
            font-size: 1.1rem;
            color: var(--light-black);
            max-width: 600px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }
        
        .cta-content .btn {
            display: inline-flex;
            width: auto;
            min-width: 250px;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes expandWidth {
            from {
                width: 0;
                opacity: 0;
            }
            to {
                width: 120px;
                opacity: 1;
            }
        }
        
        @keyframes floatImage {
            0%, 100% {
                transform: translateY(0) rotate(0);
            }
            50% {
                transform: translateY(-15px) rotate(0.5deg);
            }
        }
        
        @keyframes logoFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }
        
        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .stagger-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .stagger-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .product-card.hidden {
            display: none;
        }
        
        .product-card.show {
            animation: fadeIn 0.5s ease forwards;
        }
        
        /* تصميم متدرج للكروت */
        .stagger-item:nth-child(1) { transition-delay: 0.1s; }
        .stagger-item:nth-child(2) { transition-delay: 0.2s; }
        .stagger-item:nth-child(3) { transition-delay: 0.3s; }
        .stagger-item:nth-child(4) { transition-delay: 0.4s; }
        .stagger-item:nth-child(5) { transition-delay: 0.5s; }
        .stagger-item:nth-child(6) { transition-delay: 0.6s; }
        .stagger-item:nth-child(7) { transition-delay: 0.7s; }
        .stagger-item:nth-child(8) { transition-delay: 0.8s; }
        .stagger-item:nth-child(9) { transition-delay: 0.9s; }
        .stagger-item:nth-child(10) { transition-delay: 1s; }
        .stagger-item:nth-child(11) { transition-delay: 1.1s; }
        .stagger-item:nth-child(12) { transition-delay: 1.2s; }
        .stagger-item:nth-child(13) { transition-delay: 1.3s; }
        .stagger-item:nth-child(14) { transition-delay: 1.4s; }
        .stagger-item:nth-child(15) { transition-delay: 1.5s; }
        .stagger-item:nth-child(16) { transition-delay: 1.6s; }
        .stagger-item:nth-child(17) { transition-delay: 1.7s; }
        .stagger-item:nth-child(18) { transition-delay: 1.8s; }
        
        /* إضافة safe area للهواتف الحديثة */
        .safe-area-padding {
            padding-left: env(safe-area-inset-left);
            padding-right: env(safe-area-inset-right);
        }
        
        /* تحسينات للهواتف المحمولة */
        @media (max-width: 767px) {
            /* تصحيح ارتفاع الهيرو للهواتف */
            .hero {
                min-height: 85vh !important;
                padding: 7rem 5% 4rem;
            }
            
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
                padding: 0 15px;
            }
            
            /* تحسين أزرار التصفية للهواتف الصغيرة */
            .category-filter {
                gap: 0.8rem;
            }
            
            .filter-btn {
                padding: 0.9rem 1.5rem;
                font-size: 0.95rem;
                min-width: 100px;
                margin: 0.2rem;
            }
            
            /* تحسين حجم النص للشاشات الصغيرة */
            .product-content h3 {
                font-size: 1.2rem;
                min-height: auto;
            }
            
            .product-content p {
                font-size: 0.95rem;
            }
            
            .cta-section {
                padding: 2rem 1.5rem;
            }
            
            .cta-content h3 {
                font-size: 1.5rem;
            }
            
            .cta-content .btn {
                min-width: 100%;
            }
            
            /* تحسين المسافات */
            section {
                padding: 3rem 5%;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            /* تحسين النافبار للهواتف */
            .logo-container {
                gap: 8px;
            }
            
            .logo-img {
                width: 45px;
                height: 45px;
            }
            
            .logo-text-container h1 {
                font-size: 1.3rem;
            }
            
            .logo-text-container .subtitle {
                font-size: 0.7rem;
                letter-spacing: 1px;
            }
            
            .mobile-menu-btn {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
        }
        
        /* تصميم متجاوب للشاشات المتوسطة */
        @media (min-width: 768px) {
            html {
                font-size: 17px;
            }
            
            header {
                padding: 1rem 5%;
                height: 80px;
                min-height: 80px;
            }
            
            .logo-img {
                width: 55px;
                height: 55px;
            }
            
            .logo-text-container h1 {
                font-size: 1.8rem;
            }
            
            /* شريط التنقل للشاشات الكبيرة - على اليسار */
            nav ul {
                display: flex !important;
                position: static;
                width: auto;
                height: auto;
                background: transparent;
                padding: 0;
                box-shadow: none;
                border: none;
                flex-direction: row;
                gap: 2.2rem;
                max-width: none;
                transform: none;
                margin-right: auto;
            }
            
            nav ul li {
                width: auto;
                margin-bottom: 0;
            }
            
            nav ul a {
                width: auto;
                height: 40px;
                padding: 0;
                background: transparent;
                font-size: 1.1rem;
                font-weight: 500;
                justify-content: flex-start;
            }
            
            nav ul a:hover, nav ul a:active {
                background: transparent;
                border-color: transparent;
                color: var(--gold);
                padding: 0;
            }
            
            nav ul a::before {
                display: none;
            }
            
            nav ul a::after {
                content: '';
                position: absolute;
                width: 0;
                height: 2px;
                background: linear-gradient(90deg, var(--gold), var(--dark-gold));
                bottom: 0;
                right: 0;
                transition: width 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
            }
            
            nav ul a:hover::after {
                width: 100%;
            }
            
            .mobile-menu-btn {
                display: none;
            }
            
            .nav-overlay {
                display: none;
            }
            
            .hero h2 {
                font-size: 3.2rem;
            }
            
            .hero p {
                font-size: 1.3rem;
                max-width: 700px;
            }
            
            .hero-buttons {
                flex-direction: row;
                gap: 1.5rem;
                max-width: 500px;
            }
            
            .btn {
                width: auto;
                min-width: 200px;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
                max-width: 700px;
            }
            
            .about-content {
                flex-direction: row;
                gap: 4rem;
            }
            
            .about-text {
                order: 1;
            }
            
            .about-image {
                order: 2;
            }
            
            .about-image img {
                height: 350px;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
            
            .product-image {
                height: 250px;
            }
            
            .product-content h3 {
                font-size: 1.5rem;
                min-height: 4em;
            }
            
            .product-content p {
                font-size: 1.05rem;
            }
            
            .product-features span {
                font-size: 0.85rem;
                padding: 0.4rem 0.8rem;
            }
            
            .process-steps {
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .step {
                flex: 1;
                min-width: 250px;
            }
            
            .contact-content {
                flex-direction: row;
            }
            
            .contact-info, .contact-message {
                flex: 1;
            }
            
            .footer-logo {
                font-size: 2.2rem;
            }
            
            .category-filter {
                gap: 1.5rem;
            }
            
            .filter-btn {
                padding: 0.9rem 2.2rem;
                font-size: 1.1rem;
            }
            
            .category-title h3 {
                font-size: 2rem;
            }
        }
        
        /* تصميم للشاشات الكبيرة */
        @media (min-width: 1024px) {
            html {
                font-size: 18px;
            }
            
            header {
                padding: 1.2rem 5%;
            }
            
            .logo-img {
                width: 60px;
                height: 60px;
            }
            
            .logo-text-container h1 {
                font-size: 2rem;
            }
            
            nav ul {
                gap: 2.8rem;
            }
            
            nav ul a {
                font-size: 1.2rem;
            }
            
            .hero h2 {
                font-size: 4rem;
            }
            
            .hero p {
                font-size: 1.4rem;
                max-width: 800px;
            }
            
            .hero-buttons {
                max-width: 600px;
            }
            
            .section-title h2 {
                font-size: 3rem;
            }
            
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 3rem;
            }
            
            .product-image {
                height: 280px;
            }
            
            .about-content {
                gap: 6rem;
            }
            
            .about-image img {
                height: 400px;
            }
            
            .process-steps {
                gap: 3rem;
            }
            
            .step {
                padding: 3rem 2rem;
            }
            
            .step-icon {
                width: 80px;
                height: 80px;
                font-size: 2.2rem;
            }
            
            .footer-logo {
                font-size: 2.5rem;
            }
        }
        
        /* إصلاحات للشاشات الصغيرة جداً */
        @media (max-width: 360px) {
            html {
                font-size: 14px;
            }
            
            header {
                padding: 0.6rem 5%;
                height: 65px;
                min-height: 65px;
            }
            
            .logo-img {
                width: 40px;
                height: 40px;
            }
            
            .logo-text-container h1 {
                font-size: 1.2rem;
            }
            
            .logo-text-container .subtitle {
                font-size: 0.65rem;
                letter-spacing: 1px;
            }
            
            .mobile-menu-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .hero {
                padding: 6rem 5% 3rem;
                min-height: 80vh !important;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 0.95rem;
            }
            
            .btn {
                padding: 0.9rem 1.5rem;
                font-size: 1rem;
                min-height: 50px;
            }
            
            .whatsapp-float {
                width: 55px;
                height: 55px;
                font-size: 24px;
                bottom: 20px;
                left: 20px;
            }
            
            section {
                padding: 2.5rem 5%;
            }
            
            .category-filter {
                gap: 0.5rem;
            }
            
            .filter-btn {
                padding: 0.8rem 1.2rem;
                font-size: 0.9rem;
                min-width: 90px;
            }
            
            .category-title h3 {
                font-size: 1.4rem;
            }
            
            .product-image {
                height: 180px;
            }
            
            .product-content h3 {
                font-size: 1.1rem;
                min-height: auto;
            }
            
            .product-content p {
                font-size: 0.9rem;
            }
            
            .product-features {
                gap: 0.3rem;
            }
            
            .product-features span {
                font-size: 0.7rem;
                padding: 0.25rem 0.45rem;
            }
            
            .cta-section {
                padding: 1.5rem 1rem;
            }
            
            .cta-content h3 {
                font-size: 1.3rem;
            }
            
            .cta-content .btn {
                min-width: 100%;
            }
            
            /* تعديل شريط التنقل للهواتف الصغيرة */
            nav ul {
                width: 280px;
                padding: 5rem 1.5rem 2rem;
            }
            
            nav ul a {
                height: 50px;
                font-size: 1.1rem;
            }
        }
        
        /* إصلاحات للهواتف الأفقية */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                min-height: 100vh !important;
                padding: 6rem 5% 3rem;
            }
            
            .hero h2 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .hero p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .gold-line {
                margin: 1.5rem auto;
            }
            
            .hero-buttons {
                margin-top: 2rem;
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
                min-height: 45px;
                min-width: 180px;
            }
            
            header {
                height: 60px;
                min-height: 60px;
            }
            
            .logo-img {
                width: 40px;
                height: 40px;
            }
            
            .logo-text-container h1 {
                font-size: 1.2rem;
            }
            
            /* تعديل شريط التنقل للهواتف الأفقية */
            nav ul {
                padding: 4rem 2rem 2rem;
                width: 300px;
            }
            
            nav ul a {
                height: 50px;
                margin-bottom: 0.5rem;
            }
        }
        
        /* تحسين الأداء على الهواتف */
        @media (prefers-reduced-motion: reduce) {
            *, ::before, ::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* منع التمرير الأفقي على الهواتف */
        @media (max-width: 768px) {
            body {
                overflow-x: hidden;
                width: 100%;
                position: relative;
            }
            
            .hero, section, footer {
                max-width: 100vw;
                overflow-x: hidden;
            }
        }
        
        /* تعديل زر واتساب ليكون على اليمين */
        .whatsapp-float {
            left: auto;
            right: 25px;
        }
