
        /* Base Styles - Mobile First */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f9f7f4;
        }
        
        :root {
            --primary-color: #1a3c34;
            --secondary-color: #c19a6b;
            --light-color: #f5f1eb;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Language Switcher - Mobile Optimized */
        .language-switcher {
            position: fixed;
            top: 100px;
            right: 20px;
            z-index: 1001;
            background: white;
            border-radius: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 5px;
            display: flex;
            flex-wrap: wrap;
            max-width: 180px;
        }
        
        @media (max-width: 768px) {
            .language-switcher {
                top: 80px;
                right: 10px;
                max-width: 160px;
                padding: 4px;
            }
        }
        
        @media (max-width: 480px) {
            .language-switcher {
                top: 70px;
                right: 10px;
                max-width: 140px;
            }
        }
        
        .lang-btn {
            background: transparent;
            border: none;
            padding: 8px 12px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            flex: 1;
            min-width: 60px;
            justify-content: center;
        }
        
        @media (max-width: 480px) {
            .lang-btn {
                padding: 6px 10px;
                font-size: 13px;
            }
        }
        
        .lang-btn.active {
            background: var(--primary-color);
            color: white;
        }
        
        .lang-btn:hover:not(.active) {
            background: rgba(26, 60, 52, 0.1);
        }
        
        /* Header - Mobile Optimized */
        header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 25px 0;
            transition: all 0.3s ease;
            background: transparent;
        }
        
        header.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        
        .logo-icon {
            color: var(--secondary-color);
            font-size: 2rem;
        }
        
        @media (max-width: 768px) {
            .logo-icon {
                font-size: 1.8rem;
            }
        }
        
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            white-space: nowrap;
        }
        
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 480px) {
            .logo-text {
                font-size: 1.1rem;
            }
        }
        
        .logo-text span {
            color: var(--secondary-color);
        }
        
        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--primary-color);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
            z-index: 1002;
        }
        
        @media (max-width: 992px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav.desktop-nav {
                display: none;
            }
            
            .contact-header {
                display: none;
            }
        }
        
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: white;
            z-index: 1001;
            transition: right 0.4s ease;
            padding: 80px 30px 30px;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }
        
        .mobile-nav.active {
            right: 0;
        }
        
        .mobile-nav-close {
            position: absolute;
            top: 25px;
            right: 25px;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-color);
            cursor: pointer;
        }
        
        .mobile-nav ul {
            list-style: none;
            margin-bottom: 40px;
        }
        
        .mobile-nav li {
            margin-bottom: 25px;
        }
        
        .mobile-nav a {
            text-decoration: none;
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 500;
            transition: color 0.3s ease;
            display: block;
            padding: 10px 0;
        }
        
        .mobile-nav a:hover {
            color: var(--secondary-color);
        }
        
        .mobile-contact-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            width: 100%;
        }
        
        .mobile-contact-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }
        
        .overlay.active {
            display: block;
        }
        
        /* Desktop Navigation */
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        
        @media (max-width: 1100px) {
            nav.desktop-nav ul {
                gap: 25px;
            }
        }
        
        nav.desktop-nav a {
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 500;
            font-size: 1.05rem;
            transition: color 0.3s ease;
            white-space: nowrap;
        }
        
        nav.desktop-nav a:hover {
            color: var(--secondary-color);
        }
        
        .contact-header {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .contact-header:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        /* Hero Section - Mobile Optimized */
        .hero {
            height: 100vh;
            min-height: 600px;
            max-height: 1000px;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
            padding: 100px 0 50px;
        }
        
        @media (max-width: 768px) {
            .hero {
                min-height: 500px;
                padding: 120px 0 40px;
            }
        }
        
        .hero-content {
            max-width: 850px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: white;
            line-height: 1.1;
        }
        
        @media (min-width: 768px) {
            .hero h1 {
                font-size: 3.5rem;
            }
        }
        
        @media (min-width: 992px) {
            .hero h1 {
                font-size: 4rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }
        
        @media (min-width: 768px) {
            .hero p {
                font-size: 1.2rem;
            }
        }
        
        @media (min-width: 992px) {
            .hero p {
                font-size: 1.3rem;
            }
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 16px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--secondary-color);
            cursor: pointer;
            width: 100%;
            max-width: 300px;
        }
        
        @media (min-width: 768px) {
            .cta-button {
                width: auto;
                padding: 18px 45px;
                font-size: 1.1rem;
            }
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .stats {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 60px;
        }
        
        @media (max-width: 768px) {
            .stats {
                gap: 30px;
                margin-top: 50px;
            }
        }
        
        @media (max-width: 480px) {
            .stats {
                gap: 20px;
                margin-top: 40px;
            }
        }
        
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 120px;
        }
        
        @media (max-width: 480px) {
            .stat-item {
                min-width: 100px;
            }
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }
        
        @media (min-width: 768px) {
            .stat-number {
                font-size: 2.5rem;
            }
        }
        
        .stat-text {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        @media (min-width: 768px) {
            .stat-text {
                font-size: 1rem;
                letter-spacing: 1px;
            }
        }
        
        /* About Section - Mobile Optimized */
        .about {
            padding: 80px 0;
        }
        
        @media (min-width: 768px) {
            .about {
                padding: 100px 0;
            }
        }
        
        @media (min-width: 992px) {
            .about {
                padding: 120px 0;
            }
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        @media (min-width: 768px) {
            .section-title {
                margin-bottom: 60px;
            }
        }
        
        .section-title h2 {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        @media (min-width: 768px) {
            .section-title h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (min-width: 992px) {
            .section-title h2 {
                font-size: 2.8rem;
            }
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
            font-size: 1rem;
            padding: 0 15px;
        }
        
        @media (min-width: 768px) {
            .section-title p {
                font-size: 1.1rem;
            }
        }
        
        .about-content {
            display: flex;
            flex-direction: column;
            gap: 50px;
            align-items: center;
        }
        
        @media (min-width: 992px) {
            .about-content {
                flex-direction: row;
                gap: 60px;
            }
        }
        
        .about-text {
            flex: 1;
            width: 100%;
        }
        
        .about-text h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
        }
        
        @media (min-width: 768px) {
            .about-text h3 {
                font-size: 1.8rem;
            }
        }
        
        @media (min-width: 992px) {
            .about-text h3 {
                font-size: 2rem;
            }
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.7;
        }
        
        .features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            margin-top: 30px;
        }
        
        @media (min-width: 768px) {
            .features {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .feature-icon {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        .feature-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        @media (min-width: 768px) {
            .feature-text h4 {
                font-size: 1.2rem;
            }
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            height: 300px;
            width: 100%;
            background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80');
            background-size: cover;
            background-position: center;
        }
        
        @media (min-width: 768px) {
            .about-image {
                height: 400px;
            }
        }
        
        @media (min-width: 992px) {
            .about-image {
                height: 500px;
                flex: 1;
            }
        }
        
        /* Global Presence - Mobile Optimized */
        .global {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        @media (min-width: 768px) {
            .global {
                padding: 100px 0;
            }
        }
        
        @media (min-width: 992px) {
            .global {
                padding: 120px 0;
            }
        }
        
        .global h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 50px;
        }
        
        @media (min-width: 768px) {
            .global h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (min-width: 992px) {
            .global h2 {
                font-size: 2.8rem;
                margin-bottom: 60px;
            }
        }
        
        .regions {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        @media (min-width: 768px) {
            .regions {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .regions {
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
            }
        }
        
        .region-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .region-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .region-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        @media (min-width: 768px) {
            .region-image {
                height: 220px;
            }
        }
        
        @media (min-width: 992px) {
            .region-image {
                height: 250px;
            }
        }
        
        .region-1 {
            background-image: url('https://images.unsplash.com/photo-1546410531-bb4caa6b424d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80');
        }
        
        .region-2 {
            background-image: url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
        }
        
        .region-3 {
            background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
        }
        
        .region-content {
            padding: 25px;
        }
        
        @media (min-width: 768px) {
            .region-content {
                padding: 30px;
            }
        }
        
        .region-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        @media (min-width: 768px) {
            .region-content h3 {
                font-size: 1.6rem;
            }
        }
        
        .region-content p {
            color: #666;
            line-height: 1.7;
        }
        
        /* Contact Section - Mobile Optimized */
        .contact-section {
            padding: 80px 0;
        }
        
        @media (min-width: 768px) {
            .contact-section {
                padding: 100px 0;
            }
        }
        
        @media (min-width: 992px) {
            .contact-section {
                padding: 120px 0;
            }
        }
        
        .contact-container {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }
        
        @media (min-width: 992px) {
            .contact-container {
                flex-direction: row;
                gap: 60px;
            }
        }
        
        .contact-form-container {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            flex: 1;
        }
        
        @media (min-width: 768px) {
            .contact-form-container {
                padding: 40px;
            }
        }
        
        @media (min-width: 992px) {
            .contact-form-container {
                padding: 50px;
            }
        }
        
        .contact-form h3 {
            font-size: 1.6rem;
            margin-bottom: 25px;
        }
        
        @media (min-width: 768px) {
            .contact-form h3 {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
        }
        
        @media (min-width: 992px) {
            .contact-form h3 {
                font-size: 2rem;
            }
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary-color);
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--secondary-color);
        }
        
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            width: 100%;
        }
        
        @media (min-width: 768px) {
            .submit-btn {
                width: auto;
            }
        }
        
        .submit-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .contact-info {
            padding-top: 20px;
            flex: 1;
        }
        
        .contact-info h3 {
            font-size: 1.6rem;
            margin-bottom: 25px;
        }
        
        @media (min-width: 768px) {
            .contact-info h3 {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
        }
        
        @media (min-width: 992px) {
            .contact-info h3 {
                font-size: 2rem;
            }
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .contact-info-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .contact-info-content h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        /* Footer - Mobile Optimized */
        footer {
            background-color: #0f2922;
            color: #bbb;
            padding: 60px 0 25px;
        }
        
        @media (min-width: 768px) {
            footer {
                padding: 70px 0 30px;
            }
        }
        
        @media (min-width: 992px) {
            footer {
                padding: 80px 0 30px;
            }
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        @media (min-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(4, 1fr);
                gap: 40px;
                margin-bottom: 50px;
            }
        }
        
        .footer-column h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        @media (min-width: 768px) {
            .footer-column h3 {
                font-size: 1.3rem;
                margin-bottom: 25px;
            }
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .footer-logo .logo-icon {
            font-size: 1.8rem;
        }
        
        @media (min-width: 768px) {
            .footer-logo .logo-icon {
                font-size: 2rem;
            }
        }
        
        .footer-logo .logo-text {
            font-size: 1.3rem;
        }
        
        @media (min-width: 768px) {
            .footer-logo .logo-text {
                font-size: 1.5rem;
            }
        }
        
        .footer-about p {
            margin-bottom: 25px;
            line-height: 1.8;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .contact-info li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .contact-info i {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            color: #888;
        }
        
        @media (min-width: 768px) {
            .copyright {
                font-size: 0.9rem;
            }
        }
        
        /* Arabic RTL Support */
        html[dir="rtl"] body {
            font-family: 'Montserrat', sans-serif;
            text-align: right;
        }
        
        html[dir="rtl"] .hero h1,
        html[dir="rtl"] .section-title h2,
        html[dir="rtl"] .global h2,
        html[dir="rtl"] h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }
        
        html[dir="rtl"] .header-container,
        html[dir="rtl"] .features,
        html[dir="rtl"] .footer-content {
            text-align: right;
        }
        
        html[dir="rtl"] .feature-item,
        html[dir="rtl"] .contact-info-item,
        html[dir="rtl"] .contact-info li {
            flex-direction: row-reverse;
        }
        
        html[dir="rtl"] .language-switcher {
            right: auto;
            left: 20px;
        }
        
        @media (max-width: 768px) {
            html[dir="rtl"] .language-switcher {
                right: auto;
                left: 10px;
            }
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
    