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

        :root {
            --black: #0a0a0a;
            --black-light: #1e1e1e;
            --black-lighter: #2d2d2d;
            --white: #ffffff;
            --white-off: #f8f8f8;
            --gray-light: #eaeaea;
            --gray: #b0b0b0;
            --gray-dark: #6b6b6b;
            --gold: #D4AF37;
            --gold-light: #f1e5c5;
            --gold-dark: #b49450;
            --overlay-dark: rgba(0, 0, 0, 0.6);
            --overlay-light: rgba(255, 255, 255, 0.1);
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
            --shadow-gold: 0 5px 20px rgba(212, 175, 55, 0.2);
            --radius: 16px;
            --radius-lg: 24px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

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

        /* النافبار */
        .navbar {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 0.75rem 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }

        .navbar.scrolled {
            padding: 0.5rem 1.5rem;
            background: var(--black);
            border-bottom-color: var(--gold);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-link {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
        }

        .logo {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            background: transparent; /* تمت إزالة الخلفية المتدرجة */
        }

        .logo:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-gold);
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* لضبط الصورة داخل الإطار */
        }

        .company-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
            letter-spacing: 1px;
        }

        .company-name span {
            font-size: 0.8rem;
            color: var(--gold);
            font-weight: 300;
            display: block;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--white-off);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding: 0.5rem 0;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--white);
            border-radius: 2px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background-color: var(--gold);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -5px);
            background-color: var(--gold);
        }

        /* زر الواتساب العائم */
        .floating-whatsapp {
            position: fixed;
            bottom: 25px;
            left: 25px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            transition: var(--transition);
            text-decoration: none;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
        }

        /* الهيرو */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 0 1.5rem;
        }

        .hero-parallax {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('1772659559799.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            z-index: 1;
            will-change: transform;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
            z-index: 2;
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
            z-index: 2;
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: var(--white);
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 3;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 0 2px 20px rgba(0,0,0,0.5);
            letter-spacing: 4px;
        }

        .hero-title span {
            color: var(--gold);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--gray-light);
            max-width: 700px;
            margin: 0 auto 2rem;
            font-weight: 300;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            background: transparent;
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: var(--transition);
            border: 2px solid var(--gold);
            letter-spacing: 2px;
        }

        .hero-cta:hover {
            background: var(--gold);
            color: var(--black);
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
        }

        /* الأقسام العامة */
        .section {
            padding: 5rem 1.5rem;
            position: relative;
            background-color: var(--white);
        }

        .section:nth-child(even) {
            background: linear-gradient(135deg, var(--white), var(--gold-light));
        }

        .section-dark {
            background: linear-gradient(135deg, var(--black), var(--black-light));
            color: var(--white);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 1rem;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), transparent);
        }

        .section-title.light {
            color: var(--white);
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray-dark);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        .section-subtitle.light {
            color: var(--gray);
        }

        .divider {
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), transparent);
            margin: 1rem auto 2rem;
        }

        .divider.light {
            background: linear-gradient(90deg, var(--white), transparent);
        }

        /* قسم من نحن */
        .about {
            background: linear-gradient(135deg, var(--white), var(--gold-light));
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--black-light);
        }

        .about-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 50%, rgba(212, 175, 55, 0.2));
            z-index: 1;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.03);
        }

        /* قسم المنتجات */
        .products {
            background: linear-gradient(135deg, var(--white-off), var(--white));
        }

        .products-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-item {
            background: var(--white);
            border-radius: var(--radius);
            padding: 1rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-bottom: 4px solid transparent;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .product-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg), var(--shadow-gold);
            border-bottom-color: var(--gold);
        }

        .product-item:hover::before {
            opacity: 1;
        }

        /* تعديل شكل المنتج: صورة فقط */
        .product-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 12px;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .product-item:hover .product-image {
            transform: scale(1.03);
            border-color: var(--gold);
        }

        /* تم إخفاء النص والسعر */
        .product-item h4,
        .product-item p,
        .product-price {
            display: none;
        }

        /* قسم الوكالات */
        .agencies {
            background: linear-gradient(135deg, var(--white-off), var(--gold-light));
            padding: 5rem 1.5rem;
        }

        .agencies-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .agency-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .agency-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg), var(--shadow-gold);
        }

        .agency-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .agency-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .agency-card:hover .agency-image img {
            transform: scale(1.1);
        }

        .agency-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
        }

        .agency-content {
            padding: 2rem;
            text-align: center;
        }

        .agency-content h3 {
            font-size: 2rem;
            color: var(--gold-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .agency-content p {
            color: var(--gray-dark);
            line-height: 1.8;
            font-size: 1rem;
        }

        /* قسم الاتصال */
        .contact {
            background: linear-gradient(135deg, var(--white), var(--gold-light));
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: var(--transition);
            padding: 1.5rem;
            border-radius: var(--radius);
            background: var(--white);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gold-light);
        }

        .contact-item:hover {
            transform: translateX(-5px);
            box-shadow: var(--shadow), var(--shadow-gold);
            border-color: var(--gold);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--black), var(--gold-dark));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .contact-details h3 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            color: var(--black);
        }

        .contact-details p,
        .contact-details a {
            color: var(--gray-dark);
            text-decoration: none;
        }

        .whatsapp-contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 5px;
            transition: var(--transition);
        }

        .whatsapp-contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
        }

        .map-container {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 400px;
            border: 4px solid var(--gold-light);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* الفوتر */
        .footer {
            background: linear-gradient(135deg, var(--black), var(--black-light));
            color: var(--white);
            padding: 4rem 1.5rem 2rem;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .footer-desc {
            color: var(--gray);
            line-height: 1.7;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid var(--gold);
        }

        .social-icon:hover {
            background: var(--gold);
            color: var(--black);
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
        }

        .footer-heading {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            color: var(--gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--gold);
            padding-right: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--gold-dark);
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* تأثيرات الظهور */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* التجاوب مع الشاشات */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .about-content,
            .contact-container,
            .agencies-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-image {
                order: -1;
            }

            .section {
                padding: 4rem 1rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: var(--black);
                flex-direction: column;
                padding: 6rem 2rem 2rem;
                box-shadow: var(--shadow-lg);
                transition: var(--transition);
                z-index: 999;
                gap: 1.5rem;
                border-left: 2px solid var(--gold);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                color: var(--white);
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .product-list {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 0.95rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .company-name {
                font-size: 1rem;
            }

            .logo {
                width: 40px;
                height: 40px;
            }

            .contact-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .map-container {
                height: 300px;
            }

            .floating-whatsapp {
                width: 50px;
                height: 50px;
                font-size: 24px;
                bottom: 20px;
                left: 20px;
            }
        }