/* ================= متغيرات الألوان والخطوط ================= */
:root {
    --main-color: #002060; /* الكحلي */
    --sec-color: #ff6600;  /* البرتقالي */
    --light-bg: #f8f9fa;
    --text-font: 'Cairo', sans-serif;
}

body {
    font-family: var(--text-font);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* لون ثانوي مساعدة للنصوص والأيقونات */
.text-orange {
    color: var(--sec-color) !important;
}

/* ================= تنسيقات Navbar ================= */
.navbar {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar-brand {
    color: var(--main-color);
    font-size: 1.5rem;
}

.nav-link {
    color: var(--main-color);
    font-weight: 600;
    margin-left: 15px;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--sec-color);
}

/* تخصيص القائمة المنسدلة */
.dropdown-menu {
    border-top: 3px solid var(--sec-color);
    text-align: right;
}

.dropdown-item:hover {
    background-color: var(--sec-color);
    color: #fff;
}

/* زر اتصل الآن */
.btn-call-now {
    background-color: var(--sec-color);
    color: #fff;
    font-weight: 700;
    border: 2px solid var(--sec-color);
    transition: all 0.3s ease;
}

.btn-call-now:hover {
    background-color: transparent;
    color: var(--sec-color);
}

/* ================= تنسيقات Hero (مؤقتة للعرض) ================= */
.hero-section {
    background: linear-gradient(rgba(0, 32, 96, 0.9), rgba(0, 32, 96, 0.8)), url(../image/New.html\ Project.webp);
    background-size: cover;
    background-position: center;
    height: 400px;
}

/* ================= تنسيقات Footer ================= */
.footer {
    background-color: var(--main-color);
    color: #fff;
    margin-top: auto; /* يضمن بقاء الفوتر في الأسفل */
}

.footer-title {
    color: #fff;
    font-weight: 700;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--sec-color);
    padding-right: 5px; /* حركة بسيطة عند التمرير */
}

/* أيقونات السوشيال ميديا */
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin-left: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: var(--sec-color);
    transform: translateY(-3px);
}

/* ===========================
   تنسيقات Hero Section
   =========================== */

.hero-section {
    position: relative;
    /* صورة الخلفية - سنستخدم رابط صورة مؤقتة لتعمل معك فوراً */
   
    background-image: url('../image/new-project.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh; /* ارتفاع السكشن */
    color: #ffffff;
    overflow: hidden;
}

/* طبقة التظليل السوداء (Overlay) */
.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 32, 96, 0.7); /* لون كحلي شفاف داكن لزيادة الوضوح */
    z-index: 1;
}

/* التأكد من أن النصوص فوق الطبقة السوداء */
.hero-section .content-wrapper {
    z-index: 2;
}

/* تنسيق العنوان الرئيسي */
.hero-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 800; /* خط سميك جداً */
    font-size: 3.5rem; /* حجم كبير للشاشات الكبيرة */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* ظل للنص ليبرز أكثر */
    line-height: 1.4;
}

/* تنسيق زر الواتساب */
.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px; /* حواف دائرية */
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1ebc57;
    color: #fff;
    transform: translateY(-3px); /* يرتفع قليلاً عند اللمس */
}

/* تنسيق زر الاتصال */
.btn-call {
    background-color: #ff6600; /* اللون البرتقالي المطلوب */
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background-color: #e65c00;
    color: #fff;
    transform: translateY(-3px);
}

/* ===========================
   التجاوب مع الموبايل (Responsive)
   =========================== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh; /* تقليل الارتفاع قليلاً في الموبايل */
    }
    
    .hero-title {
        font-size: 2rem; /* تصغير الخط ليكون مناسباً للموبايل */
    }
    
    .hero-buttons .btn {
        width: 100%; /* الأزرار تأخذ عرض الشاشة بالكامل في الموبايل */
        margin-bottom: 10px;
    }
}
/* ===========================
   تنسيقات شريط CTA
   =========================== */

.cta-section {
    background-color: #002060; /* نفس الكحلي المستخدم في الناف بار */
    background-image: linear-gradient(45deg, #001540 0%, #002060 100%); /* تدرج خفيف للفخامة */
    border-top: 5px solid #ff6600; /* خط برتقالي رفيع من الأعلى كديكور */
}

.cta-title {
    font-family: 'Cairo', sans-serif;
}

/* تنسيق زر الخدمة الفورية */
.btn-cta {
    background-color: #ff6600;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 50px;
    border: 2px solid #ff6600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4); /* ظل برتقالي */
}

.btn-cta:hover {
    background-color: transparent;
    color: #ff6600;
    transform: scale(1.05); /* تكبير بسيط عند اللمس */
}

/* حركة النبض (Pulse Animation) للزر */
.pulse-animation {
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 102, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

/* تحسين الموبايل */
@media (max-width: 768px) {
    .btn-cta {
        width: 100%; /* الزر بعرض الشاشة في الموبايل */
        padding: 12px;
    }
}


/* ================= قسم الخدمات الاحترافي المطور ================= */

/* حاوية الكارت الأساسية */
.adv-service-card {
    border: none;
    transition: all 0.3s ease;
    overflow: hidden; /* لمنع أي تمدد غير مرغوب */
    border-bottom: 3px solid transparent; /* تحضير للخط البرتقالي عند الهوفر */
}

/* تأثير عند تحويم الماوس على الكارت بالكامل */
.adv-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 32, 96, 0.15) !important;
    border-bottom-color: var(--sec-color);
}

/* حاوية الصورة (مهمة لضبط الزوم) */
.service-img-wrapper {
    height: 220px; /* ارتفاع ثابت للصورة */
    overflow: hidden; /* إخفاء الزيادة عند الزوم */
    border-top-left-radius: 0.3rem; /* تدوير الحواف العلوية لتطابق الكارت */
    border-top-right-radius: 0.3rem;
}

/* الصورة نفسها */
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* تغطية المساحة دون تشويه */
    transition: transform 0.6s ease; /* نعومة حركة الزوم */
}

/* تأثير الزوم على الصورة عند الهوفر */
.adv-service-card:hover .service-img {
    transform: scale(1.1);
}

/* الأيقونة العائمة */
.floating-icon {
    width: 70px;
    height: 70px;
    background-color: var(--sec-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    
    /* سر التمركز والطفو */
    position: absolute;
    top: 0; 
    left: 50%;
    transform: translate(-50%, -50%); /* يرفع الأيقونة لنصفها الأعلى */
    
    border: 5px solid #fff; /* إطار أبيض لفصلها عن الصورة */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

/* تغيير لون الأيقونة عند الهوفر */
.adv-service-card:hover .floating-icon {
    background-color: var(--main-color);
    transform: translate(-50%, -50%) rotateY(180deg); /* حركة دوران جميلة */
}
/* إصلاح اتجاه الأيقونة عند الدوران */
.adv-service-card:hover .floating-icon i {
    transform: rotateY(-180deg); 
}

/* ضبط المسافة العلوية للنص بسبب وجود الأيقونة */
.service-body {
    padding-top: 40px !important; 
}

.service-title {
    color: var(--main-color);
    font-weight: 700;
}

/* زر اقرأ المزيد */
.btn-text-link {
    color: var(--sec-color);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.btn-text-link:hover {
    color: var(--main-color);
    letter-spacing: 1px; /* تباعد الأحرف قليلاً عند الهوفر */
}

/* ================= تنسيقات قسم الإحصائيات الفاخر ================= */
.stats-section {
    background-color: var(--main-color); /* الكحلي */
    color: #ffffff;
    /* إضافة نقشة خفيفة جداً في الخلفية لزيادة الفخامة (اختياري) */
    background-image: radial-gradient(circle at center, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.stats-section .icon-stat {
    color: #ffffff;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

/* حركة بسيطة للأيقونة عند الهوفر */
.stat-item:hover .icon-stat {
    transform: scale(1.1);
    color: var(--sec-color); /* تتحول للبرتقالي عند اللمس */
}

/* تنسيق الخط الفاصل */
.stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.2); /* خط أبيض شفاف */
    position: relative;
}

/* إخفاء الخط الفاصل من آخر عنصر (لأننا RTL فآخر عنصر هو اللي على الشمال) */
.stat-item:last-child {
    border-left: none;
}

/* التعامل مع الموبايل والتابلت */
@media (max-width: 991px) {
    .stat-item {
        border-left: none; /* إلغاء الخط الفاصل */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* استبداله بخط أفقي */
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
}

.counter-value {
    font-family: 'Cairo', sans-serif;
    letter-spacing: 1px;
}

/* ================= تنسيقات قسم الميزات (Features) ================= */

/* تنسيق الكرت الأساسي */
.feature-card {
    padding: 40px 25px; /* مسافات داخلية واسعة لراحة العين */
    border-radius: 15px; /* حواف ناعمة */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); /* ظل خفيف جداً في الوضع العادي */
    transition: all 0.4s ease; /* نعومة الحركة */
    border-bottom: 4px solid transparent; /* تجهيز الحدود السفلية للتحول */
    position: relative;
    overflow: hidden;
}

/* تأثير التفاعل عند مرور الماوس (Hover) */
.feature-card:hover {
    transform: translateY(-10px); /* يرتفع الكرت لأعلى */
    box-shadow: 0 20px 40px rgba(0, 32, 96, 0.1); /* الظل يزداد قوة وعمقاً */
    border-bottom-color: var(--sec-color); /* ظهور الخط البرتقالي في الأسفل */
}

/* تنسيق الأيقونة */
.icon-wrapper {
    font-size: 3.5rem; /* حجم كبير وواضح */
    color: var(--sec-color);
    transition: transform 0.3s ease;
}

/* حركة بسيطة للأيقونة عند الهوفر */
.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg); /* تكبير وتدوير بسيط */
}

/* تنسيق عناوين الكروت */
.feature-card .card-title {
    color: var(--main-color);
    font-weight: 700;
    font-size: 1.35rem;
}

/* تنسيق وصف الكروت */
.feature-card .card-text {
    font-size: 0.95rem;
    line-height: 1.7; /* تباعد أسطر مريح للقراءة */
}

/* الخط الفاصل تحت العنوان الرئيسي */
.line-separator {
    width: 80px;
    height: 4px;
    background-color: var(--sec-color);
    border-radius: 2px;
    display: block;
}

/* تنسيق فرعي للعنوان الصغير */
.ls-2 {
    letter-spacing: 2px; /* تباعد الأحرف */
    font-size: 0.9rem;
}

/* ================= تنسيقات قسم من نحن (Creative About) ================= */

/* تحسينات النصوص */
.ls-1 {
    letter-spacing: 1px;
}

.text-navy {
    color: var(--main-color);
}

.bg-orange {
    background-color: var(--sec-color);
}

/* زر الـ Outline المخصص */
.btn-outline-navy {
    color: var(--main-color);
    border: 2px solid var(--main-color);
    transition: all 0.3s ease;
}

.btn-outline-navy:hover {
    background-color: var(--main-color);
    color: #fff;
    transform: translateX(-5px); /* حركة خفيفة لليسار (RTL) */
}

/* --- التكوين الفني للصور (The Creative Part) --- */

/* الحاوية الأساسية للصور */
.about-img-composition {
    /* مسافة إضافية في الأسفل واليسار عشان العناصر العائمة ما تخرجش بره */
    padding-bottom: 30px; 
    padding-left: 30px; 
    overflow: hidden;
    position: relative;
}

/* الصورة الصغيرة المتداخلة */
.small-img-wrapper {
    width: 220px;     /* حجم ثابت للصورة المربعة */
    height: 220px;
    bottom: 0;        /* تلتصق بالأسفل */
    left: 0;          /* تلتصق باليسار (ناحية النص في RTL) */
    border: 8px solid #fff; /* الإطار الأبيض السميك الفاصل */
}

.small-img-wrapper img {
    height: 100%;
    object-fit: cover;
}

/* بادج الخبرة العائم */
.exp-badge {
    width: 110px;
    height: 110px;
    top: 30px;       /* المسافة من الأعلى */
    left: -20px;     /* يخرج قليلاً لليسار لإعطاء عمق */
    border: 4px solid #fff; /* إطار أبيض */
    animation: pulseBadge 2s infinite; /* حركة نبض خفيفة */
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 102, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

/* --- التجاوب مع الموبايل (Responsive) --- */
@media (max-width: 991px) {
    .about-img-composition {
        margin-top: 40px; /* مسافة بين النص والصور في الموبايل */
        padding-left: 0;
        padding-bottom: 0;
        text-align: center; /* توسيط الصور */
    }

    .main-img-wrapper img {
        height: 350px !important; /* تقليل ارتفاع الصورة الرئيسية */
    }

    .small-img-wrapper {
        width: 150px;
        height: 150px;
        bottom: -20px; /* تعديل المكان للموبايل */
        left: 50%;
        transform: translateX(-50%); /* توسيط الصورة الصغيرة */
        display: none; /* (اختياري) يمكنك إخفاؤها في الموبايل إذا كانت تسبب زحام، أو تركها */
    }
    
    /* في هذا التصميم سأقوم بتعديل مكان الصورة الصغيرة في الموبايل لتكون في الزاوية */
    .small-img-wrapper {
        display: block;
        left: 20px; /* إزاحتها قليلاً */
        transform: none;
    }

    .exp-badge {
        width: 90px;
        height: 90px;
        top: 10px;
        left: 10px;
    }
    
    .exp-badge span.display-5 {
        font-size: 2rem; /* تصغير الخط في الموبايل */
    }
}

/* ================= تنسيقات قسم التواصل (Contact Section) ================= */

/* الصندوق الكبير العائم */
.contact-card {
    /* هنا نضع الظل القوي ليعطي إيحاء الطفو */
    box-shadow: 0 20px 50px rgba(0, 32, 96, 0.15); 
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

/* --- العمود الأيمن (معلومات الاتصال) --- */
.contact-info-col {
    background-color: var(--main-color); /* الكحلي */
    overflow: hidden; /* لقص الدوائر الزائدة */
}

/* تنسيق رقم الخدمة */
.hotline-number {
    letter-spacing: 2px;
    font-family: 'Cairo', sans-serif; /* لضمان شكل الأرقام */
	font-size: 33px;
}

/* الديكور: دوائر شفافة في الخلفية */
.circle-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05); /* شفافية عالية */
    z-index: 0;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

/* --- العمود الأيسر (الفورم) --- */

/* تخصيص حقول الإدخال (Bootstrap Override) */
.form-floating > .form-control,
.form-floating > .form-select {
    border: 1px solid #dee2e6;
    border-radius: 8px; /* حواف ناعمة */
    background-color: #f8f9fa; /* لون خلفية فاتح جداً للحقل */
}

/* عند الضغط داخل الحقل (Focus State) - هام جداً */
.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--sec-color); /* الإطار يصبح برتقالي */
    box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.15); /* توهج برتقالي خفيف */
    background-color: #fff;
}

/* تنسيق الليبل (Label) */
.form-floating > label {
    color: #999;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--sec-color); /* الليبل يصبح برتقالي عند الكتابة */
    opacity: 1;
}

/* زر الإرسال */
.btn-submit-orange {
    background-color: var(--sec-color);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-submit-orange:hover {
    background-color: #e65c00; /* درجة أغمق قليلاً عند الهوفر */
    color: #fff;
    transform: translateY(-2px); /* حركة بسيطة للأعلى */
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* استجابة للموبايل */
@media (max-width: 991px) {
    .contact-info-col {
        padding: 40px 20px !important;
        text-align: center;
    }
    
    .contact-info-col .d-flex {
        justify-content: center; /* توسيط العناصر في الموبايل */
    }

    .hotline-box .d-flex {
        flex-direction: column;
    }
    
    .hotline-box i {
        margin-right: 0 !important;
        margin-bottom: 10px;
    }
}

/* ================= أزرار السلايدر المخصصة ================= */
.carousel-btn-custom {
    width: 45px;
    height: 45px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.carousel-btn-custom:hover {
    background-color: var(--sec-color);
    transform: scale(1.1);
}

/* تعديل مكان الأسهم في الموبايل لتكون واضحة */
@media (max-width: 768px) {
    .carousel-control-prev, .carousel-control-next {
        display: none; /* إخفاء الأسهم في الموبايل والاكتفاء بالسحب (Swipe) */
    }
}
/* ================= تنسيقات قسم آراء العملاء ================= */
.reviews-section {
    background-color: #f8f9fa; /* رمادي فاتح جداً */
    overflow: hidden;
}

/* زخرفة الخلفية (علامة اقتباس عملاقة) */
.bg-decoration-quote {
    position: absolute;
    top: 0;
    left: 5%;
    font-size: 15rem;
    color: rgba(0, 32, 96, 0.03); /* كحلي شفاف جداً */
    z-index: 0;
    font-family: serif;
}

/* بادج جوجل */
.google-rating-badge {
    gap: 10px; /* مسافة بين اللوجو والنص */
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* تنسيق منطقة العميل أسفل الكرت */
.client-area {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto; /* يجبر هذا الجزء ينزل للأسفل */
    display: flex;
    align-items: center; /* محاذاة رأسية */
}

/* تنسيق صورة العميل */
.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* عشان تبقى دايرة */
    object-fit: cover; /* عشان الصورة متتمطش */
    border: 2px solid var(--sec-color); /* برواز برتقالي شيك */
    margin-left: 15px; /* مسافة بين الصورة والاسم (في اليمين للشمال) */
}

/* تنسيق النصوص (الاسم والوصف) */
.client-info h6 {
    margin-bottom: 2px;
    font-size: 1rem;
}
.client-info span {
    font-size: 0.85rem;
}

.google-rating-badge:hover {
    transform: scale(1.05);
}

/* كارت الرأي */
.review-card {
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-top: 4px solid var(--sec-color); /* خط برتقالي علوي عند الهوفر */
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

/* صورة العميل (حرف بديل للصورة) */
.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.bg-navy {
    background-color: var(--main-color);
}
/* ================= تنسيقات الأسئلة الشائعة (Custom Accordion) ================= */

/* إلغاء البوردر الافتراضي واللون الأزرق عند الضغط */
.custom-accordion .accordion-item {
    background-color: #fff;
}

.custom-accordion .accordion-button {
    font-size: 1.1rem;
    padding: 1.2rem 1.5rem;
    background-color: #fff; /* خلفية بيضاء دائماً */
    color: var(--main-color);
    box-shadow: none !important; /* إزالة الوهج الأزرق */
    transition: all 0.3s ease;
}

/* تنسيق الحالة المفتوحة (Active State) */
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #fff; /* تظل بيضاء */
    color: var(--sec-color); /* النص يصبح برتقالي */
    border-bottom: 2px solid rgba(0,0,0,0.05); /* خط فاصل خفيف */
}

/* تغيير لون الأيقونة عند الفتح */
.custom-accordion .accordion-button:not(.collapsed) i {
    color: var(--sec-color) !important;
    opacity: 1 !important;
    transform: rotate(360deg); /* حركة دوران جميلة للأيقونة */
    transition: transform 0.5s ease;
}

/* سهم الأكورديون (الذي على اليسار) */
.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23002060'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

/* تغيير لون السهم عند الفتح ليكون برتقالي */
.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6600'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* تنسيق صندوق الدعم الجانبي */
.support-box {
    border-color: rgba(0, 32, 96, 0.1) !important;
}

/* ================= تنسيقات قسم الدعوة الأخيرة (Final CTA) ================= */
.final-cta-section {
    background-color: var(--main-color); /* الخلفية الأساسية الكحلية */
    /* يمكنك إضافة صورة خلفية هنا إذا أردت، مثال:
    background-image: url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    */
}

/* طبقة تغميق فوق الخلفية لضمان وضوح النص */
.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 32, 96, 0.85); /* درجة تغميق كحلي */
    z-index: 0;
}

/* تنسيق زر الاتصال البرتقالي الضخم */
.btn-cta-orange {
    background-color: var(--sec-color);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.btn-cta-orange:hover {
    background-color: #e65c00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
}

/* تنسيق زر الواتساب الأخضر المميز */
.btn-cta-whatsapp {
    background-color: #25D366; /* لون واتساب الرسمي */
    color: #fff;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
    background-color: #1ebe57;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* أنيميشن بسيط لأيقونة السماعة (اهتزاز) */
.animate-ring {
    animation: ring-animation 2s infinite;
}

@keyframes ring-animation {
    0% { transform: rotate(0); }
    10% { transform: rotate(10deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

/* أنيميشن للأيقونة الكبيرة العلوية (قفز) */
.animate-bounce {
    animation: bounce-animation 2s infinite;
}

@keyframes bounce-animation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ================= تنسيقات الفوتر الاحترافي ================= */
.main-widget {
    margin-bottom: 30px;
}

/* تنسيق روابط الفوتر */
.footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links a {
    color: #b0b0b0; /* رمادي فاتح */
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

/* عند مرور الماوس على الرابط */
.footer-links a:hover {
    color: var(--sec-color); /* يتحول للبرتقالي */
    transform: translateX(-5px); /* يتحرك لليسار قليلاً */
    padding-right: 5px;
}

/* أيقونات السوشيال ميديا */
.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ألوان خاصة لكل منصة عند الهوفر */
.social-icon:hover { transform: translateY(-3px); color: #fff; }
.social-icon.facebook:hover { background-color: #1877f2; }
.social-icon.twitter:hover { background-color: #1da1f2; }
.social-icon.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.whatsapp:hover { background-color: #25d366; }

/* ================= تنسيق التنويه (Fix White Background) ================= */

/* ================= تنسيق التنويه (نص أبيض واضح) ================= */
.disclaimer-box {
    background-color: rgba(255, 255, 255, 0.05) !important; /* خلفية شفافة خفيفة جداً */
    color: #ffffff !important; /* النص أبيض ناصع */
    border: 2px solid var(--sec-color); /* برواز برتقالي مميز */
    padding: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* ظل ناعم */
}

/* ضمان أن النص الداخلي أبيض */
.disclaimer-box p {
    color: #ffffff !important;
    margin: 0;
    font-weight: normal; /* أو bold لو تحب الخط عريض */
}

/* تمييز كلمة "تنويه هام" بلون مختلف (برتقالي مثلاً) */
.disclaimer-box strong {
    color: var(--sec-color) !important; 
    font-size: 1.2rem;
    font-weight: 800;
}

/* الأيقونة */
.disclaimer-box i {
    color: var(--sec-color) !important;
}

/* خط فاصل ناعم */
hr.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* إخفاء البار على الشاشات الكبيرة (الكمبيوتر والتابلت) */
.mobile-sticky-bar {
    display: none; 
}

/* التنسيق للشاشات الصغيرة (الموبايل) فقط */
@media (max-width: 768px) {
    
    /* نخفي الأزرار العائمة القديمة عشان الشاشة متزدحمش */
    .floating-contact {
        display: none !important;
    }

    /* منع الأفقي overflow ومسافة في أسفل الصفحة */
    body {
        overflow-x: hidden;
        padding-bottom: 70px;
    }

    /* منع أي قسم من الخروج عن الشاشة */
    section, .container, .row, .col, .col-md-6, .col-lg-6, .col-lg-4, .col-lg-8, .col-lg-3 {
        overflow-x: clip;
    }

    /* تقليل ارتفاع الهيدر في الموبايل */
    .hero-section {
        min-height: 60vh !important;
    }

    /* نظهر البار الجديد */
    .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 99999;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
        background-color: #fff;
    }

    /* تنسيق الأزرار (اللينكات) */
    .sticky-item {
        flex: 1; /* عشان ياخدوا مساحة قد بعض 50% */
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: white;
        font-weight: bold;
        font-size: 14px;
        gap: 8px; /* مسافة بين الأيقونة والكلام */
        transition: background 0.3s;
    }

    /* ألوان قسم الواتساب */
    .whatsapp-section {
        background-color: #25D366;
    }
    .whatsapp-section:active {
        background-color: #1ebc57; /* لون أغمق عند الضغط */
    }

    /* ألوان قسم الاتصال */
    .call-section {
        /* نفس التدرج اللوني بتاعك عشان الهوية البصرية */
        background: linear-gradient(135deg, #ff416c, #ff4b2b);
    }
    .call-section:active {
        background: linear-gradient(135deg, #e03a5f, #e04226);
    }

    /* تريكاية الفاصل المائل للإبداع */
    .separator-skew {
        width: 2px;
        background: rgba(255,255,255,0.3);
        transform: skewX(-20deg); /* ميلان الخط */
    }
    
    /* تحسين شكل الأيقونات */
    .sticky-item svg {
        filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
    }
}

/* تنسيق سكشن الهيدر */
.page-header {
    position: relative;
    /* غير مسار الصورة هنا لصورة تعبر عن الشركة أو المكتب */
    background-image: url('../image/about-hero.html'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px; /* الارتفاع المناسب لصفحات الفرعية */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* طبقة التغميق (Overlay) */
.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* لون أسود شفاف بنسبة 60% */
    z-index: 1;
}

/* عشان المحتوى يظهر فوق طبقة التغميق */
.page-header .container {
    position: relative;
    z-index: 2;
}

/* عنوان الصفحة */
.page-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* قائمة المسار (Breadcrumb) */
.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* توسيط العناصر */
    align-items: center;
    gap: 10px; /* مسافة بين الكلمات */
    font-size: 18px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

/* تنسيق لينك الرئيسية */
.breadcrumb li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: bold;
}

.breadcrumb li a:hover {
    color: #ff4b2b; /* نفس لون البراند بتاعك */
}

/* الصفحة الحالية (من نحن) */
.breadcrumb li.active {
    color: #ddd; /* لون رمادي فاتح شوية عشان يبان إنه مش لينك */
    cursor: default;
}

/* العلامة الفاصلة (>) أو (/) */
.breadcrumb li:not(:last-child)::after {
    content: '/'; /* شكل الفاصل */
    margin-right: 10px;
    color: #ff4b2b; /* لون الفاصل */
    font-weight: bold;
}

/* تظبيط للموبايل */
@media (max-width: 768px) {
    .page-header {
        height: 250px; /* نصغره شوية في الموبايل */
    }
    .page-title {
        font-size: 28px;
    }
    .breadcrumb {
        font-size: 16px;
    }
}


/* --- ألوان الهوية البصرية (Brand Colors) --- */
:root {
    --brand-dark: #0a1930;       /* كحلي غامق للعناوين (وقار) */
    --brand-gradient: linear-gradient(135deg, #ff416c, #ff4b2b); /* نفس تدرج زر الاتصال */
    --brand-light: #f4f7f6;      /* خلفية رمادي مريحة للعين */
}

/* تنسيق قسم المميزات */
.features-section {
    background-color: var(--brand-light);
    padding: 80px 0;
}

.section-title h2 {
    color: var(--brand-dark);
    font-weight: 800;
    margin-bottom: 15px;
}

/* كلمة "المهندس" تاخد لون مختلف */
.section-title .text-highlight {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* الكارت نفسه */
.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent; /* شريط سفلي مخفي */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    z-index: 1;
}

/* لما تقف على الكارت */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-bottom-color: #ff4b2b; /* يظهر خط بلون البراند تحت */
}

/* دائرة الأيقونة */
.feature-card .icon-box {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: #fff; /* الخلفية بيضاء */
    color: #ff4b2b;   /* الأيقونة ملونة */
    font-size: 32px;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* ظل ناعم */
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

/* لما تقف على الكارت، الأيقونة تتلون بالكامل */
.feature-card:hover .icon-box {
    background: var(--brand-gradient); /* الخلفية تبقى متدرجة */
    color: #fff; /* الأيقونة تبقى بيضاء */
    transform: rotateY(360deg); /* تلف لفة كاملة */
    box-shadow: 0 10px 20px rgba(255, 75, 43, 0.4); /* ظل بلون البراند */
}

/* العناوين داخل الكروت */
.feature-card h4 {
    color: var(--brand-dark); /* كحلي غامق */
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

/* النصوص */
.feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}


/* تنسيق صفحة المحتوى */
.privacy-content {
    background-color: #f8f9fa; /* خلفية الصفحة رمادي فاتح */
}

/* الكارت اللي شايل الكلام */
.privacy-card {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

/* تاريخ التحديث */
.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

/* العناوين الفرعية (1، 2، 3...) */
.privacy-card h3 {
    color: var(--brand-dark); /* اللون الكحلي بتاعنا */
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    position: relative;
    padding-right: 15px; /* مسافة للخط الجانبي */
}

/* خط جمالي جنب العنوان */
.privacy-card h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    height: 25px;
    width: 4px;
    background: var(--brand-gradient); /* اللون البرتقالي بتاعنا */
    border-radius: 2px;
}

/* النصوص العادية */
.privacy-card p {
    color: #555;
    line-height: 1.8; /* تباعد الأسطر عشان القراءة تبقى مريحة */
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify; /* محاذاة النص من الجنبين */
}

/* القوائم (النقط) */
.privacy-card ul {
    margin-bottom: 20px;
    padding-right: 20px;
}

.privacy-card ul li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
    list-style-type: square; /* شكل النقطة مربع */
}

.privacy-card strong {
    color: #333;
    font-weight: 700;
}

/* معلومات الاتصال في الآخر */
.contact-info {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 8px;
    border: 1px dashed #ccc;
    margin-top: 20px;
}

.contact-info i {
    color: #ff4b2b;
    margin-left: 10px;
}

/* تظبيط للموبايل */
@media (max-width: 768px) {
    .privacy-card {
        padding: 25px; /* نقلل الحواف شوية في الموبايل */
    }
    .privacy-card h3 {
        font-size: 20px;
    }
}

/* خلفية الصفحة */
.terms-content {
    background-color: #f4f7f6;
}

/* الكارت الكبير */
.legal-card {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* المربع التعريفي اللي فوق */
.intro-box {
    background: #eef2f5;
    padding: 20px;
    border-radius: 8px;
    border-right: 5px solid #ff4b2b; /* خط برتقالي يمين */
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.intro-box i {
    font-size: 30px;
    color: #0a1930;
}

.intro-box p {
    margin: 0;
    color: #555;
    font-weight: 600;
}

/* تنسيق البنود (1، 2، 3) */
.term-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.term-item:last-child {
    border-bottom: none;
}

.term-item h4 {
    color: #0a1930; /* كحلي غامق */
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.term-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.term-item ul {
    padding-right: 20px;
    margin-bottom: 15px;
}

.term-item ul li {
    color: #555;
    margin-bottom: 5px;
}

/* نص التحذير (سقوط الضمان) */
.warning-text {
    color: #dc3545 !important; /* لون أحمر */
    font-size: 14px;
    background: #fff5f5;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
}

/* الفوتر بتاع الاتفاقية */
.agreement-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #eee;
}

.agreement-footer strong {
    color: #ff4b2b;
    font-size: 18px;
}

/* الموبايل */
@media (max-width: 768px) {
    .legal-card {
        padding: 20px;
    }
    .intro-box {
        flex-direction: column;
        text-align: center;
        border-right: none;
        border-top: 5px solid #ff4b2b;
    }
}

/* --- تنسيقات السكشن الإبداعي --- */

.creative-hero {
    background-color: #f8f9fa; /* خلفية رمادي فاتح جداً */
    position: relative;
}

/* العنوان الصغير */
.sub-title {
    color: #ff4b2b; /* اللون البرتقالي */
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* العنوان الرئيسي */
.hero-heading {
    color: var(--brand-dark); /* اللون الكحلي */
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.3;
}

/* تمييز كلمة "صيانة ثلاجات" */
.highlight-text {
    position: relative;
    z-index: 1;
    display: inline-block;
}

/* خط تحت الكلمة المميزة */
.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(255, 75, 43, 0.2); /* لون برتقالي شفاف */
    z-index: -1;
    border-radius: 3px;
}

/* قائمة المميزات (Checklist) */
.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-checklist li {
    margin-bottom: 12px;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-checklist li i {
    color: #25D366; /* لون أخضر لعلامة الصح */
    font-size: 18px;
}

/* زرار متدرج احترافي */
.btn-gradient {
    background: var(--brand-gradient);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px; /* زرار بيضاوي */
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 10px 20px -10px rgba(255, 75, 43, 0.5);
}

.btn-gradient:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px rgba(255, 75, 43, 0.7);
}

/* --- الجزء الإبداعي (الصور والطبقات) --- */

.creative-image-wrapper {
    position: relative;
    padding: 30px; /* مساحة عشان العناصر العايمة متتقصش */
    z-index: 1;
}

/* الشكل الهندسي الخلفي */
.bg-shape {
    position: absolute;
    top: 0;
    right: 0; /* عشان ييجي يمين الصورة */
    width: 80%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 75, 43, 0.1), rgba(10, 25, 48, 0.1)); /* تدرج شفاف جداً من ألوان البراند */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* شكل انسيابي (Blob) */
    z-index: -1; /* ورا الصورة */
    transform: rotate(-5deg);
}

/* الصورة الرئيسية */
.main-img {
    position: relative;
    z-index: 2;
    border: 5px solid #fff; /* برواز أبيض للصورة */
}

/* ختم الثقة العائم */
.trust-badge {
    position: absolute;
    bottom: 0; /* تحت */
    left: 0; /* شمال */
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3; /* فوق كل حاجة */
    border-right: 4px solid #ff4b2b; /* خط برتقالي يمين الختم */
}

.badge-icon {
    font-size: 35px;
    color: #0a1930; /* لون كحلي للأيقونة */
}

/* انيميشن بسيط يخلي الختم يتحرك */
.floating-anim {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* تظبيط للموبايل */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 2rem;
    }
    .hero-text-content {
        text-align: center;
    }
    .hero-checklist li {
        justify-content: center;
    }
    .cta-wrapper {
        justify-content: center;
        flex-direction: column;
    }
    .trust-badge {
        left: 50%;
        transform: translateX(-50%) !important; /* توسيط الختم في الموبايل */
        bottom: -20px;
        padding: 10px 20px;
    }
    .bg-shape {
        width: 100%;
        right: 0;
    }
}

/* --- تنسيقات سكشن الأعطال --- */

.faults-section {
    background-color: #fff;
    position: relative;
}

/* العنوان الفرعي الصغير */
.sub-title {
    color: #ff4b2b; /* برتقالي */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

/* خط تحت كلمة "فوراً" */
.highlight-line {
    border-bottom: 4px solid #ff4b2b;
    display: inline-block;
    line-height: 0.8;
}

/* --- تصميم الكارت (Card Design) --- */
.fault-card {
    background: #fff;
    border: 1px solid #eee; /* برواز خفيف جداً */
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* نعومة في الحركة */
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    z-index: 1;
}

/* دائرة الأيقونة */
.fault-card .icon-circle {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: rgba(10, 25, 48, 0.05); /* لون رمادي مزرق فاتح جداً */
    color: var(--brand-dark); /* أيقونة كحلي */
    font-size: 28px;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

/* العناوين والنصوص */
.fault-card h4 {
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.fault-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

/* سهم صغير بيظهر تحت */
.arrow-icon {
    font-size: 18px;
    color: #ff4b2b;
    opacity: 0; /* مخفي في العادي */
    transform: translateX(20px); /* مزقوق لليمين */
    transition: all 0.4s ease;
    display: inline-block;
}

/* --- السحر (Hover Effects) --- */

.fault-card:hover {
    transform: translateY(-10px); /* يطلع لفوق */
    box-shadow: 0 20px 40px rgba(255, 75, 43, 0.2); /* ظل برتقالي ناعم */
    border-color: transparent;
}

/* عملنا طبقة وهمية (Pseudo-element) عشان الخلفية المتدرجة */
.fault-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff416c, #ff4b2b); /* التدرج بتاعنا */
    z-index: -1; /* ورا المحتوى */
    opacity: 0; /* شفاف في البداية */
    transition: opacity 0.4s ease;
}

/* لما تقف بالماوس، الخلفية تظهر والكلام يبيض */
.fault-card:hover::before {
    opacity: 1;
}

.fault-card:hover h4,
.fault-card:hover p {
    color: #fff; /* النص يتحول لأبيض */
}

/* الأيقونة لما تقف عليها */
.fault-card:hover .icon-circle {
    background: #fff; /* الدائرة تبقى بيضاء */
    color: #ff4b2b; /* الأيقونة تبقى برتقالي */
    transform: scale(1.1) rotate(360deg); /* تكبر وتلف */
}

/* السهم يظهر ويتحرك لمكانه */
.fault-card:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
    color: #fff;
}
/* --- تنسيق سكشن التعليمات --- */
.instructions-section {
    background-color: #fcfcfc; /* أبيض مائل للرمادي جداً */
    position: relative;
}

/* بادج صغير فوق العنوان */
.section-badge {
    background: rgba(10, 25, 48, 0.1);
    color: var(--brand-dark);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* --- تصميم كارت التنبيه (Alert Card) --- */
.alert-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex; /* عشان الأيقونة جنب الكلام */
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.alert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* العمود الملون الجانبي (مهم جداً للشكل) */
.alert-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0; /* عشان عربي */
    width: 4px;
    height: 100%;
}

/* الأيقونة */
.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0; /* عشان ميتفعصش في الموبايل */
}

/* المحتوى */
.card-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --- الألوان الوظيفية (Functional Colors) --- */

/* 1. الخطر (Danger) - أحمر */
.danger-card::before { background-color: #dc3545; }
.danger-card .card-icon {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* 2. التحذير (Warning) - برتقالي */
.warning-card::before { background-color: #ffc107; }
.warning-card .card-icon {
    background-color: rgba(255, 193, 7, 0.15);
    color: #d39e00;
}

/* 3. المعلومة (Info) - أزرق/نيلي */
.info-card::before { background-color: #0dcaf0; }
.info-card .card-icon {
    background-color: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
}

/* --- تظبيط للموبايل --- */
@media (max-width: 576px) {
    .alert-card {
        flex-direction: column; /* الأيقونة فوق والكلام تحت */
        text-align: center;
    }
    .alert-card::before {
        width: 100%; /* الخط يبقى فوق بالعرض */
        height: 4px;
        right: 0;
        top: 0;
    }
    .card-icon {
        margin: 0 auto 15px; /* توسيط الأيقونة */
    }
}

/* --- تنسيقات الهيرو الجديد (Legal Hero) --- */
.brand-hero-legal {
    background-color: #f9fbfd; /* خلفية هادية جداً */
    overflow: hidden;
}

/* التنويه الذكي (Identity Badge) */
.identity-badge {
    display: inline-flex;
    align-items: center;
    background-color: #e3f2fd; /* أزرق فاتح جداً */
    border: 1px solid #bbdefb;
    border-radius: 50px;
    padding: 5px 15px 5px 5px;
    font-size: 13px;
    color: #0d47a1;
    font-weight: 600;
}

.identity-badge .badge-icon {
    background-color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    color: #1976d2;
}

/* تمييز اسم الماركة */
.text-highlight-brand {
    color: #f60; /* لون أزرق يليق مع ألاسكا */
    position: relative;
    display: inline-block;
}

.text-highlight-brand::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(13, 110, 253, 0.1);
    z-index: -1;
}

/* قائمة المميزات */
.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-features-list li {
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features-list li i {
    color: #25d366; /* علامة صح خضراء */
}

/* الأزرار */
.btn-primary-custom {
    background: var(--brand-gradient); /* البرتقالي بتاعنا */
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    color: #fff;
}

.btn-whatsapp-custom {
    background: #fff;
    color: #25d366;
    border: 2px solid #25d366;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: bold;
}

.btn-whatsapp-custom:hover {
    background: #25d366;
    color: #fff;
}

/* --- الجزء الصوري --- */
.logo-card {
    background: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.brand-logo {
    max-height: 50px; /* حجم اللوجو مناسب */
}

.device-showcase {
    position: relative;
    z-index: 1;
}

.bg-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.device-img {
    max-height: 400px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    transition: transform 0.3s;
}

.device-showcase:hover .device-img {
    transform: scale(1.02);
}

/* موبايل */
@media (max-width: 768px) {
    .brand-hero-legal {
        text-align: center;
    }
    .hero-features-list li {
        justify-content: center;
    }
    .action-buttons {
        justify-content: center;
    }
    .device-img {
        max-height: 250px;
    }
}
/* --- 1. تنسيقات الحاوية والنصوص (الجزء اليمين) --- */


/* =========================================
   START: Brand Hero Legal Section (The Monster Update)
   ========================================= */

/* --- 1. الحاوية الرئيسية (السكشن كله) --- */
.brand-hero-legal {
    background-color: #f9fbfd; /* خلفية هادية */
    overflow: hidden; /* يمنع ظهور سكرول بار بسبب الحركة */
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* --- 2. تنسيقات الجزء النصي (اليمين) --- */

/* بادج التنويه */
.identity-badge {
    display: inline-flex;
    align-items: center;
    background-color: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 50px;
    padding: 5px 15px 5px 5px;
    font-size: 13px;
    color: #0d47a1;
    font-weight: 600;
}

.identity-badge .badge-icon {
    background-color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    color: #1976d2;
}

/* تمييز اسم الماركة */
.text-highlight-brand {
    color: #f60;
    position: relative;
    display: inline-block;
}

/* القائمة (علامات الصح) */
.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-features-list li {
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features-list li i {
    color: #25d366;
}

/* الأزرار (Buttons) */
.btn-primary-custom {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 75, 43, 0.3);
}

.btn-whatsapp-custom {
    background: #fff;
    color: #25d366;
    border: 2px solid #25d366;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-whatsapp-custom:hover {
    background: #25d366;
    color: #fff;
}


/* --- 3. تنسيقات الجزء الصوري المكبر (الشمال) --- */

/* مسرح الصورة (المساحة كبرت لـ 550px) */
.hero-visual-scene {
    position: relative;
    height: 550px; 
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    margin-top: 20px;
    overflow: hidden;
}

/* صورة المنتج (العملاقة) */
.hero-product-img {
    max-height: 500px; /* كبرناها عشان تملا العين */
    z-index: 5;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
    animation: floatingMain 4s ease-in-out infinite;
    position: relative;
}

@keyframes floatingMain {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* الخلفية المتوهجة (Pulse) */
.energy-pulse {
    position: absolute;
    width: 460px; /* كبرت */
    height: 460px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 3s infinite;
}

/* الحلقة الدائرة (Ring) */
.energy-ring {
    position: absolute;
    width: 530px; /* كبرت */
    height: 530px;
    border: 2px dashed rgba(13, 110, 253, 0.2);
    border-radius: 50%;
    z-index: 1;
    animation: spinRing 25s linear infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(0.9); opacity: 0.5; }
}

@keyframes spinRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* الكروت العائمة (Floating Cards) */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 6;
    border: 1px solid #fff;
    min-width: 140px;
}

.fc-icon {
    width: 35px;
    height: 35px;
    background: #e3f2fd;
    color: #f60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.fc-text span {
    display: block;
    font-weight: 700;
    font-size: 13px;
    color: #333;
}

.fc-text small {
    font-size: 11px;
    color: #777;
}

/* تعديل أماكن الكروت عشان التكبير */
.card-speed { top: 12%; right: -2%; animation: floatCard 4s ease-in-out infinite; }
.card-quality { top: 40%; left: -5%; animation: floatCard 4s ease-in-out infinite 1.5s; }
.card-parts { bottom: 12%; right: 5%; animation: floatCard 4s ease-in-out infinite 2.5s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* كبسولة اللوجو */
.brand-capsule {
    position: absolute;
    bottom: 0px; /* تحت خالص */
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 6px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 7;
    border: 1px solid #eee;
    white-space: nowrap;
}

.brand-capsule .txt {
    font-size: 11px;
    color: #888;
    font-weight: 600;
}

.capsule-logo {
    height: 20px;
}





/* =========================================
   تحديث خاص للموبايل (BIG SIZE)
   ========================================= */

@media (max-width: 992px) {
    
    .brand-hero-legal {
        text-align: center;
        padding-top: 1rem;
        padding-bottom: 3rem;
    }

    .hero-features-list li {
        justify-content: center;
        font-size: 14px;
    }

    .action-buttons {
        justify-content: center;
    }

    /* --- تكبير مسرح الصورة في الموبايل --- */
    .hero-visual-scene {
        height: 480px; /* كبرناها من 400 لـ 480 عشان تاخد راحتها */
        margin-top: 30px;
        /* لو عايزها لازقة في الكلام قلل المارجن ده */
    }

    /* --- تكبير صورة المنتج في الموبايل --- */
    .hero-product-img {
        max-height: 420px; /* كانت 300px .. خليتها 420px يعني عملاقة للموبايل */
        width: auto; /* عشان تحافظ على ابعادها */
    }

    /* تكبير الخلفيات المضيئة لتناسب الصورة الجديدة */
    .energy-ring { width: 450px; height: 450px; }
    .energy-pulse { width: 350px; height: 350px; }

    /* --- تظبيط الكروت عشان متبقاش مغطية على الصورة العملاقة --- */
    .float-card { 
        transform: scale(0.85); /* تصغير الكروت سنة بسيطة عشان الزحمة */
        padding: 6px 10px;
        min-width: 110px;
    }
    
    /* توزيع الكروت بذكاء حوالين الصورة الكبيرة */
    .card-speed { top: 5%; right: -10px; } /* فوق يمين */
    .card-quality { top: 45%; left: -15px; } /* في النص شمال */
    .card-parts { bottom: 10%; right: -5px; } /* تحت يمين */
    
    /* كبسولة اللوجو */
    .brand-capsule { 
        bottom: -10px; 
        transform: translateX(-50%) scale(0.9); /* تصغير سنة عشان الشياكة */
    }
}

/* =========================================
   END: Brand Hero Legal Section
   ========================================= */






























/* --- الخلفية --- */
.alaska-fire-services {
    background-color: #f4f6f9;
}

/* --- الكارت النيون --- */
.neon-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* حركة "نطة" */
    border: 1px solid #eee;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* حركة الكارت عند الهوفر */
.neon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.2); /* وهج أزرق */
    border-color: #f60;
}

/* --- الجزء العلوي (الصورة) --- */
.card-img-holder {
    height: 200px;
    background: linear-gradient(135deg, #f1f4f8 0%, #e2e6ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-img-holder img {
    
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.neon-card:hover .card-img-holder img {
    transform: scale(1.1) rotate(2deg); /* الصورة بتكبر وتلف سنة */
}

/* بادج الحالة (فوري، ضمان..) */
.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(13, 110, 253, 0.1);
    color: #f60;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

/* --- جسم الكارت --- */
.card-body {
    padding: 25px;
    text-align: center;
    position: relative;
}

/* الأيقونة المتوهجة */
.icon-glow {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: -25px; /* تطلع نصها فوق */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f60;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid #fff; /* برواز أبيض عشان يفصل عن الخلفية */
    transition: all 0.4s;
}

.neon-card:hover .icon-glow {
    background: #f60;
    color: #fff;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.5); /* تنور */
}

/* العناوين والنصوص */
.neon-card h3 {
    margin-top: 25px;
    font-size: 18px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.neon-card .faults {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    min-height: 40px; /* عشان الكروت تبقى طول واحد */
}

/* زر الاتصال الناري */
.btn-fire {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #ddd;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-fire i {
    margin-left: 5px;
}

/* لما تقف على الزرار يقلب برتقالي (لون الطوارئ) */
.btn-fire:hover {
    background: var(--brand-gradient); /* البرتقالي بتاعنا */
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 75, 43, 0.3);
}

.neon-card:hover .btn-fire {
    background: #f60; /* أو يقلب أزرق حسب ذوقك، بس البرتقالي أحلى للاتصال */
    color: #fff;
    border-color: transparent;
}

/* --- خلفية السكشن (Dark Theme) --- */
.alaska-tech-standards {
    background: linear-gradient(135deg, #0a1930 0%, #060e1c 100%); /* كحلي ليلي */
    position: relative;
    overflow: hidden;
}

/* إضافة نقشة خفيفة في الخلفية (اختياري بس شيك) */
.alaska-tech-standards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.03; /* شفاف جداً */
    pointer-events: none;
}

/* --- النصوص --- */
.tech-badge {
    background: rgba(13, 110, 253, 0.2);
    color: #f60;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(13, 110, 253, 0.3);
}

.text-brand {
    color: #f60; /* أزرق فاتح ينور في الضلمة */
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* --- الزرار الزجاجي (Glass Button) --- */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-glass:hover {
    background: #f60;
    border-color: #f60;
    color: #fff;
    transform: translateX(5px);
}

/* --- كروت التقنية (Tech Cards) --- */
.tech-card {
    background: rgba(255, 255, 255, 0.05); /* شفاف */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(77, 163, 255, 0.3);
}

.tech-card h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tech-card p {
    color: #aaa;
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

/* الأيقونة المظلمة */
.icon-box-dark {
    width: 50px;
    height: 50px;
    background: #112240; /* أغمق من الخلفية */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f60;
    font-size: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

/* عند الهوفر الأيقونة تنور */
.tech-card:hover .icon-box-dark {
    background: #f60;
    color: #fff;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.4);
}

/* --- إعدادات السكشن (نفس الخلفية الفخمة) --- */
.alaska-tech-standards {
    background: linear-gradient(135deg, #0a1930 0%, #060e1c 100%);
    position: relative;
    overflow: hidden;
}

/* --- النصوص --- */
.tech-badge {
    background: rgba(13, 110, 253, 0.2);
    color: #f60;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(13, 110, 253, 0.3);
}

.text-brand { color: #f60; }
.text-white-50 { color: rgba(255, 255, 255, 0.7) !important; }

/* --- كروت التقنية (Tech Cards) --- */
.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 25px; /* زودت البادينج شوية للراحة */
    border-radius: 15px;
    transition: all 0.3s;
    text-align: center; /* (1) توسيط الكلام */
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(77, 163, 255, 0.3);
}

/* الأيقونة المظلمة */
.icon-box-dark {
    width: 60px; /* كبرتها شوية */
    height: 60px;
    background: #112240;
    border-radius: 50%; /* خليتها دايرة كاملة أشيك */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f60;
    font-size: 24px;
    margin: 0 auto 20px; /* (2) المارجن auto بيسنتر الأيقونة */
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tech-card:hover .icon-box-dark {
    background: #f60;
    color: #fff;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
    transform: scale(1.1);
}

/* العناوين داخل الكارت */
.tech-card h4 {
    color: #fff;
    font-size: 20px; /* كبرت العنوان */
    font-weight: 700;
    margin-bottom: 15px;
}

/* النصوص الوصفية (التعديل المهم) */
.tech-card p {
    color: #ccc; /* فتحت اللون سنة عشان القراءة */
    font-size: 16px; /* (3) كبرت الخط لـ 16px */
    line-height: 1.7; /* مسافات بين السطور للقراءة المريحة */
    margin: 0;
}

/* الزرار الزجاجي */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-glass:hover {
    background: #f60;
    border-color: #f60;
    color: #fff;
    transform: translateY(-3px);
}
/* --- سكشن السلايدر --- */

/* --- سكشن كتالوج كريازي --- */
.kyriazi-full-catalog {
    background-color: #f9fbfd;
    overflow: hidden;
}

/* --- كارت الكتالوج (Split Card) --- */
.catalog-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden; /* مهم عشان الزوم */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eef2f7;
    min-height: 400px; /* ارتفاع مناسب */
    transition: all 0.3s ease;
}

.catalog-card:hover {
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.1);
    transform: translateY(-5px);
}

/* عكس الاتجاه في الكروت الزوجية (Reverse Layout) */
.catalog-card.reverse-layout {
    flex-direction: row-reverse;
}

/* --- جزء الصورة --- */
.card-image {
    flex: 1; /* تاخد نص المساحة */
    position: relative;
    overflow: hidden;
    min-height: 300px; /* للموبايل */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* الصورة تملأ المكان بدون مط */
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* حركة الزوم عند الهوفر */
.catalog-card:hover .card-image img {
    transform: scale(1.08);
}

/* --- جزء التفاصيل (الكلام) --- */
.card-details {
    flex: 1.2; /* تاخد مساحة أكبر شوية من الصورة */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* أيقونة البادج العائمة */
.icon-badge {
    position: absolute;
    top: 30px;
    left: 30px; /* على الشمال في العربي */
    width: 50px;
    height: 50px;
    background: #eef7ff;
    color: #f60;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.card-details h3 {
    font-size: 22px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 10px;
}

.card-details p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

/* قائمة المميزات */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap; /* عشان لو الكلام كتير ينزل سطر */
    gap: 15px;
}

.features-list li {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: #28a745; /* أخضر */
    margin-left: 8px;
    font-size: 16px;
}

/* تعديل زرار البوتستراب */
.btn-outline-primary {
    border-width: 2px;
    font-weight: bold;
}

.btn-outline-primary:hover {
    background-color: #f60;
    border-color: #f60;
}

/* --- تظبيط الموبايل --- */
@media (max-width: 992px) {
    .catalog-card, 
    .catalog-card.reverse-layout {
        flex-direction: column; /* الصورة فوق والكلام تحت */
        height: auto;
    }

    .card-image {
        height: 250px; /* ارتفاع ثابت للصورة في الموبايل */
        flex: none;
    }

    .card-details {
        padding: 30px 20px;
        flex: none;
    }

    .icon-badge {
        top: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* --- سكشن الكتالوج --- */
.kyriazi-full-catalog {
    background-color: #f9fbfd;
}

/* --- تصميم الكارت العمودي (Vertical Card) --- */
.catalog-card {
    display: flex;
    flex-direction: column; /* الصورة فوق والكلام تحت */
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eef2f7;
    height: 100%; /* عشان الكروت كلها تبقى طول واحد */
    transition: all 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.12);
    border-color: #b3d7ff;
}

/* --- الصورة --- */
.card-image {
    height: 220px; /* ارتفاع ثابت للصورة */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-card:hover .card-image img {
    transform: scale(1.1); /* زوم عند الهوفر */
}

/* أيقونة فوق الصورة */
.overlay-icon {
    position: absolute;
    bottom: 10px;
    right: 10px; /* يمين عشان العربي */
    width: 45px;
    height: 45px;
    background: #fff;
    color: #f60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

/* --- التفاصيل --- */
/* --- تعديل نهائي لمسافات الكروت --- */

/* --- تعديلات CSS نهائية لضبط المسافات --- */

.catalog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eef2f7;
    /* التعديل هنا: خلينا الطول أوتوماتيك بدل 100% */
    height: auto !important; 
    transition: all 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.12);
    border-color: #b3d7ff;
}

/* 2. تفاصيل الكارت */
.card-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    /* التعديل هنا: لغينا أي تمدد للكلام */
    height: auto !important; 
    flex-grow: 0 !important; 
}

/* باقي التنسيقات زي ما هي */
.text-group {
    margin-bottom: 0;
}

.card-details h3 {
    font-size: 19px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.card-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.features-list li {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: #28a745;
    margin-left: 8px;
}

/* الزرار: مسافة صغيرة تحته وخلاص */
.card-details .btn {
    margin-top: 20px !important; /* مسافة من فوق */
    margin-bottom: 0 !important; /* مفيش مسافة كبيرة تحته */
    border-width: 2px;
    font-weight: bold;
    font-size: 14px;
    padding: 10px;
}
/* الزرار */
.btn-outline-primary {
    border-width: 2px;
    font-weight: bold;
    font-size: 14px;
    padding: 10px;
}

.btn-outline-primary:hover {
    background-color: #f60;
    border-color: #f60;
}

/* --- سكشن المواصفات الداكن (ستايل الصورة المرفقة) --- */
.kyriazi-dark-features {
    background-color: #051024; /* لون الخلفية الكحلي الغامق */
    position: relative;
}

.text-orange {
    color: #ff5722 !important; /* البرتقالي المميز */
}

.text-light-gray {
    color: #a0aec0; /* لون رمادي فاتح للنصوص */
    line-height: 1.6;
}

/* تصميم الكارت الداكن */
.dark-feature-card {
    background-color: #0b1a36; /* درجة أفتح قليلاً من الخلفية */
    border: 1px solid #1a2c4e; /* برواز خفيف جداً */
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dark-feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff5722; /* عند اللمس البرواز يبقى برتقالي */
}

/* أيقونة الكارت */
.icon-box-orange {
    color: #ff5722;
    font-size: 28px;
    margin-bottom: 15px;
}

/* تعديل الزرار في الخلفية الغامقة */
.btn-outline-light:hover {
    background-color: #ff5722;
    border-color: #ff5722;
    color: #fff;
}

/* --- تنسيقات اللوجو (الشعار) --- */

/* 1. لوجو الهيدر (القائمة العلوية) */
.header-logo {
    max-height: 75px; /* ارتفاع أقصى عشان القائمة متبقاش عريضة زيادة */
    width: auto;      /* العرض يظبط نفسه تلقائي عشان الصورة متمطش */
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05); /* حركة تكبير بسيطة لما تقف عليه */
}

/* تظبيط للموبايل عشان لو اللوجو عريض أوي */
@media (max-width: 992px) {
    .header-logo {
        max-height: 45px; /* نصغره سنة في الموبايل */
    }
}

/* 2. لوجو الفوتر (أسفل الصفحة) */
.footer-logo {
    max-width: 269px; /* العرض الأقصى في الفوتر (خليه عريض براحته) */
    height: auto;     /* الطول يظبط نفسه */
    display: block;   /* عشان يجي في سطر لوحده */
    filter: brightness(0) invert(1); /* اختياري: بيخلي اللوجو أبيض لو خلفية الفوتر غامقة */
    /* لو اللوجو بتاعك أصلاً ألوانه فاتحة امسح السطر بتاع filter ده */
}

/* --- سكشن الأجهزة الزجاجي (The Interactive Glass) --- */
.creative-devices-hub {
    background-color: #f3f5f9;
}

/* الكارت الرئيسي (الإطار) */
.glass-device-card {
    position: relative;
    height: 420px; /* ارتفاع ثابت عشان الصور تبان */
    border-radius: 20px;
    overflow: hidden; /* عشان الصورة متطلعش بره */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: default;
}

/* 1. الصورة الخلفية */
.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease; /* زوم بطيء وناعم */
}

/* 2. الطبقة الغامقة (Overlay) */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    z-index: 1;
}

/* حركة الزوم للصورة عند الهوفر */
.glass-device-card:hover .card-bg-img {
    transform: scale(1.1);
}

.glass-device-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

/* 3. اللوح الزجاجي (The Glass Panel) */
.glass-panel {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9); /* أبيض شفاف */
    backdrop-filter: blur(10px); /* تمويه الخلفية */
    border-radius: 15px;
    padding: 40px 20px 20px; /* بادينج كبير فوق عشان الأيقونة */
    z-index: 2;
    text-align: center;
    border-bottom: 4px solid #0d6efd; /* خط ملون تحت */
}

/* الأيقونة العائمة */
.floating-icon {
    position: absolute;
    top: -35px; /* تطلع نصها بره */
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: #0d6efd; /* لون أزرق */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
    border: 4px solid #fff; /* برواز أبيض يفصلها عن الصورة */
    transition: all 0.4s ease;
}

.glass-device-card:hover .floating-icon {
    background: #fff;
    color: #0d6efd;
    transform: translateX(-50%) rotateY(360deg); /* تلف لفة كاملة */
}

/* العنوان */
.glass-panel h3 {
    font-size: 20px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

/* الخط الفاصل */
.separator-line {
    width: 40px;
    height: 3px;
    background: #e0e0e0;
    margin: 0 auto 15px;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.glass-device-card:hover .separator-line {
    width: 80px; /* يطول لما تقف عليه */
    background: #0d6efd;
}

/* 4. قائمة الماركات (عمودين) */
.brands-list-check {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* يسمح بالتكسير لسطور */
    text-align: right; /* محاذاة لليمين */
}

.brands-list-check li {
    width: 50%; /* كل واحد ياخد نص المساحة (عمودين) */
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.brands-list-check li i {
    color: #28a745; /* علامة صح خضراء */
    margin-left: 6px;
    font-size: 12px;
}

/* تظبيط الموبايل */
@media (max-width: 768px) {
    .glass-device-card {
        height: auto; /* ارتفاع أوتوماتيك */
        padding-bottom: 20px;
    }
    
    .glass-panel {
        position: relative; /* ميبقاش عايم في الموبايل عشان المساحة */
        bottom: auto;
        left: auto;
        right: auto;
        margin: 40px 15px 0; /* مسافات خارجية */
    }
    
    .card-bg-img {
        height: 200px; /* ارتفاع الصورة بس */
        position: relative;
    }
    
    .card-overlay {
        height: 200px;
    }
}
/* --- إضافة لدعم أيقونات SVG --- */

/* الأيقونة العائمة (تعديل للمقاس) */
.floating-icon.svg-icon {
    padding: 12px; /* مساحة داخلية عشان الرسمة متلزقش في الحواف */
}

/* تنسيق الـ SVG نفسه */
.floating-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff; /* لون الرسمة أبيض */
    transition: all 0.4s ease;
}

/* عند الهوفر، الرسمة تقلب أزرق */
.glass-device-card:hover .floating-icon svg {
    fill: #0d6efd;
    transform: rotateY(360deg); /* حركة اللفة */
}