        :root {
            --primary: #000000;
            --secondary: #e63946;
            --light: #ffffff;
            --dark: #333333;
            --gray: #f5f5f5;
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Tajawal', sans-serif;
            color: var(--dark);
            line-height: 1.7;
            background-color: var(--light);
            overflow-x: hidden;
        }

        [lang="ar"] {
            font-family: 'Tajawal', sans-serif;
        }

        [lang="en"], [lang="es"] {
            font-family: 'Montserrat', sans-serif;
        }
        
        /* Header Styles */
        header {
            background-color: var(--light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            transition: var(--transition);
        }
        
        header.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .logo {
            height: 50px;
            transition: var(--transition);
        }
        
        header.scrolled .logo {
            height: 40px;
        }
        
        .navbar-brand {
            color: var(--light-color) !important;
            font-weight: 700;
            font-size: 1.8rem;
        }

        .navbar-brand span {
            color: var(--secondary-color);
        }
        
        .nav-link {
            font-weight: 500;
            padding: 8px 12px !important;
            color: var(--primary) !important;
            position: relative;
        }
        
        .nav-link:hover, 
        .nav-link.active {
            color: var(--secondary) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }
        
        .nav-link:hover::after, 
        .nav-link.active::after {
            width: 100%;
        }

        [lang="ar"] .nav-link::after {
            left: auto;
            right: 0;
        }
        
        .cta-button {
            background-color: var(--secondary);
            color: var(--light);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            border: 2px solid var(--secondary);
            display: inline-block;
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
        }

        /* Language Selector */
        .lang-selector {
            position: relative;
            min-width: 100px;
        }

        .lang-select {
            padding: 8px 35px 8px 15px;
            border: 1px solid var(--primary);
            border-radius: 20px;
            background-color: var(--light);
            color: var(--primary);
            font-family: inherit;
            appearance: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.9rem;
            width: 100%;
        }

        [lang="ar"] .lang-select {
            padding: 8px 15px 8px 35px;
        }

        .lang-select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2);
        }

        .lang-selector::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            font-size: 12px;
            color: var(--primary);
        }

        [lang="ar"] .lang-selector::after {
            left: 15px;
            right: auto;
        }

        [lang="en"] .lang-selector::after,
        [lang="es"] .lang-selector::after {
            right: 15px;
            left: auto;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80') no-repeat center center/cover;
            height: 90vh;
            min-height: 600px;
            color: var(--light);
            margin-top: 80px;
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--light);
            color: var(--light);
        }

        .btn-outline:hover {
            background-color: var(--light);
            color: var(--primary);
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: var(--gray);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: var(--primary);
            font-weight: 700;
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--secondary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        [lang="ar"] .section-title h2::after {
            left: auto;
            right: 50%;
            transform: translateX(50%);
        }
        
        .feature-card {
            background-color: var(--light);
            padding: 30px 25px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* Products Section */
        .products {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .product-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s cubic-bezier(.4,2,.6,1), border-color 0.3s cubic-bezier(.4,2,.6,1);
            background: var(--light);
            border: 2px solid transparent;
            height: 100%;
            will-change: transform, box-shadow, border-color;
        }
        .product-card:hover, .product-card:focus-within {
            transform: translateY(-18px) scale(1.04);
            box-shadow: 0 16px 32px 0 rgba(0,0,0,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
            border-color: var(--secondary);
            z-index: 2;
        }
        
        /* التأثير مدمج مع :hover و :focus-within الجديد */
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-link {
            display: inline-flex;
            align-items: center;
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .product-link i {
            transition: var(--transition);
        }

        [lang="ar"] .product-link i {
            margin-left: 8px;
        }

        [lang="en"] .product-link i,
        [lang="es"] .product-link i {
            margin-right: 8px;
        }
        
        .product-link:hover {
            color: var(--primary);
        }
        
        [lang="ar"] .product-link:hover i {
            transform: translateX(-5px);
        }
        
        [lang="en"] .product-link:hover i,
        [lang="es"] .product-link:hover i {
            transform: translateX(5px);
        }
        
        /* Stats Section */
        .stats {
            padding: 70px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                        url('https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: var(--light);
        }
        
        .counter {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background-color: var(--gray);
        }
        
        .testimonial-card {
            background-color: var(--light);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            height: 100%;
            transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s cubic-bezier(.4,2,.6,1);
            will-change: transform, box-shadow;
        }
        .testimonial-card:hover, .testimonial-card:focus-within {
            transform: translateY(-18px) scale(1.04);
            box-shadow: 0 16px 32px 0 rgba(0,0,0,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
            z-index: 2;
        }
        
        .testimonial-card::before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 4rem;
            color: rgba(230, 57, 70, 0.1);
            position: absolute;
            line-height: 1;
            left: 15px;
            top: 10px;
        }

        [lang="ar"] .testimonial-card::before {
            left: auto;
            right: 15px;
        }
        
        .testimonial-text {
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
            z-index: 1;
            color: #444;
        }
        
        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .rating {
            color: var(--secondary);
            margin-top: 3px;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        
        .contact-info h3::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--secondary);
            bottom: -8px;
            left: 0;
        }

        [lang="ar"] .contact-info h3::after {
            left: auto;
            right: 0;
        }
        
        .contact-info i {
            color: var(--secondary);
            min-width: 25px;
        }

        [lang="ar"] .contact-info i {
            margin-left: 10px;
        }

        [lang="en"] .contact-info i,
        [lang="es"] .contact-info i {
            margin-right: 10px;
        }
        
        /* Social Links - Improved Design */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .social-facebook {
            background-color: #1877F2;
        }
        
        .social-twitter {
            background-color: #1DA1F2;
        }
        
        .social-linkedin {
            background-color: #0077B5;
        }
        
        .social-instagram {
            background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
        }
        
        .social-whatsapp {
            background-color: #25D366;
        }
        
        /* Form Animation */
        .form-animate {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }
        
        .form-animate.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--light);
            padding: 60px 0 20px;
        }
        
        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--secondary);
            bottom: -6px;
            left: 0;
        }

        [lang="ar"] .footer-col h3::after {
            left: auto;
            right: 0;
        }
        
        .footer-col p {
            margin-bottom: 15px;
            color: #ddd;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .footer-links a::before {
            content: '\2022';
            color: var(--secondary);
            transition: var(--transition);
        }

        [lang="ar"] .footer-links a::before {
            margin-left: 8px;
        }

        [lang="en"] .footer-links a::before,
        [lang="es"] .footer-links a::before {
            margin-right: 8px;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.4rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                height: auto;
                min-height: 500px;
                padding: 100px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .counter {
                font-size: 2.2rem;
            }
        }
        
        /* ====== MOBILE NAVBAR CUSTOMIZATION (TEMPORARY) ====== */
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .section-title h2 {
                font-size: 1.4rem;
            }
            .back-to-top {
                width: 45px;
                height: 45px;
                font-size: 16px;
                bottom: 20px;
                right: 20px;
            }
            /* ====== NAVBAR MOBILE FIX ====== */
            nav.navbar {
                padding: 5px 0 !important;
                min-height: 56px;
            }
            .navbar-brand {
                font-size: 1.1rem !important;
                padding: 0 !important;
                margin-right: 0 !important;
            }
            .navbar-brand img {
                height: 36px !important;
                width: 36px !important;
                min-width: 36px !important;
                margin-right: 5px !important;
            }
            .navbar-toggler {
                padding: 0.25rem 0.5rem;
                font-size: 1.1rem;
            }
            .navbar-nav {
                background: var(--light);
                border-radius: 10px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.08);
                margin-top: 8px;
                padding: 10px 0;
            }
            .navbar-nav .nav-item {
                margin: 0 !important;
            }
            .nav-link {
                font-size: 1rem !important;
                padding: 10px 18px !important;
                text-align: center;
                border-radius: 6px;
                margin: 2px 0;
                color: var(--primary) !important;
                background: none !important;
                display: block;
            }
            .nav-link.active, .nav-link:hover {
                background: var(--secondary);
                color: #fff !important;
            }
            .nav-link:visited {
                color: var(--primary) !important;
            }
            .nav-link:active {
                color: #fff !important;
            }
            .nav-link::after {
                display: none !important;
            }
            .navbar-nav .dropdown-menu {
                position: static !important;
                float: none;
                background: #fff;
                box-shadow: 0 2px 8px rgba(0,0,0,0.07);
                border-radius: 8px;
                margin: 0 auto 8px auto;
                width: 90%;
            }
            .navbar-nav .dropdown-menu .dropdown-item {
                color: var(--primary) !important;
                background: none !important;
                text-align: center;
            }
            .navbar-nav .dropdown-menu .dropdown-item:hover,
            .navbar-nav .dropdown-menu .dropdown-item.active {
                background: var(--secondary) !important;
                color: #fff !important;
            }
            .mobile-navbar-actions {
                display: flex;
                flex-direction: column;
                width: 100%;
                margin-bottom: 8px;
            }
            .mobile-navbar-actions .cta-button {
                order: 1;
                width: 100%;
                margin: 0 0 8px 0;
                font-size: 1rem;
                padding: 10px 0;
                text-align: center;
                justify-content: center;
                display: flex;
                align-items: center;
            }
            .mobile-navbar-actions .lang-selector {
                order: 2;
                width: 100%;
                margin: 0;
            }
            /* Hide default desktop actions on mobile */
            .desktop-navbar-actions {
                display: none !important;
            }
            /* Show mobile actions only on mobile */
            .mobile-navbar-actions {
                display: flex !important;
            }
        }
        /* ====== END MOBILE NAVBAR CUSTOMIZATION ====== */
.full-width-map {
    position: relative; /* مهم لتموضع iframe داخله */
    width: 100%; /* اجعل الـ div يملأ العرض بالكامل */
    height: 300px; /* تحديد ارتفاع ثابت بـ 300 بكسل */
    max-height: 300px; /* تأكيد أن الارتفاع الأقصى هو 300 بكسل */
    overflow: hidden; /* لإخفاء أي جزء زائد إذا تجاوز المحتوى */
}

.full-width-map iframe {
    position: absolute; /* اجعل الـ iframe يتموضع بحرية داخل الـ div */
    top: 0;
    left: 0;
    width: 100%; /* اجعل الـ iframe يملأ عرض الـ div */
    height: 100%; /* اجعل الـ iframe يملأ ارتفاع الـ div (أي 300 بكسل) */
    border: 0; /* لإزالة أي إطار افتراضي */
}

/* تعديلات جديدة لحل المشكلات */
.navbar-collapse {
    direction: ltr;
}

[lang="ar"] .navbar-collapse {
    direction: rtl;
}

.newsletter-form button {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

[lang="ar"] .newsletter-form button {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.newsletter-form input {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

[lang="ar"] .newsletter-form input {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}		