
        /* CSS Variables */
        :root {
            --dark-blue: #163A63;
            --orange: #F7931E;
            --orange-hover: #e08316;
            --white: #FFFFFF;
            --light-bg: #F4F7F6;
            --text-color: #333333;
            --text-light: #666666;
            --border-color: #E2E8F0;
            --whatsapp-green: #25D366;
            --transition: all 0.3s ease;
            --shadow: 0 10px 30px rgba(22, 58, 99, 0.08);
        }

        /* Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
        }

        body {
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
            text-align: right;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-blue);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-title p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 5px;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            gap: 8px;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--orange);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(247, 147, 30, 0.3);
        }

        .btn-secondary {
            background-color: var(--whatsapp-green);
            color: var(--white);
        }

        .btn-secondary:hover {
            background-color: #20bd5a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--dark-blue);
            border: 2px solid var(--dark-blue);
        }
        
        .btn-outline:hover {
            background-color: var(--dark-blue);
            color: var(--white);
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left, .top-bar-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .top-bar i {
            color: var(--orange);
            margin-left: 5px;
        }
        
        .top-bar-right a {
            direction: ltr;
            display: inline-block;
        }

        /* Header */
        .header {
            background-color: var(--white);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark-blue);
        }

        .logo span {
            color: var(--orange);
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-weight: 600;
            color: var(--dark-blue);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--orange);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: var(--dark-blue);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            position: relative;
            background: linear-gradient(rgba(22, 58, 99, 0.8), rgba(22, 58, 99, 0.9)), url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
            padding: 120px 0;
            color: var(--white);
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .hero h2 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 30px;
            color: #e2e8f0;
        }

        .hero-bullets {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }

        .hero-bullets li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .hero-bullets i {
            color: var(--orange);
        }

        .hero-cta {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-number {
            display: block;
            margin-top: 20px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--orange);
            direction: ltr;
        }

        /* Trust Badges */
        .trust-badges {
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .trust-card {
            background: var(--white);
            padding: 30px 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .trust-card:hover {
            transform: translateY(-5px);
        }

        .trust-card i {
            font-size: 2.5rem;
            color: var(--orange);
            margin-bottom: 15px;
        }

        .trust-card h3 {
            color: var(--dark-blue);
            font-size: 1.1rem;
            font-weight: 700;
        }

        /* Services Section */
        .services {
            background-color: var(--light-bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            color: var(--dark-blue);
            margin-bottom: 10px;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .service-content p {
            color: var(--text-light);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .service-features {
            margin-bottom: 20px;
        }

        .service-features li {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-features i {
            color: var(--orange);
            font-size: 0.8rem;
        }

        .service-card .btn {
            width: 100%;
        }

        /* Why Choose Us */
        .why-us-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .why-us-image img {
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .accordion-item {
            border: 1px solid var(--border-color);
            margin-bottom: 15px;
            border-radius: 5px;
            overflow: hidden;
        }

        .accordion-header {
            width: 100%;
            text-align: right;
            padding: 18px 20px;
            background: var(--white);
            border: none;
            font-weight: 700;
            color: var(--dark-blue);
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .accordion-header:hover {
            background: var(--light-bg);
        }

        .accordion-header.active {
            background: var(--dark-blue);
            color: var(--white);
        }

        .accordion-content {
            padding: 0 20px;
            background: var(--white);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .accordion-content p {
            padding: 15px 0;
            color: var(--text-light);
        }

        /* Process Section */
        .process {
            background-color: var(--dark-blue);
            color: var(--white);
        }

        .process .section-title h2 {
            color: var(--white);
        }

        .process .section-title p {
            color: #cbd5e1;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
            position: relative;
        }

        .process-step {
            position: relative;
            z-index: 1;
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--orange);
            box-shadow: 0 0 0 8px rgba(255,255,255,0.1);
        }

        .process-step h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .process-step p {
            color: #cbd5e1;
            font-size: 0.95rem;
        }

        /* Testimonials */
        .testimonials {
            background-color: var(--light-bg);
        }

        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testi-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .stars {
            color: #FFC107;
            margin-bottom: 15px;
        }

        .testi-text {
            color: var(--text-light);
            font-style: italic;
            margin-bottom: 20px;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testi-avatar {
            width: 50px;
            height: 50px;
            background: var(--dark-blue);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .testi-author h4 {
            color: var(--dark-blue);
            font-size: 1rem;
            font-weight: 700;
        }

        .testi-author span {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Emergency CTA */
        .emergency-cta {
            background-color: var(--orange);
            padding: 60px 0;
            text-align: center;
            color: var(--white);
        }

        .emergency-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 800;
        }

        .emergency-cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .emergency-cta .btn-primary {
            background: var(--white);
            color: var(--orange);
        }
        
        .emergency-cta .btn-primary:hover {
            background: var(--light-bg);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .emergency-cta .btn-secondary {
            background: var(--dark-blue);
        }
        
        .emergency-cta .btn-secondary:hover {
            background: #0f2a4a;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Footer */
        .footer {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about p {
            color: #cbd5e1;
            margin: 15px 0;
            font-size: 0.95rem;
        }

        .footer h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--orange);
            font-weight: 700;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #cbd5e1;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--orange);
            padding-right: 5px;
        }

        .footer-contact li {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            color: #cbd5e1;
            align-items: center;
        }

        .footer-contact i {
            color: var(--orange);
        }
        
        .footer-contact a {
            direction: ltr;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #cbd5e1;
            font-size: 0.9rem;
        }

        /* Floating WhatsApp */
        .floating-wa {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background-color: var(--whatsapp-green);
            color: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            z-index: 999;
            transition: var(--transition);
        }

        .floating-wa:hover {
            transform: scale(1.1);
        }

        /* Mobile Sticky Footer */
        .mobile-sticky-footer {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        }

        .mobile-sticky-footer .btn {
            border-radius: 0;
            width: 50%;
            padding: 15px 0;
            font-size: 1.1rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .trust-grid, .services-grid, .testi-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .why-us-container {
                grid-template-columns: 1fr;
            }
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                right: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .trust-badges {
                margin-top: 0;
                padding-top: 40px;
            }
            .trust-grid {
                grid-template-columns: 1fr;
            }
            .services-grid, .testi-grid {
                grid-template-columns: 1fr;
            }
            .process-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .mobile-sticky-footer {
                display: flex;
            }
            .floating-wa {
                bottom: 80px;
                display:none;
            }
            body {
                padding-bottom: 50px;
            }
        }
