 /* ===== إصلاح مشكلة السكرول الأفقي ===== */
        html, body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
        }
        * {
            box-sizing: border-box;
        }
        img {
            max-width: 100%;
            height: auto;
        }

        /* ===== تنسيقات الهيدر المخصص ===== */
        :root {
            --primary-green: #294738;
            --accent-yellow: #F4A222;
            --text-dark: #222222;
            --text-gray: #666666;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--white);
            color: var(--text-dark);
        }

        .custom-header {
            position: relative;
            z-index: 1000;
            padding: 20px 0;
            background: transparent;
        }

        .custom-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--white);
            padding: 15px 30px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            flex-wrap: wrap;
            gap: 10px;
        }

        .custom-logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 20px;
            text-decoration: none;
            color: var(--text-dark);
        }

        .custom-logo .logo-icon {
            background: var(--accent-yellow);
            color: var(--white);
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 10px;
            font-size: 16px;
        }

        .custom-nav {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            align-items: center;
        }

        .custom-nav a {
            text-decoration: none;
            color: var(--text-gray);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .custom-nav a:hover,
        .custom-nav a.active {
            color: var(--primary-green);
        }

        .btn-solicitar {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            cursor: pointer;
            border: 1px solid var(--primary-green);
            color: var(--primary-green);
            background: transparent;
            white-space: nowrap;
        }

        .btn-solicitar:hover {
            background: var(--primary-green);
            color: var(--white);
        }

        .dropdown-menu {
            border-radius: 15px;
            border: 1px solid rgba(0,0,0,0.06);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 8px 0;
        }

        .dropdown-item {
            font-size: 14px;
            color: var(--text-dark);
            padding: 8px 20px;
        }

        .dropdown-item:hover {
            background: #f0f7f2;
            color: var(--primary-green);
        }

        /* تحسينات للجوال */
        @media (max-width: 768px) {
            .custom-nav-container {
                flex-direction: column;
                align-items: stretch;
                border-radius: 25px;
                padding: 20px;
            }
            .custom-nav {
                justify-content: center;
                gap: 10px;
                flex-wrap: wrap;
            }
            .btn-solicitar {
                text-align: center;
            }
        }

        /* ===== الأنماط الأصلية ===== */
        :root {
            --primary-green: #294738;
            --accent-yellow: #F4A222;
            --text-dark: #222222;
            --text-gray: #666666;
            --bg-light: #F8F9FA;
            --white: #FFFFFF;
            --border-light: rgba(0,0,0,0.06);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 8px 19px;
            width: 100%;
        }

        .text-center { text-align: center; }

        /* ===== Buttons & Badges ===== */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--primary-green);
            color: var(--white);
        }
        .btn-primary:hover { background: #1f3629; }

        .btn-outline {
            border: 1px solid var(--primary-green);
            color: var(--primary-green);
            background: transparent;
        }
        .btn-outline:hover {
            background: var(--primary-green);
            color: white;
        }

        .btn-outline-dark {
            border: 1px solid var(--text-gray);
            color: var(--text-dark);
            background: transparent;
        }
        .btn-outline-dark:hover {
            border-color: var(--primary-green);
            color: var(--primary-green);
        }

        .btn-text {
            color: var(--text-dark);
            font-weight: 600;
            text-decoration: underline;
            background: none;
            padding: 12px 8px;
        }

        .subtitle {
            color: var(--accent-yellow);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 10px;
        }
        .subtitle.text-light { color: var(--accent-yellow); }

        /* ===== Hero Section ===== */
        .hero {
            padding: 20px 0 20px;
            background: var(--white);
            position: relative;
        }

        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        .hero-content { flex: 1 1 50%; min-width: 280px; }

        .hero-content .badge {
            background: #000000;
            padding: 12px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 20px;
        }

        .hero-content h1 {
            font-size: 48px;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero-content h1 span { color: var(--accent-yellow); }

        .hero-content p {
            color: var(--text-gray);
            margin-bottom: 30px;
            max-width: 450px;
            font-size: 16px;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-image {
            flex: 1 1 40%;
            display: flex;
            justify-content: flex-end;
            min-width: 280px;
        }

        .image-wrapper {
            position: relative;
            width: 400px;
            height: 400px;
            background: var(--accent-yellow);
            border-radius: 50%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            overflow: visible;
            max-width: 100%;
        }

        .image-wrapper img {
            width: 90%;
            border-bottom-left-radius: 200px;
            border-bottom-right-radius: 200px;
            object-fit: cover;
            height: 90%;
        }

        .floating-badge {
            position: absolute;
            background: var(--primary-green);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
        }

        .badge-1 { top: 20%; right: -20px; }
        .badge-2 { bottom: 10%; left: -20px; }

        /* ===== Marquee ===== */
        .marquee {
            background: var(--accent-yellow);
            padding: 20px 0;
            overflow: hidden;
            white-space: nowrap;
            width: 100%;
        }

        .marquee-content {
            display: inline-flex;
            gap: 40px;
            align-items: center;
            color: var(--white);
            font-weight: 600;
            font-size: 18px;
            animation: marquee 20s linear infinite;
            padding-left: 100%;
        }
        .marquee-content span { display: inline-block; }
        .marquee-content i { font-size: 14px; }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        /* ===== Services Section (تصميم عصري) ===== */
        .services {
            padding: 100px 0;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        .services::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(244,162,34,0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        .services::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(41,71,56,0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .services .container {
            position: relative;
            z-index: 1;
        }

        .services .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
            flex-wrap: wrap;
            gap: 20px;
        }
        .services .section-header .subtitle {
            position: relative;
            padding-left: 30px;
        }
        .services .section-header .subtitle::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 2px;
            background: var(--accent-yellow);
            border-radius: 2px;
        }
        .services .section-header h2 {
            font-size: 40px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: #fff;
            border-radius: 24px;
            padding: 40px 30px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.04);
            text-align: left;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-yellow));
            opacity: 0;
            transition: opacity 0.3s;
        }
        .service-card:hover::before {
            opacity: 1;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            border-color: rgba(0,0,0,0.08);
        }

        .icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-green), #3a5a4a);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            font-size: 28px;
            margin-bottom: 25px;
            box-shadow: 0 10px 20px rgba(41,71,56,0.2);
            transition: all 0.3s;
        }
        .service-card:hover .icon-box {
            transform: scale(1.05) rotate(-3deg);
            box-shadow: 0 15px 25px rgba(41,71,56,0.3);
        }

        .service-card h3 {
            margin-bottom: 15px;
            font-size: 22px;
            font-weight: 600;
        }

        .service-card p {
            color: var(--text-gray);
            margin-bottom: 20px;
            font-size: 14px;
            line-height: 1.7;
        }

        .service-price {
            display: inline-block;
            background: #f0f7f2;
            color: var(--primary-green);
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .learn-more {
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        .learn-more i {
            transition: transform 0.3s;
        }
        .learn-more:hover {
            gap: 12px;
            color: var(--accent-yellow);
        }
        .learn-more:hover i {
            transform: translateX(5px);
        }

        /* ===== About Section ===== */
        .about {
            background: var(--primary-green);
            padding: 100px 0;
            color: var(--white);
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .about-image { flex: 1 1 40%; text-align: center; }
        .about-image img {
            width: 100%;
            max-width: 400px;
            border-radius: 50%;
            border: 10px solid var(--accent-yellow);
            object-fit: cover;
            aspect-ratio: 1/1;
        }

        .about-content { flex: 1 1 50%; }
        .about-content h2 { font-size: 36px; margin-bottom: 20px; }
        .about-content h2 span { color: var(--accent-yellow); }
        .about-content p { color: #d1d5db; margin-bottom: 40px; }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 30px;
        }

        .stat-item h4 {
            font-size: 28px;
            color: var(--accent-yellow);
            margin-bottom: 5px;
        }
        .stat-item p { font-size: 14px; color: #d1d5db; }

        .about-footer {
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .signature {
            font-family: 'Brush Script MT', cursive;
            font-size: 32px;
            color: var(--accent-yellow);
        }

        /* ===== Tools / Metrics Section ===== */
        .tools { padding: 100px 0; background: var(--white); }
        .tools h2 { font-size: 36px; margin-bottom: 50px; }

        .tools-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .tool-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .tool-icon {
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
            color: var(--primary-green);
        }

        .tool-item span { font-weight: 600; color: var(--text-dark); }

        /* ===== Coverage Areas (تصميم خاص مع خلفية صورة 1) ===== */
        .coverage-custom {
            padding: 80px 0;
            position: relative;
            background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            background-attachment: fixed; /* تأثير parallax */
            color: var(--white);
        }
        .coverage-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0 0 0 / 52%);
            z-index: 0;
        }
        .coverage-custom .container {
            position: relative;
            z-index: 1;
        }
        .coverage-custom .section-header {
            justify-content: center;
            text-align: center;
            flex-direction: column;
            align-items: center;
        }
        .coverage-custom .section-header h2 {
            color: var(--white);
        }
        .coverage-custom .subtitle {
            color: var(--accent-yellow);
        }
        .coverage-custom .area-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }
        .coverage-custom .area-tag {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 30px;
            padding: 10px 20px;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--white);
            transition: all 0.3s;
        }
        .coverage-custom .area-tag i { color: var(--accent-yellow); }
        .coverage-custom .area-tag:hover {
            border-color: var(--accent-yellow);
            background: rgba(244,162,34,0.2);
        }
        .coverage-custom .text-center p {
            color: #e5e7eb;
        }
        .coverage-custom .text-center a {
            color: var(--accent-yellow);
            font-weight: 600;
        }

        /* ===== Partners & Reviews (تصميم خاص مع خلفية صورة 2) ===== */
        .partners-reviews-custom {
            padding: 80px 0;
            position: relative;
            background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            /* بدون background-attachment: fixed ليكون مختلفًا */
            background-attachment: scroll;
            color: var(--white);
        }
        .partners-reviews-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(41,71,56,0.9) 0%, rgba(0,0,0,0.7) 100%);
            z-index: 0;
        }
        .partners-reviews-custom .container {
            position: relative;
            z-index: 1;
        }
        .partners-reviews-custom .section-header {
            justify-content: center;
            text-align: center;
        }
        .partners-reviews-custom .section-header h2 {
            color: var(--white);
        }
        .partners-reviews-custom .subtitle {
            color: var(--accent-yellow);
        }
        .partners-reviews-custom .partners-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 30px 0 50px;
        }
        .partners-reviews-custom .partner-logo {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 15px;
            padding: 20px 30px;
            font-weight: 500;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--white);
            transition: all 0.3s;
        }
        .partners-reviews-custom .partner-logo i {
            color: var(--accent-yellow);
            font-size: 24px;
        }
        .partners-reviews-custom .partner-logo:hover {
            background: rgba(244,162,34,0.2);
            border-color: var(--accent-yellow);
        }
        .partners-reviews-custom .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        .partners-reviews-custom .review-card {
            background: rgba(255,255,255,0.95);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
            color: var(--text-dark);
        }
        .partners-reviews-custom .review-stars {
            color: var(--accent-yellow);
            margin-bottom: 15px;
        }
        .partners-reviews-custom .review-text {
            color: var(--text-gray);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .partners-reviews-custom .review-author {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid var(--border-light);
            padding-top: 15px;
        }
        .partners-reviews-custom .review-author .avatar {
            width: 40px;
            height: 40px;
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }
        .partners-reviews-custom .review-author .info .name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-dark);
        }
        .partners-reviews-custom .review-author .info .service {
            font-size: 12px;
            color: var(--text-gray);
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 80px 0;
            background: var(--white);
        }
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border: 1px solid var(--border-light);
            border-radius: 15px;
            margin-bottom: 10px;
            background: var(--white);
            overflow: hidden;
            transition: box-shadow 0.3s;
        }
        .faq-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .faq-question {
            padding: 20px 25px;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 16px;
        }
        .faq-question i { transition: transform 0.3s; color: var(--primary-green); }
        .faq-answer {
            padding: 0 25px 20px;
            color: var(--text-gray);
            display: none;
            line-height: 1.8;
        }
        .faq-item.active .faq-answer { display: block; }
        .faq-item.active .faq-question i { transform: rotate(180deg); }

        /* ===== Final CTA ===== */
        .final-cta {
            background: white;
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        .final-cta h2 {
            font-size: 36px;
            margin-bottom: 15px;
            color: black;
        }
        .final-cta p {
            color: #7b7b7b;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        /* ===== Responsive ===== */
        @media (max-width: 992px) {
            .hero-container, .about-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .hero-content, .about-content {
                text-align: center;
            }
            .hero-content p, .about-content p {
                max-width: 100%;
            }
            .hero-buttons, .about-footer {
                justify-content: center;
            }
            .hero-image {
                justify-content: center;
                margin-top: 40px;
            }
            .image-wrapper {
                width: 300px;
                height: 300px;
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .section-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .services .section-header h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 40px;
            }
            .about-content h2 {
                font-size: 30px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .image-wrapper {
                width: 250px;
                height: 250px;
            }
            .badge-1 { right: -5px; top: 15%; }
            .badge-2 { left: -5px; bottom: 5%; }
            .floating-badge {
                padding: 6px 12px;
                font-size: 12px;
            }
        }

        @media (max-width: 576px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .hero-content h1 {
                font-size: 32px;
            }
            .about-content h2 {
                font-size: 26px;
            }
            .container {
                padding: 8px 15px;
            }
            .custom-nav-container {
                padding: 15px;
            }
            .btn-solicitar {
                white-space: normal;
            }
            .image-wrapper {
                width: 200px;
                height: 200px;
            }
            .badge-1 { right: -3px; top: 10%; }
            .badge-2 { left: -3px; bottom: 5%; }
        }