line-height: 1.7; overflow-x: hidden; } /* --- Animations --- */ @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4); } 70% { box-shadow: 0 0 0 20px rgba(211, 47, 47, 0); } 100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); } } .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; } .reveal.active { opacity: 1; transform: translateY(0); } /* --- Header --- */ header { background: var(--primary-gradient); padding: 1.2rem; color: white; text-align: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.15); } header h1 { font-size: 1.8rem; font-weight: 900; letter-spacing: -0.5px; } header p { font-size: 0.95rem; opacity: 0.9; } /* --- Hero --- */ #hero { position: relative; height: 95vh; min-height: 650px; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.4)), url('hero-premium.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; padding: 1.5rem; border-radius: 0 0 80px 80px; box-shadow: 0 15px 30px rgba(0,0,0,0.2); } .hero-card { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(25px); padding: 3.5rem 2.5rem; border-radius: 40px; max-width: 650px; width: 100%; text-align: center; box-shadow: 0 40px 80px rgba(211, 47, 47, 0.2); border: 1px solid rgba(255,255,255,0.5); animation: fadeIn 1s ease-out; } .hero-card h1, .hero-card h2 { font-size: 2.8rem; font-weight: 900; color: #b71c1c; line-height: 1.2; margin-bottom: 0.8rem; } .hero-card .subtitle { font-size: 1.3rem; color: #555; margin-bottom: 2.5rem; font-weight: 600; } .cta-container { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; } .btn { display: flex; align-items: center; justify-content: center; gap: 15px; padding: 1.4rem; border-radius: 22px; text-decoration: none; font-size: 1.4rem; font-weight: 800; transition: var(--transition); box-shadow: 0 10px 20px rgba(0,0,0,0.1); } .btn-call { background: var(--primary-gradient); color: white; animation: pulse 2s infinite; } .btn-call:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(211, 47, 47, 0.4); } .btn-whatsapp { background: var(--secondary-gradient); color: white; } .btn-whatsapp:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4); } .hero-badges { display: flex; justify-content: center; gap: 25px; margin-top: 1.5rem; font-weight: 800; color: var(--primary); font-size: 1rem; } /* --- Sections --- */ .section { padding: 6rem 1.5rem; } .container { max-width: 1200px; margin: 0 auto; } .section-title { text-align: center; margin-bottom: 4rem; } .section-title h2 { font-size: 2.8rem; font-weight: 900; color: var(--dark); margin-bottom: 1rem; } .divider { width: 100px; height: 6px; background: var(--primary-gradient); margin: 0 auto; border-radius: 3px; } /* --- Services --- */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; } .service-card { background: var(--white); padding: 3.5rem 2.5rem; border-radius: 35px; text-align: center; box-shadow: 0 15px 45px rgba(0,0,0,0.05); transition: var(--transition); border: 1px solid rgba(0,0,0,0.03); position: relative; overflow: hidden; } .service-card:hover { transform: translateY(-15px); border-color: var(--primary); box-shadow: var(--shadow-custom); } .service-icon { font-size: 3.5rem; color: var(--primary); margin-bottom: 1.5rem; display: flex; justify-content: center; align-items: center; height: 100px; width: 100px; background: rgba(211, 47, 47, 0.05); border-radius: 50%; margin: 0 auto 2rem; transition: var(--transition); } .service-card:hover .service-icon { background: var(--primary-gradient); color: white; transform: rotateY(360deg); } .service-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; } /* --- Areas --- */ .areas-section { background: var(--dark); color: white; padding: 6rem 1.5rem; border-radius: 80px 80px 0 0; text-align: center; } .areas-section h2 { color: white; } .areas-layout { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; margin-top: 3.5rem; } .area-pill { background: rgba(255,255,255,0.08); padding: 1.2rem 2.2rem; border-radius: 50px; font-weight: 700; font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); cursor: pointer; } .area-pill:hover { background: var(--white); color: var(--primary); transform: scale(1.1) translateY(-5px); } /* --- Testimonials --- */ .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; } .testimonial-card { background: var(--white); padding: 3rem; border-radius: 30px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.05); } .quote-icon { font-size: 3rem; color: var(--primary); opacity: 0.1; position: absolute; top: 20px; right: 20px; } .testimonial-text { font-size: 1.2rem; font-style: italic; margin-bottom: 2rem; color: #444; } .testimonial-author { display: flex; align-items: center; gap: 15px; font-weight: 800; color: var(--primary-dark); } /* --- FAQ --- */ .faq-wrapper { max-width: 850px; margin: 0 auto; } .faq-item { background: var(--white); margin-bottom: 1.2rem; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.02); overflow: hidden; border: 1px solid rgba(0,0,0,0.02); } .faq-q { padding: 1.8rem; font-weight: 800; font-size: 1.2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); } .faq-q:hover { color: var(--primary); background: #fdfdfd; } .faq-a { padding: 0 1.8rem; max-height: 0; overflow: hidden; transition: all 0.4s ease-in-out; color: #666; font-size: 1.1rem; } .faq-item.active .faq-a { padding-bottom: 1.8rem; max-height: 500px; border-top: 1px solid #eee; } /* --- Floating Contact --- */ .floating-action { position: fixed; bottom: 40px; left: 30px; display: flex; flex-direction: column; gap: 20px; z-index: 9999; } .float-circle { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: white; box-shadow: 0 10px 30px rgba(0,0,0,0.3); transition: var(--transition); text-decoration: none; } .float-wa { background: var(--secondary-gradient); } .float-call { background: var(--primary-gradient); } .float-circle:hover { transform: scale(1.15) rotate(10deg); } /* --- Footer --- */ footer { background: #111; color: white; padding: 5rem 1.5rem; text-align: center; } footer h3 { font-size: 2.2rem; margin-bottom: 1rem; color: var(--primary); } .copyright { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 1rem; opacity: 0.5; } /* --- Responsive --- */ @media (max-width: 768px) { .hero-card h1, .hero-card h2 { font-size: 2.2rem; } .section-title h2 { font-size: 2.2rem; } .btn { font-size: 1.25rem; } .hero-badges { flex-direction: column; gap: 10px; } #hero { height: auto; padding: 4rem 1rem; border-radius: 0 0 50px 50px; } }

خدمة اسعاف القاهرة الكبرى - استجابة فورية 24 ساعة

خبير الطوارئ الطبية الأول في مصر

نحن نصلك خلال 10-20 دقيقة بأحدث سيارات الإسعاف المجهزة.

وصول فوري طاقم طبي مرافق خدمة معتمدة

رعاية طبية متكاملة

اسعاف خاص مجهز

أحدث سيارات الإسعاف (عناية مركزة) لنقل الحالات الحرجة بأمان تام.

كشف طبي منزلي

فحوصات طبية شاملة وتشخيص دقيق في هدوء وخصوصية منزلك.

نحن نغطي كافة مناطق القاهرة والجيزة

مدينة نصر
التجمع الخامس
المعادي
مصر الجديدة
6 أكتوبر
الشيخ زايد
شبرا
حلوان
المهندسين
الدقي

ماذا يقول عملائنا

"وصلوا في 10 دقائق حرفياً، تعامل راقي جداً والسيارة مجهزة وكأنها غرفة استقبال مستشفى."

أ / أحمد رأفت

"الدكتور كان محترم وشخص الحالة بسرعة. الخدمة سهلت علينا كتير بدل تعب الانتقال."

د / سمر فوزي

الأسئلة الشائعة

كم تبلغ تكلفة طلب الإسعاف الخاص؟
تختلف أسعارنا حسب الحالة والمسافة والتجهيزات الطبية المطلوبة. يمكنك مراجعة صفحة الأسعار للتفاصيل.
هل الخدمة متاحة في أيام العطلات؟
نعم، نحن نعمل بنظام الشفتات 24 ساعة طوال أيام الأسبوع بما في ذلك العطلات الرسمية والأعياد.
هل يتوفر معكم أجهزة تنفس صناعي؟
بالتأكيد، سياراتنا (عناية مركزة) مجهزة بأحدث أجهزة التنفس الصناعي، والمونيتور، وأنابيب الأكسجين.

أين تتوفر خدمات كير اكس في القاهرة والجيزة؟

الأسئلة الشائعة حول خدماتنا

كيف يمكنني طلب خدمة بسرعة؟

اتصل على أرقامنا الموحدة وسيقوم فريقنا بالتحرك فوراً لأقرب نقطة إليكم. نحن نغطي كافة مناطق القاهرة الكبرى.

هل سيارات الإسعاف لديكم مجهزة للعناية المركزة؟

بالتأكيد، سياراتنا مجهزة بأحدث أجهزة التنفس الصناعي (Ventilator)، والمونيتور لنقل الحالات الحرجة بأمان تام.

هل الخدمة متاحة في أيام العطلات؟

نعم، نعمل على مدار 24 ساعة، 7 أيام في الأسبوع لضمان سلامتكم دائماً.

مريضي مش بيقدر يقعد أو يمشي، العربية هتقدر تتعامل معاه؟

اتصل عادي على 01060502218 واوصف الحالة. العربية بتيجي متجهزة بنقالة لنقل آمن للحالات اللي مش بتقدر تتحرك، والمسعفين مدربين على التعامل مع الحالات دي كل يوم.

عندي خروج من المستشفى أو موعد طبي يوم معين — أنقل المريض بالحجز المسبق ولا؟

أيوه، الحجز المسبق متاح وده أحسن حل للمواعيد المعروفة زي الخروج من المستشفى أو الجلسات المتكررة. حدد الوقت على 01060502218 وتبقى العربية جاهزة قبل الموعد.

فيه إسعاف خاص قريب مني في القاهرة؟

أيوه، كير اكس بتغطي القاهرة والأحياء المجاورة على مدار 24 ساعة. بمجرد اتصالك على 01060502218 بيتم توجيه أقرب عربية إسعاف لمكانك، فالمسافة بتكون أقصر قدر الإمكان.

عايز أنقل مريض من بيته في القاهرة لمستشفى — أنا اللي أحدد المستشفى ولا إزاي؟

ينفع طبعاً. بتنقل العربية المريض من القاهرة للمستشفى اللي انت بتحدده، سواء مستشفى حكومي أو خاص، والفريق بيمشي على التعليمات الطبية طول النقل.

ينفع حد من الأهل يرافق المريض في العربية؟

طبعاً، في مكان مخصص للمرافقين جنب المريض. ولو الحالة حرجة، الفريق الطبي هيقولك أحسن ترتيب للمتابعة.

عايز إسعاف بسرعة في القاهرة — إيه أسرع طريقة أطلبه بيها؟

أسرع طريق هو الاتصال المباشر على 01060502218. قول: مكانك بالظبط في القاهرة، وحالة المريض وعمره تقريباً. ولو الخط مشغول، ابعت واتساب على نفس الرقم وبيتم الرد فوراً.

بيوصلوا لحد باب الشقة ولا أنا أنزل المريض بنفسي؟

أيوه، فريقنا بينزل وبيحمل المريض بنفسه باستخدام النقالات وكراسي صعود الدرج لو الدور فوق، وانت مش محتاج تعمل أي حاجة غير إنك توجههم للمكان.

عربية الإسعاف بتوصل مجهزة بإيه؟

كل حالة ليها العربية المناسبة — فيه حالات محتاجة متابعة بسيطة في النقل، و فيه حالات محتاجة رعاية مركزة كاملة. اوصف الحالة واحنا نتكفل بالباقي.

بكام نقل المريض بالإسعاف في القاهرة؟

السعر بيتحدد حسب الحالة والمسافة ونوع الخدمة المطلوبة. كلم الفريق على 01060502218 وبيتم إبلاغك بالتكلفة بدقة وشفافية قبل الحجز.

اتصل الآن واتس اب