        :root {
            --primary-purple: #502C84;
            --light-purple: #F4E5FF;
            --secondary-orange: #FF781F;
            --secondary-cyan: #00D1D1;
            --dark-gray: #1a1a1a;
            --medium-gray: #666;
            --light-gray: #f8f9fa;
            --container-pad: max(6%, calc((100% - 1440px) / 2));
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scrollbar-width: none; scroll-behavior: smooth; }
        ::-webkit-scrollbar { width: 0; height: 0; background: transparent; }
        body {
            font-family: 'IBM Plex Sans Arabic', sans-serif;
            background: var(--light-gray);
            color: var(--dark-gray);
            line-height: 1.7;
            overflow-x: hidden;
            padding-top: 0;
        }

        /* ===== Header (identical system to Home_Page.html) ===== */
        header {
            background: transparent;
            padding: 1rem var(--container-pad);
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            box-shadow: none;
            position: fixed !important;
            top: 0; right: 0; left: 0;
            width: 100%;
            z-index: 1000;
            transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
        }
        header.scrolled {
            background: rgba(255, 255, 255, 0.62);
            backdrop-filter: blur(22px) saturate(1.5);
            -webkit-backdrop-filter: blur(22px) saturate(1.5);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }
        header.scrolled .nav-links a { color: var(--dark-gray); }
        header.scrolled .nav-links a::after { background: var(--primary-purple); }
        header.scrolled .jzl-logo-white { opacity: 0; visibility: hidden; }
        header.scrolled .jzl-logo-colored { display: block !important; opacity: 1; visibility: visible; }
        header.scrolled .mobile-menu-btn { color: var(--primary-purple); }

        .jzl-logo-container { display: flex; align-items: center; position: relative; height: 40px; }
        .jzl-img {
            height: 90px; width: auto; display: block;
            transition: all 0.4s ease; position: absolute; top: 50%; transform: translateY(-50%);
        }
        .jzl-logo-white { opacity: 1; visibility: visible; display: block; }
        .jzl-logo-colored { opacity: 0; visibility: hidden; display: none; }
        .jzl-img:hover { transform: translateY(-50%) scale(1.05); }

        .nav-links { display: flex; gap: 1.5rem; align-items: center; justify-self: center; transform: translateX(-45px); }
        .nav-links a {
            color: white; text-decoration: none; font-size: 1.02rem; font-weight: 600;
            transition: color 0.3s; position: relative;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -5px; right: 0; width: 0; height: 2px;
            background: white; transition: width 0.3s;
        }
        .nav-links a:hover { color: var(--secondary-orange); }
        .nav-links a:hover::after { width: 100%; }

        .header-actions { display: flex; align-items: center; gap: 12px; }
        .btn-header-cta {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--secondary-orange); color: white; padding: 8px 16px;
            border-radius: 50px; font-weight: 700; font-size: 0.9rem; text-decoration: none;
            white-space: nowrap; box-shadow: 0 6px 18px rgba(255,120,31,0.35); transition: all 0.3s ease;
        }
        .btn-header-cta:hover { background: #e66b1a; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,120,31,0.45); }

        .translation-wrapper { display: inline-flex; align-items: center; }
        .nav-translate-btn {
            background-color: var(--light-gray); color: var(--primary-purple);
            border: 2px solid transparent; padding: 8px 16px; border-radius: 50px;
            font-family: 'IBM Plex Sans Arabic', sans-serif; font-weight: 700; font-size: 0.9rem;
            cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease;
        }
        .nav-translate-btn i { font-size: 1rem; }
        .nav-translate-btn:hover {
            background-color: var(--primary-purple); color: white; transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(80, 44, 180, 0.2);
        }
        .skiptranslate, .goog-te-banner-frame, #goog-gt-tt { display: none !important; }
        body { top: 0px !important; }
        .goog-te-gadget { font-family: 'IBM Plex Sans Arabic', sans-serif !important; }

        .mobile-menu-btn {
            display: none; background: none; border: none; font-size: 1.4rem; color: white;
            cursor: pointer; padding: 6px; align-items: center; justify-content: center;
        }
        .mobile-menu {
            display: none; flex-direction: column; gap: 0.3rem; position: fixed;
            top: 80px; right: 0; left: 0; background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.12); padding: 1.2rem 6%; z-index: 999;
        }
        .mobile-menu.active { display: flex; }
        .mobile-menu a {
            color: var(--dark-gray); text-decoration: none; font-weight: 600; font-size: 1rem;
            padding: 0.7rem 0; border-bottom: 1px solid #eee;
        }
        .mobile-menu .btn-header-cta { text-align: center; justify-content: center; border-bottom: none; margin: 0.4rem 0 0; }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .header-actions .btn-header-cta { display: none; }
            .mobile-menu-btn { display: flex; }
            .jzl-img { height: 55px !important; }
            .nav-translate-btn { padding: 6px 12px; font-size: 0.8rem; }
            .header-actions { gap: 8px; }
        }
        @media (max-width: 480px) {
            .jzl-img { height: 48px !important; }
            .nav-translate-btn { padding: 5px 10px; font-size: 0.75rem; }
            .nav-translate-btn span { display: none; }
        }

        /* ===== Page intro banner — identical visual system to the home page hero ===== */
        .page-header {
            background: linear-gradient(135deg, #502C84 0%, #3d2166 100%);
            color: white;
            padding: 9.5rem var(--container-pad) 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero-grid-pattern {
            position: absolute; inset: 0; z-index: 0; opacity: 0.07; pointer-events: none;
            background-image:
                linear-gradient(rgba(255,255,255,0.9) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.9) 1px, transparent 1px);
            background-size: 44px 44px;
        }
        .hero-glow { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
        .hero-glow-orange { top: -10rem; left: -10rem; width: 32rem; height: 32rem; background: rgba(255,120,31,0.3); filter: blur(120px); }
        .hero-glow-cyan { bottom: -10rem; right: -8rem; width: 28rem; height: 28rem; background: rgba(255,255,255,0.1); filter: blur(120px); }
        .page-header h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 0.7rem; position: relative; z-index: 2; }
        .page-header h1 i { color: var(--secondary-orange); margin-left: 10px; }
        .page-header p { font-size: 1.05rem; opacity: 0.9; position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }

        .container { max-width: 900px; margin: 0 auto; padding: 2rem var(--container-pad) 4rem; }
        .quick-call {
            background: linear-gradient(135deg, var(--secondary-orange), #ff9a4d);
            color: white; border-radius: 16px; padding: 1.2rem 1.6rem;
            margin-bottom: 1.6rem; display: flex; align-items: center; gap: 15px;
            box-shadow: 0 10px 25px rgba(255,120,31,0.25);
        }
        .quick-call i { font-size: 1.8rem; }
        .quick-call-content { flex: 1; }
        .quick-call-content strong { display: block; font-size: 1.02rem; margin-bottom: 2px; }
        .quick-call-content span { font-size: 0.85rem; opacity: 0.95; }
        .quick-call a { background: white; color: var(--secondary-orange); padding: 10px 18px; border-radius: 10px; font-weight: 700; text-decoration: none; font-size: 0.9rem; white-space: nowrap; }
        .search-box { background: white; border: 1px solid #e8e8e8; border-radius: 14px; padding: 14px 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.04); margin-bottom: 1.4rem; display: flex; align-items: center; gap: 12px; }
        .search-box i { color: var(--primary-purple); font-size: 1.05rem; }
        .search-box input { flex: 1; border: none; outline: none; font-family: 'IBM Plex Sans Arabic', sans-serif; font-size: 0.95rem; color: var(--dark-gray); background: transparent; }
        .search-box input::placeholder { color: var(--medium-gray); }
        .category-tabs { display: flex; gap: 8px; margin-bottom: 1.6rem; flex-wrap: wrap; background: white; padding: 10px; border-radius: 14px; border: 1px solid #e8e8e8; }
        .category-tab { padding: 8px 16px; border-radius: 50px; cursor: pointer; font-weight: 600; font-size: 0.82rem; color: var(--medium-gray); background: var(--light-gray); transition: all 0.25s; border: none; font-family: 'IBM Plex Sans Arabic', sans-serif; }
        .category-tab:hover { background: var(--light-purple); color: var(--primary-purple); }
        .category-tab.active { background: var(--primary-purple); color: white; }
        .faq-category { background: white; border-radius: 16px; padding: 1.6rem 1.7rem; margin-bottom: 1.3rem; border: 1px solid #e8e8e8; }
        .category-title { color: var(--primary-purple); font-size: 1.2rem; font-weight: 700; margin-bottom: 1.1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--light-purple); display: flex; align-items: center; gap: 12px; }
        .category-title i { width: 38px; height: 38px; background: var(--light-purple); color: var(--primary-purple); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
        .faq-item { background: var(--light-gray); border-radius: 12px; margin-bottom: 8px; overflow: hidden; transition: all 0.3s; }
        .faq-question { padding: 14px 18px; font-weight: 700; color: var(--primary-purple); cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-size: 0.98rem; }
        .faq-question:hover { background: rgba(80, 44, 132, 0.05); }
        .faq-question i { transition: transform 0.3s; font-size: 0.75rem; margin-right: 10px; flex-shrink: 0; }
        .faq-answer { padding: 0 18px 14px; color: var(--dark-gray); font-size: 0.92rem; line-height: 1.85; display: none; }
        .faq-answer strong { color: var(--primary-purple); }
        .faq-answer ul { margin-right: 18px; margin-top: 6px; }
        .faq-answer li { margin-bottom: 5px; }
        .faq-answer .note { background: #fff8e1; border-right: 4px solid #ffc107; padding: 10px 14px; border-radius: 8px; margin-top: 9px; font-size: 0.85rem; }
        .faq-answer .tip { background: #e8f5e9; border-right: 4px solid #1bc5bd; padding: 10px 14px; border-radius: 8px; margin-top: 9px; font-size: 0.85rem; }
        .faq-answer .phone-inline { display: inline-flex; align-items: center; gap: 6px; background: var(--light-purple); color: var(--primary-purple); padding: 3px 10px; border-radius: 20px; font-weight: 700; font-size: 0.82rem; text-decoration: none; }
        .faq-item.active .faq-answer { display: block; }
        .faq-item.active .faq-question i { transform: rotate(180deg); }
        .faq-item.active { background: var(--light-purple); }

        /* ===== Contact card — same hero visual system ===== */
        .contact-card {
            background: linear-gradient(135deg, #502C84 0%, #3d2166 100%);
            color: white; border-radius: 22px; padding: 2.6rem 1.6rem; text-align: center;
            margin-top: 1.6rem; position: relative; overflow: hidden;
        }
        .contact-card h3, .contact-card p, .contact-card .contact-info, .contact-card .contact-hours {
            position: relative; z-index: 2;
        }
        .contact-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
        .contact-card p { opacity: 0.9; margin-bottom: 1.4rem; font-size: 0.92rem; }
        .contact-info { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
        .contact-item { background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); padding: 12px 20px; border-radius: 14px; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: white; font-weight: 700; transition: all 0.3s; font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.2); }
        .contact-item:hover { background: white; color: var(--primary-purple); transform: translateY(-2px); }
        .contact-hours { margin-top: 1rem; font-size: 0.8rem; opacity: 0.8; }
        .hidden { display: none !important; }

        /* ===== Footer (identical to Home_Page.html) ===== */
        footer { background: #0a0a0a; color: white; padding: 4rem var(--container-pad) 2rem; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
        .footer-logo-box { margin-bottom: 25px; display: block; }
        .footer-img-white { height: 40px; width: auto; display: block; filter: brightness(0) invert(1); transition: opacity 0.3s ease; }
        .footer-img-white:hover { opacity: 0.8; cursor: pointer; }
        .footer-about p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 2rem; }
        .social-links { display: flex; gap: 1rem; }
        .social-link {
            width: 45px; height: 45px; background: rgba(255,255,255,0.1); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; color: white;
            text-decoration: none !important; transition: all 0.3s; margin-right: 15px;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .social-link:hover { background: var(--secondary-orange); border-color: var(--secondary-orange); transform: translateY(-3px); }
        .footer-section h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; color: white; }
        .footer-section a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 0.8rem; transition: color 0.3s; font-size: 1.05rem; }
        .footer-section a:hover { color: var(--secondary-orange); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; color: rgba(255,255,255,0.5); }

        /* ===== Back to top (identical to Home_Page.html) ===== */
        .back-to-top {
            position: fixed; bottom: 30px; left: 30px; width: 50px; height: 50px;
            background: var(--primary-purple); color: white; border: none; border-radius: 50%;
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            font-size: 20px; box-shadow: 0 4px 15px rgba(80, 44, 132, 0.4);
            opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 9999;
        }
        .back-to-top:hover { background: var(--secondary-orange); transform: translateY(-5px); box-shadow: 0 6px 20px rgba(255, 120, 31, 0.4); }
        .back-to-top.show { opacity: 1; visibility: visible; }

        @media (max-width: 1024px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .page-header { padding: 7rem 6% 3rem; }
            .page-header h1 { font-size: 1.5rem; }
            .page-header p { font-size: 0.85rem; }
            .faq-category { padding: 1.2rem 1.1rem; }
            .category-title { font-size: 1.05rem; }
            .quick-call { flex-direction: column; text-align: center; }
            .contact-info { flex-direction: column; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
        }
    

/* ---- */

.cls-1{fill:#ff781f;}.cls-2{fill:#502e83;}

/* ---- */

.wht-1{fill:#fff;}.wht-2{fill:#ff781f;}
