/* ==========================================================================
   الهنداوي للتكييف - تصميم نموذج AirFix الفاخر
   ========================================================================== */

/* 1. المتغيرات ولوحة الألوان الأساسية */
:root {
    --bg-warm: #E8EDF2;              /* اللون الرمادي المزرق الهادئ والأنيق (Cool Slate Neutral) */
    --color-dark: #000000;             /* اللون الأسود الصريح البحت للعناوين والنصوص */
    --color-dark-hover: #000000;       /* لون التحويم الأسود الصريح */
    --color-brand-blue: #1A479C;       /* لون اللوجو الأزرق الطبيعي للأزرار والهوية */
    --color-brand-blue-hover: #14397E; /* لون تحويم الأزرار الزرقاء */
    --color-brand-blue-glow: rgba(26, 71, 156, 0.28); /* توهج وظل الأزرار الزرقاء */
    --color-text-main: #000000;        /* لون النصوص العامة أسود فاحم صريح */
    --color-text-muted: #6b635c;       /* لون النصوص الفرعية */
    --color-gold: #ffc850;             /* لون النجوم الذهبية */
    --color-royal-blue: #1A479C;       /* اللون الأزرق الملكي المتطابق مع الشعار */
    --color-royal-glow: rgba(26, 71, 156, 0.35); /* تأثير الوهج الأزرق */
    --font-primary: 'Almarai', 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    --border-radius-card: 12px;        /* استدارة حواف كارت الهيرو (مقللة وأكثر حدة وأناقة) */
    --container-max-width: 1540px;      /* عرض الكونتينر الموسع */
}

/* 2. إعادة التعيين والخطوط العامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   تخصيص وترفيع شريط التمرير (Custom Slim Scrollbar)
   ========================================================================== */
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-dark, #000000) #E8EDF2;
}

/* دعم متصفحات كروم وإيدج وسفاري (Webkit) */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #E8EDF2;
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-dark, #000000);
    border-radius: 10px;
    transition: background-color 0.22s ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-royal-blue, #1705A5);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* تنسيقات مكتبة لينس للتمرير فائق السلاسة (Lenis Smooth Scroll) */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-warm);
    color: var(--color-text-main);
    direction: rtl;
    text-align: right;
    min-height: 100vh;
    overflow-x: clip;
}

.site-layout {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-warm);
}

/* ==========================================================================
   3. الشريط العلوي الداكن للتواصل (Top Contact Bar)
   ========================================================================== */
.top-contact-bar {
    width: 100%;
    background-color: var(--color-dark);
    color: #edebe5;
    padding: 8px 32px;
    font-size: 12.5px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    max-width: var(--container-max-width, 1540px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.address-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.address-mobile {
    display: none;
}

.address-desktop {
    display: inline;
}

.top-bar-item i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.top-phone-link {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.top-phone-link i {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

.top-phone-link:hover {
    color: #1705A5;
}

.top-phone-link:hover i {
    color: #1705A5;
}

/* ==========================================================================
   4. شريط التنقل الرئيسي (Navbar)
   ========================================================================== */
.main-header {
    width: 100%;
    background-color: var(--bg-warm);
    padding: 16px 32px;
    position: sticky;
    top: 0;
    z-index: 850;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

/* حالة إخفاء الهيدر عند التمرير لأسفل */
.main-header.header-hidden {
    transform: translateY(-100%);
}

/* حالة ظهور الهيدر عند العودة والتمرير لأعلى */
.main-header.header-scrolled {
    background-color: #E6EBF0;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 32px;
}

.navbar-inner {
    max-width: var(--container-max-width, 1540px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* الشعار */
.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.nav-brand:hover {
    transform: scale(1.02);
}

.brand-logo-img {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
    /* الحفاظ على لون اللوجو الأزرق الطبيعي الأصلي بدون أي فلاتر تشويه */
    filter: none;
    transition: transform 0.25s ease, opacity 0.25s ease, height 0.25s ease;
}

.main-header.header-scrolled .brand-logo-img {
    height: 46px;
}

.nav-brand:hover .brand-logo-img {
    filter: none;
    transform: scale(1.02);
}

/* روابط التنقل */
.nav-links-wrap {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: #45403c;
    font-size: 14.5px;
    font-weight: 600;
    transition: color 0.2s ease;
    padding: 4px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-dark);
}

/* زر حجز الخدمة وزر القائمة */
.nav-cta-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-book-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-brand-blue, #1A479C);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 14px var(--color-brand-blue-glow, rgba(26, 71, 156, 0.28));
    transition: all 0.22s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-book-service:hover {
    background-color: var(--color-brand-blue-hover, #14397E);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(26, 71, 156, 0.38);
}

/* زر فتح القائمة (Hamburger Toggle Button) */
.nav-toggle-btn {
    display: none; /* مخفي على الديسكتوب ويظهر في الموبايل والتابلت */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.12);
    cursor: pointer;
    padding: 0;
    gap: 5px;
    transition: all 0.22s ease;
    flex-shrink: 0;
}

.nav-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.12);
    transform: scale(1.03);
}

.nav-toggle-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* تحول أيقونة الهامبرجر إلى علامة X عند الفتح */
.nav-toggle-btn.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle-btn.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle-btn.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   درج القائمة الجانبية للموبايل (Mobile Menu Drawer & Overlay)
   ========================================================================== */
body.menu-open {
    overflow: hidden;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 86vw);
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    background: #ffffff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 16px 18px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
    overflow: hidden; /* يمنع القائمة من تجاوز طول الشاشة نهائياً */
    box-sizing: border-box;
}

.mobile-menu-drawer.is-active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

/* ضبط دقيق لإزاحة التمرير للسكاشن عند النقر على روابط القائمة (Scroll Offset for Sticky Header) */
#about,
#services,
#transformations,
#process,
#reviews,
#blog,
#faq,
#book,
.about-overview-section,
.services-overview-section,
.transformation-overview-section,
.process-pin-track,
.reviews-overview-section,
.blog-overview-section,
.faq-overview-section,
.booking-overview-section {
    scroll-margin-top: 85px;
}

@media (max-width: 991px) {
    #about,
    #services,
    #transformations,
    #process,
    #reviews,
    #blog,
    #faq,
    #book,
    .about-overview-section,
    .services-overview-section,
    .transformation-overview-section,
    .process-pin-track,
    .reviews-overview-section,
    .blog-overview-section,
    .faq-overview-section,
    .booking-overview-section {
        scroll-margin-top: 70px;
    }
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0; /* ترويسة ثابتة في أعلى القائمة دائماً */
}

.drawer-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.drawer-brand .brand-logo-img {
    height: 50px;
    width: auto;
}

.drawer-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    font-size: 16px;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.drawer-close-btn:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #e53935;
}

/* قائمة الروابط القابلة للتمرير الداخلي في المنتصف */
.drawer-nav {
    flex: 1 1 auto; /* تتمدد وتتقلص بمرونة تامة حسب المساحة المتاحة للشاشة */
    min-height: 0;  /* ضروري لتمكين السكرول الداخلي في حاويات فليكس */
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    margin: 4px 0;
}

/* شريط تمرير داخلي رفيع جداً */
.drawer-nav::-webkit-scrollbar {
    width: 3px;
}

.drawer-nav::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 3px;
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: #3f3935;
    text-decoration: none;
    transition: all 0.2s ease;
}

.drawer-link i {
    font-size: 13.5px;
    width: 18px;
    text-align: center;
    color: var(--color-dark);
    opacity: 0.7;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.drawer-link:hover,
.drawer-link.active {
    background: var(--bg-warm);
    color: var(--color-dark);
}

.drawer-link:hover i,
.drawer-link.active i {
    opacity: 1;
    transform: scale(1.1);
}

/* أزرار أسفل القائمة: مثبتة 100% داخل الشاشة ولا تختفي أبداً */
.drawer-footer {
    padding-top: 12px;
    padding-bottom: max(6px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0; /* تضمن بقاء الأزرار داخل الشاشة مهما كان ارتفاع الموبايل */
    background: #ffffff;
}

.drawer-phone-card {
    background: var(--bg-warm);
    padding: 8px 12px;
    border-radius: 9px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.drawer-phone-label {
    font-size: 10.5px;
    color: #756d65;
    display: block;
    margin-bottom: 2px;
    font-weight: 500;
}

.drawer-phone-btn {
    color: var(--color-dark);
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    transition: color 0.2s ease;
}

.drawer-phone-btn:hover {
    color: #1705A5;
}

.drawer-btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--color-brand-blue, #1A479C);
    color: #ffffff;
    padding: 10.5px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px var(--color-brand-blue-glow, rgba(26, 71, 156, 0.28));
    transition: all 0.22s ease;
}

.drawer-btn-book:hover {
    background: var(--color-brand-blue-hover, #14397E);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(26, 71, 156, 0.38);
}

/* تكيف فائق الذكاء على الشاشات ذات الارتفاع القصير أو الوضع الأفقي (Landscape) */
@media (max-height: 600px) {
    .mobile-menu-drawer {
        padding: 12px 14px;
    }
    .drawer-header {
        padding-bottom: 8px;
    }
    .drawer-nav {
        padding: 6px 0;
    }
    .drawer-link {
        padding: 6px 10px;
        font-size: 13px;
        gap: 10px;
    }
    .drawer-footer {
        padding-top: 8px;
        gap: 6px;
    }
    .drawer-phone-card {
        padding: 6px 10px;
    }
    .drawer-btn-book {
        padding: 8px 12px;
        font-size: 12.5px;
    }
}


/* ==========================================================================
   5. سكشن الهيرو المؤطر (Framed Hero Card)
   ========================================================================== */
.hero-framed-section {
    width: 100%;
    padding: 0 20px 24px 20px;
    display: flex;
    justify-content: center;
    flex: 1;
}

.hero-frame-card {
    width: 100%;
    max-width: var(--container-max-width, 1540px);
    min-height: calc(100vh - 138px);
    min-height: calc(100dvh - 138px);
    border-radius: var(--border-radius-card);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 16px 36px -8px rgba(28, 24, 22, 0.12);
}

/* صورة الخلفية مع التعتيم السينمائي */
.hero-bg-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: object-position 0.3s ease;
}

.hero-dim-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.36) 0%,
        rgba(0, 0, 0, 0.30) 45%,
        rgba(0, 0, 0, 0.68) 100%
    );
    transition: background 0.3s ease;
}

/* المحتوى المركزي لكارت الهيرو */
.hero-center-box {
    position: relative;
    z-index: 5;
    max-width: 840px;
    width: 100%;
    margin: auto 0;
    padding: 38px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* المجموعات العلوية والسفلية لتقسيم المحتوى */
.hero-top-group,
.hero-bottom-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* ==========================================================================
   ظهور محتوى سكشن الهيرو بالتتالي بعد التحميل بطريقة البلور (Hero Sequential Blur-In)
   ========================================================================== */
.hero-blur-item {
    opacity: 0;
    filter: blur(18px);
    -webkit-filter: blur(18px);
    transform: translateY(26px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                -webkit-filter 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, filter, transform;
}

/* حالة اكتمال الظهور بالبلور */
.hero-revealed .hero-blur-item {
    opacity: 1;
    filter: blur(0px);
    -webkit-filter: blur(0px);
    transform: translateY(0);
}

/* التتالي الزمني لعناصر الهيرو */
.hero-revealed .hero-rating-badge.hero-blur-item {
    transition-delay: 0.08s;
}

.hero-revealed .hero-title.hero-blur-item {
    transition-delay: 0.24s;
}

.hero-revealed .hero-subtitle.hero-blur-item {
    transition-delay: 0.40s;
}

.hero-revealed .hero-btn-group.hero-blur-item {
    transition-delay: 0.56s;
}

.hero-revealed .hero-marquee-bar.hero-blur-item {
    transition-delay: 0.72s;
}

/* بعد انتهاء الأنيميشن، إزالة الفلتر تماماً لضمان أقصى حدة للنصوص وتأثيرات التحويم */
.hero-animation-complete .hero-blur-item {
    filter: none;
    -webkit-filter: none;
    will-change: auto;
}

/* احترام تفضيل تقليل الحركة */
@media (prefers-reduced-motion: reduce) {
    .hero-blur-item {
        opacity: 1 !important;
        filter: none !important;
        -webkit-filter: none !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   ظهور عنوان ونصوص كل سكشن بطريقة البلور عند الوصول إليها (Section Scroll Blur-In)
   ========================================================================== */
.section-blur-title,
.section-blur-text,
.section-blur-badge {
    opacity: 0;
    filter: blur(18px);
    -webkit-filter: blur(18px);
    transform: translateY(24px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                -webkit-filter 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, filter, transform;
}

/* التتالي الزمني لعناصر رأس السكشن (Staggered Delays) */
.section-blur-group.is-revealed .section-blur-badge,
.section-blur-badge.is-revealed {
    transition-delay: 0.05s;
}

.section-blur-group.is-revealed .section-blur-title,
.section-blur-title.is-revealed {
    transition-delay: 0.18s;
}

.section-blur-group.is-revealed .section-blur-text,
.section-blur-text.is-revealed {
    transition-delay: 0.34s;
}

/* حالة اكتمال الرؤية عند وصول المستخدم للسكشن */
.section-blur-group.is-revealed .section-blur-badge,
.section-blur-group.is-revealed .section-blur-title,
.section-blur-group.is-revealed .section-blur-text,
.section-blur-badge.is-revealed,
.section-blur-title.is-revealed,
.section-blur-text.is-revealed {
    opacity: 1;
    filter: blur(0px);
    -webkit-filter: blur(0px);
    transform: translateY(0);
}

/* بعد اكتمال الحركة، تفريغ الفلتر تماماً للحفاظ على أقصى حدة للنصوص */
.section-blur-group.is-revealed-done .section-blur-badge,
.section-blur-group.is-revealed-done .section-blur-title,
.section-blur-group.is-revealed-done .section-blur-text,
.section-blur-badge.is-revealed-done,
.section-blur-title.is-revealed-done,
.section-blur-text.is-revealed-done {
    filter: none;
    -webkit-filter: none;
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
    .section-blur-title,
    .section-blur-text,
    .section-blur-badge {
        opacity: 1 !important;
        filter: none !important;
        -webkit-filter: none !important;
        transform: none !important;
        transition: none !important;
    }
}

/* شارة التقييم بالنجوم بخلفية بلور زجاجية وبوردر ريديس مقلل */
.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    padding: 7px 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    max-width: 100%;
    transition: transform 0.2s ease;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--color-gold);
    font-size: 11.5px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.rating-text {
    color: #ffffff;
    font-size: clamp(12px, 1.1vw, 13.5px);
    font-weight: 700;
    letter-spacing: -0.2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* العنوان الرئيسي */
.hero-title {
    font-size: clamp(26px, 4.3vw, 54px);
    font-weight: 800;
    line-height: 1.48;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    letter-spacing: -0.6px;
    text-wrap: balance;
}

.hero-br-desktop {
    display: block;
}

/* النص الفرعي */
.hero-subtitle {
    font-size: clamp(13.5px, 1.25vw, 16.5px);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.94);
    max-width: 680px;
    margin-bottom: 28px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    text-wrap: pretty;
}

/* أزرار الإجراء (CTA Buttons) */
.hero-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    width: 100%;
}

/* الزر الداكن المصمت */
.btn-hero-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-brand-blue, #1A479C);
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 700;
    padding: 12.5px 28px;
    border-radius: 9px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(26, 71, 156, 0.35);
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-hero-solid:hover {
    background-color: var(--color-brand-blue-hover, #14397E);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 71, 156, 0.45);
}

/* الزر الزجاجي النصف شفاف */
.btn-hero-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 700;
    padding: 12.5px 28px;
    border-radius: 9px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-hero-glass:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   6. شريط المميزات السفلي المتحرك (Ticker / Marquee) بخلفية بلور زجاجية
   ========================================================================== */
.hero-marquee-bar {
    position: relative;
    width: 100%;
    margin-top: auto;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 14px 0;
    overflow: hidden;
    z-index: 10;
    user-select: none;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeRTL 28s linear infinite;
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .hero-marquee-bar:hover .marquee-track {
        animation-play-state: paused;
    }
}

.marquee-segment {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-left: 28px;
    white-space: nowrap;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.marquee-segment i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

/* حركة الماركي اللانهائية لليمين إلى اليسار (RTL) */
@keyframes marqueeRTL {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

/* ==========================================================================
   7. التجاوب مع الشاشات (Responsive Design)
   ========================================================================== */

/* 1. الشاشات المتوسطة والأجهزة اللوحية (Tablets & Medium Screens <= 992px) */
@media (max-width: 992px) {
    .top-contact-bar {
        padding: 8px 16px;
        font-size: 12px;
    }

    .main-header {
        padding: 14px 20px;
    }

    .nav-links-wrap {
        display: none; /* إخفاء الروابط المركزية على الشاشات الأصغر لتوفير المساحة */
    }

    .nav-toggle-btn {
        display: flex; /* إظهار زر فتح القائمة الجانبية للموبايل والتابلت */
    }

    .hero-framed-section {
        padding: 0 16px 20px 16px;
    }

    .hero-frame-card {
        min-height: calc(100dvh - 120px);
        min-height: calc(100svh - 120px);
    }

    .hero-bg-photo {
        object-position: 68% center;
    }

    .hero-center-box {
        padding: 30px 18px 24px;
    }

    .hero-title {
        font-size: clamp(26px, 4.6vw, 40px);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 14.5px;
        max-width: 580px;
        margin-bottom: 24px;
    }

    .hero-marquee-bar {
        padding: 12px 0;
    }

    .marquee-segment {
        font-size: 13px;
        gap: 22px;
        padding-left: 22px;
    }
}

/* 2. الشاشات الصغيرة والهواتف الكبيرة (Small Tablets & Phablets <= 768px) */
@media (max-width: 768px) {
    .hero-frame-card {
        min-height: calc(100dvh - 110px);
        min-height: calc(100svh - 110px);
    }

    .hero-bg-photo {
        object-position: 84% center;
    }

    .hero-dim-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.42) 0%,
            rgba(0, 0, 0, 0.36) 45%,
            rgba(0, 0, 0, 0.70) 100%
        );
    }

    /* المحتوى متمركز في الوسط مع هوامش متوازنة */
    .hero-center-box {
        margin: auto 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 18px 24px;
        width: 100%;
    }

    .hero-top-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-bottom-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(23px, 4.8vw, 32px);
        line-height: 1.62;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 13px;
        line-height: 1.62;
        max-width: 520px;
        margin-bottom: 20px;
    }

    .btn-hero-solid,
    .btn-hero-glass {
        padding: 11px 20px;
        font-size: 13.5px;
    }
}

/* 3. الهواتف الذكية (Mobile Devices <= 640px) */
@media (max-width: 640px) {
    .top-contact-bar {
        padding: 6px 12px;
        font-size: 11px;
    }

    .top-bar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .address-item {
        display: flex;
        align-items: center;
        gap: 5px;
        min-width: 0;
        flex: 1;
    }

    .address-item i {
        font-size: 10.5px;
    }

    .address-desktop {
        display: none;
    }

    .address-mobile {
        display: inline;
    }

    .phone-item {
        flex-shrink: 0;
    }

    .top-phone-link {
        font-size: 11px;
        gap: 5px;
    }

    .top-phone-link i {
        font-size: 10px;
    }

    .main-header {
        padding: 12px 16px;
    }

    .main-header.header-scrolled {
        padding: 10px 16px;
    }

    .brand-logo-img {
        height: 46px;
    }

    .main-header.header-scrolled .brand-logo-img {
        height: 40px;
    }

    .btn-book-service {
        padding: 7.5px 14px;
        font-size: 12.5px;
    }

    .nav-toggle-btn {
        width: 36px;
        height: 36px;
    }

    .nav-toggle-btn span {
        width: 18px;
    }

    .hero-framed-section {
        padding: 0 10px 14px 10px;
    }

    .hero-frame-card {
        border-radius: 10px;
        min-height: calc(100dvh - 105px);
        min-height: calc(100svh - 105px);
    }

    .hero-bg-photo {
        object-position: 88% center;
    }

    .hero-dim-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.38) 40%,
            rgba(0, 0, 0, 0.72) 100%
        );
    }

    .hero-br-desktop {
        display: block;
    }

    /* توسيط المحتوى بالكامل في منتصف كارت الهيرو */
    .hero-center-box {
        margin: auto 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 14px 20px;
        width: 100%;
    }

    .hero-top-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-bottom-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-rating-badge {
        padding: 5px 11px;
        margin-bottom: 12px;
        gap: 5px;
    }

    .rating-stars {
        font-size: 9.5px;
    }

    .rating-text {
        font-size: 11.5px;
    }

    .hero-title {
        font-size: clamp(20px, 5.5vw, 26px);
        line-height: 1.68;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 12px;
        line-height: 1.58;
        margin-bottom: 18px;
        color: rgba(255, 255, 255, 0.92);
        max-width: 440px;
    }

    .hero-btn-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 9px;
    }

    .btn-hero-solid,
    .btn-hero-glass {
        width: 100%;
        min-height: 42px;
        padding: 10px 16px;
        font-size: 13px;
    }

    .hero-marquee-bar {
        padding: 10px 0;
    }

    .marquee-segment {
        font-size: 12px;
        gap: 16px;
        padding-left: 16px;
    }

    .marquee-segment i {
        font-size: 8.5px;
    }
}

/* 4. الهواتف ذات الشاشات الصغيرة جداً (Very Small Mobiles <= 380px) */
@media (max-width: 380px) {
    .top-contact-bar {
        padding: 5px 8px;
        font-size: 10px;
    }

    .top-phone-link {
        font-size: 10px;
        gap: 4px;
    }

    .address-item {
        gap: 4px;
    }

    .main-header {
        padding: 10px 12px;
    }

    .brand-logo-img {
        height: 42px;
    }

    .main-header.header-scrolled .brand-logo-img {
        height: 36px;
    }

    .btn-book-service {
        padding: 6px 10px;
        font-size: 11.5px;
    }

    .nav-toggle-btn {
        width: 34px;
        height: 34px;
    }

    .nav-toggle-btn span {
        width: 16px;
    }

    .hero-framed-section {
        padding: 0 6px 10px 6px;
    }

    .hero-frame-card {
        border-radius: 8px;
    }

    .hero-bg-photo {
        object-position: 90% center;
    }

    .hero-center-box {
        padding: 18px 8px 14px;
    }

    .hero-rating-badge {
        padding: 4px 8px;
        margin-bottom: 8px;
    }

    .rating-text {
        font-size: 10.5px;
    }

    .hero-title {
        font-size: 18.5px;
        line-height: 1.62;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .hero-btn-group {
        max-width: 100%;
        gap: 7px;
    }

    .btn-hero-solid,
    .btn-hero-glass {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .hero-marquee-bar {
        padding: 8px 0;
    }

    .marquee-segment {
        font-size: 11px;
        gap: 12px;
        padding-left: 12px;
    }
}

/* 5. الوضع الأفقي للهواتف (Landscape Mode on Mobile Devices) */
@media (max-height: 520px) and (orientation: landscape) {
    .hero-frame-card {
        min-height: auto;
    }

    .hero-center-box {
        justify-content: center;
        padding: 14px 16px;
        gap: 10px;
    }

    .hero-rating-badge {
        margin-bottom: 6px;
        padding: 4px 10px;
    }

    .hero-title {
        font-size: 19px;
        margin-bottom: 5px;
    }

    .hero-subtitle {
        font-size: 11.5px;
        line-height: 1.45;
        margin-bottom: 8px;
        max-width: 580px;
    }

    .hero-btn-group {
        flex-direction: row;
        width: auto;
        gap: 10px;
    }

    .btn-hero-solid,
    .btn-hero-glass {
        width: auto;
        min-height: 36px;
        padding: 7px 16px;
        font-size: 12px;
    }

    .hero-marquee-bar {
        padding: 8px 0;
    }
}

/* ==========================================================================
   8. سكشن من نحن والأرقام القياسية (About & Social Proof Section)
   ========================================================================== */
.about-overview-section {
    width: 100%;
    padding: 10px 20px 38px 20px;
    display: flex;
    justify-content: center;
}

.about-frame-card {
    width: 100%;
    max-width: var(--container-max-width, 1540px);
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 40px -12px rgba(28, 24, 22, 0.07);
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 1. شريط الشركاء والعلامات المعتمدة (Trust & Brand Partners) */
.trust-partners-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.trust-badge-label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 700;
    color: #524b45;
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-badge-label i {
    color: #10b981;
    font-size: 15px;
}

/* حاوية شريط الأخبار المتحرك مع الشادو يمين وشمال (Ticker Wrapper with Fade Shadows) */
.brand-ticker-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
    padding: 4px 0;
    /* قناع التلاشي التدريجي للطرفين */
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 1) 6%,
        rgba(0, 0, 0, 1) 94%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 1) 6%,
        rgba(0, 0, 0, 1) 94%,
        transparent 100%
    );
}

/* شادو التلاشي اليمين واليسار المتقن */
.brand-ticker-wrapper::before,
.brand-ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 3;
    pointer-events: none;
}

/* الشادو الأيمن */
.brand-ticker-wrapper::before {
    right: 0;
    background: linear-gradient(
        to left,
        #ffffff 0%,
        rgba(255, 255, 255, 0.85) 45%,
        rgba(255, 255, 255, 0) 100%
    );
}

/* الشادو الأيسر */
.brand-ticker-wrapper::after {
    left: 0;
    background: linear-gradient(
        to right,
        #ffffff 0%,
        rgba(255, 255, 255, 0.85) 45%,
        rgba(255, 255, 255, 0) 100%
    );
}

/* مسار التكرار اللانهائي لشريط الأخبار */
.brand-ticker-track {
    display: flex;
    width: max-content;
    animation: brandTickerScroll 24s linear infinite;
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .brand-ticker-wrapper:hover .brand-ticker-track {
        animation-play-state: paused;
    }
}

.brand-ticker-segment {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 14px;
}

@keyframes brandTickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.brand-logo-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--bg-warm);
    border-radius: 9px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    transition: all 0.22s ease;
    user-select: none;
    cursor: default;
}

.brand-logo-item:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.brand-svg-icon {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.brand-real-logo {
    height: 22px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    transition: transform 0.22s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

.brand-logo-item:hover .brand-svg-icon,
.brand-logo-item:hover .brand-real-logo {
    transform: scale(1.08);
}

.brand-text-group {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
}

.brand-logo-name {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #000000;
}

.brand-sub {
    font-size: 11px;
    font-weight: 700;
    color: #7a726a;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
    padding-right: 5px;
    margin-right: 2px;
}

/* 2. شبكة من نحن والرسالة (Who We Are & Mission Split) */
.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.32fr;
    gap: 44px;
    align-items: center;
}

/* العمود الأيمن: من نحن */
.about-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.tag-dot {
    width: 7px;
    height: 7px;
    background-color: #1705A5;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(23, 5, 165, 0.6);
}

.about-section-title {
    font-size: clamp(25px, 2.6vw, 36px);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.58;
    margin-bottom: 18px;
    letter-spacing: -0.4px;
}

.about-description {
    font-size: 15px;
    line-height: 1.78;
    color: #554e48;
    margin-bottom: 24px;
    max-width: 520px;
}

.btn-about-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-brand-blue, #1A479C);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 9px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 14px var(--color-brand-blue-glow, rgba(26, 71, 156, 0.28));
    transition: all 0.22s ease;
}

.btn-about-action:hover {
    background-color: var(--color-brand-blue-hover, #14397E);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 71, 156, 0.38);
}

.btn-about-action i {
    font-size: 12px;
    transition: transform 0.22s ease;
}

.btn-about-action:hover i {
    transform: translateX(-4px);
}

/* العمود الأيسر: بطاقة الاقتباس */
.mission-statement-card {
    position: relative;
    background: #E8EDF2;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 34px 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 8px 24px -6px rgba(28, 24, 22, 0.04);
}

.quote-icon-wrap {
    font-size: 24px;
    color: #1705A5;
    opacity: 0.95;
}

.mission-quote-text {
    font-size: clamp(16.5px, 1.45vw, 20.5px);
    font-weight: 700;
    line-height: 1.78;
    letter-spacing: -0.2px;
}

.quote-highlight,
.quote-muted {
    color: var(--color-dark);
    font-weight: 700;
    display: inline;
}

/* تأثير البلور التدريجي للكلمات مع التمرير (Scroll Blur Reveal) */
.blur-word {
    display: inline-block;
    opacity: 0.18;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    color: #a8a096;
    transform: translateZ(0);
    transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                -webkit-filter 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.32s ease;
    will-change: opacity, filter;
    margin: 0 1px;
}

/* النص بالكامل باللون الأسود الفاحم عند كشفه */
.blur-word.is-revealed,
.blur-word.is-muted.is-revealed {
    opacity: 1;
    filter: blur(0px);
    -webkit-filter: blur(0px);
    color: var(--color-dark);
    font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
    .blur-word {
        opacity: 1 !important;
        filter: none !important;
        -webkit-filter: none !important;
        color: inherit !important;
        transition: none !important;
    }
}

/* 3. شريط الأرقام القياسية والإحصائيات (Stats & Metrics Strip) */
.stats-metrics-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 36px;
    border-top: 1px dashed rgba(0, 0, 0, 0.14);
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    position: relative;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    left: -12px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.stat-number-wrap {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number {
    font-size: clamp(34px, 3.2vw, 44px);
    font-weight: 900;
    color: var(--color-dark);
    font-family: 'Cairo', var(--font-primary);
    letter-spacing: -1px;
}

.stat-symbol {
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 800;
    color: #1705A5;
}

.stat-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
    text-align: center;
}

.stat-desc {
    font-size: 12px;
    color: #857e77;
    line-height: 1.5;
    text-align: center;
    max-width: 240px;
}

/* ==========================================================================
   تجاوب سكشن من نحن والأرقام (About Section Responsive Queries)
   ========================================================================== */
@media (max-width: 992px) {
    .about-frame-card {
        padding: 36px 28px;
        gap: 32px;
    }

    .trust-partners-strip {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .trust-badge-label {
        justify-content: center;
        text-align: center;
    }

    .brand-ticker-wrapper {
        width: 100%;
    }

    .about-mission-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats-metrics-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 24px;
    }

    .stat-box:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .about-overview-section {
        padding: 4px 10px 24px 10px;
    }

    .about-frame-card {
        border-radius: 12px;
        padding: 24px 16px;
        gap: 26px;
    }

    .trust-partners-strip {
        padding-bottom: 20px;
        gap: 12px;
    }

    .trust-badge-label {
        font-size: 12px;
        white-space: normal;
        line-height: 1.4;
        justify-content: center;
        text-align: center;
    }

    .brand-ticker-wrapper::before,
    .brand-ticker-wrapper::after {
        width: 30px;
    }

    .brand-ticker-segment {
        gap: 10px;
        padding-left: 10px;
    }

    .brand-logo-item {
        padding: 4.5px 8px;
        gap: 6px;
    }

    .brand-svg-icon {
        width: 18px;
        height: 18px;
    }

    .brand-real-logo {
        height: 18px;
        max-width: 65px;
    }

    .brand-logo-name {
        font-size: 11px;
    }

    .brand-sub {
        font-size: 9.5px;
    }

    .about-section-title {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .about-description {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .btn-about-action {
        width: 100%;
        justify-content: center;
        padding: 11px 18px;
        font-size: 13.5px;
    }

    .mission-statement-card {
        padding: 20px 16px 18px;
        gap: 14px;
    }

    .mission-quote-text {
        font-size: 14.5px;
        line-height: 1.65;
    }

    .stats-metrics-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 14px;
        padding-top: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-symbol {
        font-size: 20px;
    }

    .stat-title {
        font-size: 12.5px;
    }

    .stat-desc {
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .about-frame-card {
        padding: 18px 12px;
        gap: 22px;
    }

    .stats-metrics-strip {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-number {
        font-size: 26px;
    }
}

/* ==========================================================================
   9. سكشن خدماتنا المتكاملة (Our Services Section)
   ========================================================================== */
.services-overview-section {
    width: 100%;
    max-width: 100%;
    padding: 10px 20px 48px 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.services-frame-card {
    width: 100%;
    max-width: var(--container-max-width, 1540px);
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 40px -12px rgba(28, 24, 22, 0.07);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    min-width: 0;
    box-sizing: border-box;
}

/* الحاوية ثنائية الأعمدة */
.services-layout-grid {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 48px;
    align-items: stretch;
    position: relative;
    width: 100%;
    min-width: 0;
}

/* العمود الأيمن المثبت */
.services-sidebar-col {
    position: relative;
    height: 100%;
    min-width: 0;
    width: 100%;
}

.services-sticky-wrap {
    position: -webkit-sticky;
    position: sticky;
    top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    min-width: 0;
    z-index: 10;
}

.services-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-dark);
    width: fit-content;
}

.services-main-title {
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.58;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}

.services-sidebar-desc {
    font-size: 14px;
    line-height: 1.72;
    color: #635b54;
    margin-bottom: 6px;
}

/* قائمة التبويبات التفاعلية */
.services-nav-tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 6px 0;
}

.service-nav-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: #635b54;
    text-decoration: none;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.22s ease;
    position: relative;
}

.tab-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.service-nav-tab i {
    font-size: 14px;
    width: 18px;
    text-align: center;
    opacity: 0.65;
    transition: all 0.2s ease;
}

.service-nav-tab:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-dark);
}

.service-nav-tab.is-active {
    background: var(--bg-warm);
    color: var(--color-dark);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-nav-tab.is-active .tab-indicator {
    background: #1705A5;
    box-shadow: 0 0 8px rgba(23, 5, 165, 0.6);
}

.service-nav-tab.is-active i {
    opacity: 1;
    color: var(--color-dark);
}

/* العمود الأيسر: مصفوفة الكروت المصورة */
.services-cards-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    min-width: 0;
}

.service-card-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px -8px rgba(28, 24, 22, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    scroll-margin-top: 36px;
    min-height: 520px;
    height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 24px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.service-card-image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-item:hover .service-card-img {
    transform: scale(1.03);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0.72) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* البطاقة الزجاجية البلورية العائمة (Pure Frosted Glass Blur) */
.service-glass-badge {
    position: relative;
    max-width: min(520px, 100%);
    width: fit-content;
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 16px;
    padding: 22px 24px 20px;
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24), inset 0 1px 1px rgba(255, 255, 255, 0.35);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    box-sizing: border-box;
}

.service-card-item:hover .service-glass-badge {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-3px);
}

.service-badge-title {
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
}

.service-badge-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

/* قائمة مهام ومميزات الخدمة بعلامة صح داخل مربع أبيض */
.service-tasks-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 6px 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.service-task-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: none;
}

/* المربع الأبيض مع علامة الصح */
.task-check-box {
    width: 18px;
    height: 18px;
    background: #ffffff;
    color: var(--color-dark);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    box-shadow: none;
}

.task-check-box i {
    font-weight: 900;
}

/* زر الإجراء داخل البطاقة الزجاجية (White Button) */
.service-badge-actions {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.btn-service-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand-blue, #1A479C);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px var(--color-brand-blue-glow, rgba(26, 71, 156, 0.28));
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.22s ease;
}

.btn-service-order:hover {
    background: var(--color-brand-blue-hover, #14397E);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 71, 156, 0.38);
}

/* شريط الطوارئ والاستجابة السريعة السفلي */
.services-emergency-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--bg-warm);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px 24px;
}

.emergency-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.emergency-pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
    animation: pulseGreen 2s infinite;
    flex-shrink: 0;
}

.emergency-text {
    font-size: 14px;
    color: #3b3530;
}

.emergency-text strong {
    color: var(--color-dark);
    font-weight: 800;
}

.emergency-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-brand-blue, #1A479C);
    color: #ffffff;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 14px var(--color-brand-blue-glow, rgba(26, 71, 156, 0.28));
    transition: all 0.22s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.emergency-phone-btn i {
    font-size: 13px;
    transition: transform 0.22s ease;
}

.emergency-phone-btn:hover {
    background-color: var(--color-brand-blue-hover, #14397E);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 71, 156, 0.38);
}

.emergency-phone-btn:hover i {
    transform: scale(1.12);
}

/* ==========================================================================
   تجاوب سكشن الخدمات المتكامل (Services Section Multi-Device Responsive System)
   ========================================================================== */

/* 1. الشاشات الكبيرة والمتوسطة (Laptops & Desktops: 1025px - 1280px) */
@media (max-width: 1280px) and (min-width: 1025px) {
    .services-frame-card {
        padding: 36px 28px;
        gap: 28px;
    }

    .services-layout-grid {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 32px;
    }

    .services-main-title {
        font-size: 28px;
    }

    .services-sidebar-desc {
        font-size: 13.5px;
    }

    .service-card-item {
        min-height: 500px;
        height: 500px;
        padding: 20px;
    }

    .service-glass-badge {
        max-width: min(480px, 100%);
        padding: 18px 20px 16px;
    }
}

/* 2. شاشات الآيباد والتابلت والشاشات المنقسمة (Tablets, iPads & Split Windows: <= 1024px) */
@media (max-width: 1024px) {
    .services-overview-section {
        padding: 8px 16px 36px 16px;
    }

    .services-frame-card {
        padding: 28px 20px;
        gap: 24px;
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .services-layout-grid {
        display: flex;
        flex-direction: column;
        gap: 22px;
        width: 100%;
        min-width: 0;
    }

    .services-sidebar-col {
        height: auto;
        width: 100%;
        min-width: 0;
    }

    .services-sticky-wrap {
        position: static;
        gap: 12px;
        width: 100%;
        min-width: 0;
    }

    .services-main-title {
        font-size: 26px;
    }

    .services-sidebar-desc {
        font-size: 13.5px;
        max-width: 650px;
        margin-bottom: 2px;
    }

    /* شبكة تبويبات الخدمات للشاشات اللوحية والمنقسمة (3 أعمدة في صفين) */
    .services-nav-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
        max-width: 100%;
        margin: 4px 0 0 0;
        padding: 0;
        box-sizing: border-box;
    }

    .services-nav-tabs::-webkit-scrollbar {
        display: none;
    }

    .service-nav-tab {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 7px;
        padding: 8px 12px;
        font-size: 12px;
        font-weight: 700;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.08);
        white-space: nowrap;
        width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }

    .service-nav-tab span:last-child {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }

    .service-nav-tab.is-active {
        background: var(--color-dark);
        color: #ffffff;
        border-color: var(--color-dark);
    }

    .service-nav-tab.is-active .tab-indicator {
        background: #1705A5;
        box-shadow: 0 0 8px rgba(23, 5, 165, 0.8);
    }

    .service-nav-tab.is-active i {
        color: #1705A5;
    }

    .services-cards-col {
        gap: 22px;
        width: 100%;
        min-width: 0;
    }

    .service-card-item {
        height: auto;
        min-height: 480px;
        border-radius: 16px;
        scroll-margin-top: 24px;
        align-items: stretch;
        padding: 16px;
        width: 100%;
        min-width: 0;
    }

    .service-glass-badge {
        width: 100%;
        max-width: 100%;
        padding: 18px 18px 16px;
        box-sizing: border-box;
    }

    .services-emergency-strip {
        padding: 16px 20px;
        flex-wrap: wrap;
        gap: 14px;
    }
}

/* 3. شاشات الهواتف الذكية (Mobile Screens: <= 640px) */
@media (max-width: 640px) {
    .services-overview-section {
        padding: 4px 6px 24px 6px;
    }

    .services-frame-card {
        border-radius: 14px;
        padding: 18px 10px 16px;
        gap: 16px;
    }

    .services-tag-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .services-main-title {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .services-sidebar-desc {
        font-size: 12.5px;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* شبكة تصنيفات وتبويبات الخدمات للموبايل: كل 2 جنب بعض وتحت بعض */
    .services-nav-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        width: 100%;
        max-width: 100%;
        margin: 6px 0 2px 0;
        padding: 0;
        box-sizing: border-box;
    }

    .service-nav-tab {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        padding: 8px 8px;
        font-size: 11px;
        font-weight: 700;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-sizing: border-box;
        width: 100%;
        min-width: 0;
    }

    .service-nav-tab .tab-indicator {
        width: 5px;
        height: 5px;
        flex-shrink: 0;
    }

    .service-nav-tab i {
        font-size: 11px;
        width: 13px;
        text-align: center;
        flex-shrink: 0;
    }

    .service-nav-tab span:last-child {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }

    .services-cards-col {
        gap: 14px;
    }

    /* كارت الخدمة والمربع المصغر المتناسق على الموبايل */
    .service-card-item {
        min-height: 410px;
        height: auto;
        border-radius: 14px;
        scroll-margin-top: 14px;
        padding: 10px;
        align-items: flex-start;
    }

    /* مربع محتوى الخدمة الزجاجي المصغر والأنيق بعرض مصغر */
    .service-glass-badge {
        padding: 10px 11px 9px;
        gap: 5px;
        border-radius: 10px;
        width: fit-content;
        max-width: 88%;
        box-sizing: border-box;
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.28);
    }

    .service-badge-title {
        font-size: 14px;
        line-height: 1.2;
    }

    .service-badge-desc {
        font-size: 11px;
        line-height: 1.4;
    }

    .service-tasks-list {
        gap: 3.5px;
        margin: 2px 0 3px 0;
    }

    .service-task-item {
        font-size: 10.5px;
        gap: 6px;
        line-height: 1.25;
    }

    .task-check-box {
        width: 13px;
        height: 13px;
        font-size: 7.5px;
        border-radius: 2.5px;
        flex-shrink: 0;
    }

    .service-badge-actions {
        margin-top: 2px;
        width: 100%;
    }

    .btn-service-order {
        padding: 7px 12px;
        font-size: 11.5px;
        font-weight: 800;
        width: 100%;
        border-radius: 6px;
        text-align: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .services-emergency-strip {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px 12px;
        text-align: center;
        border-radius: 10px;
    }

    .emergency-info {
        justify-content: center;
        gap: 8px;
    }

    .emergency-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .emergency-phone-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
        font-size: 13.5px;
        border-radius: 8px;
        box-sizing: border-box;
    }
}

/* 4. الشاشات الصغيرة جداً (Very Small Phones: <= 380px) */
@media (max-width: 380px) {
    .services-frame-card {
        padding: 14px 6px 12px;
    }

    .services-main-title {
        font-size: 18px;
        line-height: 1.45;
        margin-bottom: 8px;
    }

    .services-nav-tabs {
        gap: 4.5px;
    }

    .service-nav-tab {
        padding: 7px 5px;
        font-size: 9.8px;
        gap: 4px;
    }

    .service-nav-tab i {
        font-size: 9.5px;
        width: 11px;
    }

    .service-card-item {
        min-height: 390px;
        padding: 8px;
        align-items: flex-start;
    }

    .service-glass-badge {
        padding: 8px 9px 8px;
        gap: 4px;
        max-width: 90%;
        width: fit-content;
    }

    .service-badge-title {
        font-size: 13px;
    }

    .service-badge-desc {
        font-size: 10px;
        line-height: 1.35;
    }

    .service-task-item {
        font-size: 9.5px;
        gap: 5px;
    }

    .task-check-box {
        width: 12px;
        height: 12px;
        font-size: 7px;
    }

    .btn-service-order {
        padding: 6px 10px;
        font-size: 11px;
    }
}

/* ==========================================================================
   6. سكشن أعمالنا والتحول قبل وبعد (Before & After Transformation)
   ========================================================================== */
.transformation-overview-section {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.transformation-frame-card {
    width: 100%;
    max-width: 100%;
    background: #000000;
    color: #ffffff;
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-left: none;
    border-right: none;
    box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.35);
    padding: 64px 48px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* خلفية جمالية خافتة بتدرج دائري ناعم */
.transformation-frame-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(23, 5, 165, 0.22) 0%, rgba(23, 5, 165, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.transformation-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 54px;
    align-items: start;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* العمود الأيمن: المعلومات والنصوص */
.transformation-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: flex-start;
}

.transformation-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.transformation-tag-badge .tag-dot {
    width: 7px;
    height: 7px;
    background-color: #1705A5;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(23, 5, 165, 0.7);
}

.transformation-main-title {
    font-size: clamp(26px, 2.8vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.55;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.transformation-description {
    font-size: 15px;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 24px;
    max-width: 520px;
}

/* بطاقة تفاصيل المشروع */
.transformation-meta-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    padding: 12px 18px;
    margin-bottom: 28px;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
    transition: background 0.22s ease;
}

.transformation-meta-card .meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.transformation-meta-card .meta-item i {
    color: #1705A5;
    background: rgba(255, 255, 255, 0.95);
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.transformation-meta-card .meta-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.18);
}

.transformation-cta-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-transformation-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-brand-blue, #1A479C);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    padding: 13px 28px;
    border-radius: 9px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(26, 71, 156, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: all 0.22s ease;
}

.btn-transformation-quote i {
    color: #ffffff;
    font-size: 12px;
    transition: transform 0.22s ease;
}

.btn-transformation-quote:hover {
    background: var(--color-brand-blue-hover, #14397E);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 71, 156, 0.45);
}

.btn-transformation-quote:hover i {
    transform: translateX(-4px);
}

/* العمود الأيسر: سلايدر المقارنة التفاعلي */
.transformation-slider-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: center;
}

.comparison-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 530px;
    height: 380px;
    max-height: 380px;
    aspect-ratio: 16 / 11;
    border-radius: 14px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    cursor: ew-resize;
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    touch-action: pan-y;
}

.comparison-image-box {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.comparison-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    display: block;
    pointer-events: none;
}

.comparison-after {
    z-index: 1;
}

.comparison-before {
    z-index: 2;
    clip-path: polygon(0 0, var(--slider-pos, 50%) 0, var(--slider-pos, 50%) 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, var(--slider-pos, 50%) 0, var(--slider-pos, 50%) 100%, 0 100%);
}

.comparison-badge {
    position: absolute;
    top: 16px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 6px;
    user-select: none;
    pointer-events: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.badge-before {
    left: 16px;
    right: auto;
}

.badge-after {
    right: 16px;
    left: auto;
}

.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--slider-pos, 50%);
    width: 2px;
    background: #ffffff;
    z-index: 6;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #1705A5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
    font-size: 13px;
    border: 2.5px solid #ffffff;
    transition: transform 0.18s ease;
}

.comparison-slider-wrapper:active .handle-button {
    transform: translate(-50%, -50%) scale(1.12);
}

/* أزرار ونقاط التبديل بين المشاريع */
.transformation-dots-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.transformation-dot {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: all 0.22s ease;
    font-family: var(--font-primary);
}

.transformation-dot .dot-indicator-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: all 0.22s ease;
}

.transformation-dot:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.transformation-dot.is-active {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.transformation-dot.is-active .dot-indicator-bullet {
    background: #1705A5;
    box-shadow: 0 0 8px rgba(23, 5, 165, 0.7);
}

/* استجابة سكشن التحول للشاشات (Responsive) */
@media (max-width: 1024px) {
    .transformation-frame-card {
        padding: 44px 24px;
    }

    .transformation-layout-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .transformation-info-col {
        align-items: flex-start;
        text-align: right;
    }

    .transformation-main-title {
        text-align: right;
    }

    .transformation-description {
        text-align: right;
        max-width: 680px;
    }

    .transformation-meta-card {
        justify-content: flex-start;
    }

    .transformation-slider-col {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .transformation-overview-section {
        padding: 0;
    }

    .transformation-frame-card {
        padding: 28px 16px 24px;
        border-radius: 0;
    }

    .transformation-main-title {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .transformation-description {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .transformation-meta-card {
        padding: 12px 14px;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .transformation-meta-card .meta-item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        text-align: right;
    }

    .transformation-meta-card .meta-divider {
        display: none;
    }

    .btn-transformation-quote {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
        font-size: 13.5px;
    }

    .comparison-slider-wrapper {
        max-width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        max-height: 290px;
        border-radius: 12px;
    }

    .handle-button {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .comparison-badge {
        padding: 5px 12px;
        font-size: 11px;
        top: 12px;
        z-index: 10;
    }

    .badge-before {
        left: 12px;
        right: auto;
    }

    .badge-after {
        right: 12px;
        left: auto;
    }

    .transformation-dot {
        padding: 5px 11px;
        font-size: 11px;
    }
}

/* ==========================================================================
   7. سكشن خطوات العمل التفاعلي المثبت (Scroll-Pinned Process Section)
   ========================================================================== */
.process-pin-track {
    position: relative;
    width: 100%;
    min-height: 250vh;
    background-color: var(--bg-warm);
    box-sizing: border-box;
}

.process-sticky-container {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    box-sizing: border-box;
    z-index: 20;
    overflow: hidden;
    /* عزل طبقة الكومبوزيتور في كارت الشاشة لمنع أي اهتزاز للنصوص مع التمرير */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.process-frame-card {
    width: 100%;
    max-width: var(--container-max-width, 1440px);
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.08);
    padding: 44px 36px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: calc(100vh - 48px);
    height: calc(100dvh - 48px);
    min-height: min(620px, calc(100dvh - 48px));
    position: relative;
    overflow: hidden;
    /* تثبيت حدة ونقاء النصوص ومنع اهتزاز الحروف مع اللينس */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* رأس السكشن التفاعلي */
.process-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
    max-width: 720px;
    width: 100%;
}

.process-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    width: fit-content;
}

.process-tag-badge .tag-dot {
    width: 7px;
    height: 7px;
    background-color: #1705A5;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(23, 5, 165, 0.6);
}

.process-main-title {
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.45;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
}

.process-subtitle {
    font-size: clamp(13px, 1.1vw, 15px);
    color: #6a625b;
    line-height: 1.68;
    margin: 0;
}

/* صف خطوات العمل والأسهم الرابطة */
.process-steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1140px;
    margin: auto 0;
    position: relative;
    padding: 10px 0;
}

/* عنصر الخطوة الفردية */
.process-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 280px;
    /* انتقال ناعم للشفافية فقط - منع تحريك أو تكبير حاوية النصوص نهائياً */
    transition: opacity 0.35s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.step-visual-wrap {
    position: relative;
    width: 135px;
    height: 135px;
    margin-bottom: 18px;
}

.step-circle-outer {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 4px;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

.step-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    filter: grayscale(85%) contrast(90%);
    transition: filter 0.4s ease;
}

.step-num-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-dark);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid #ffffff;
    transition: all 0.4s ease;
}

.step-info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-title {
    font-size: 17.5px;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
    transition: color 0.4s ease;
}

.step-desc {
    font-size: 13px;
    color: #726a62;
    line-height: 1.62;
    margin: 0;
    transition: color 0.4s ease;
}

/* حالات الخطوات (الحالة المعلقة vs الحالة النشطة) - تكبير الدائرة فقط دون النصوص لمنع الاهتزاز */
.process-step-item.is-pending {
    opacity: 0.42;
}

.process-step-item.is-pending .step-circle-outer {
    transform: scale(0.95);
    border-color: rgba(0, 0, 0, 0.1);
}

.process-step-item.is-pending .step-photo {
    filter: grayscale(85%) contrast(90%);
}

.process-step-item.is-active {
    opacity: 1;
}

.process-step-item.is-active .step-circle-outer {
    transform: scale(1);
    border-color: #1705A5;
    box-shadow: 0 0 0 6px rgba(23, 5, 165, 0.12), 0 14px 32px rgba(23, 5, 165, 0.22);
}

.process-step-item.is-active .step-photo {
    filter: grayscale(0%) contrast(100%);
}

.process-step-item.is-active .step-num-badge {
    background: #1705A5;
    box-shadow: 0 4px 14px rgba(23, 5, 165, 0.5);
}

.process-step-item.is-active .step-title {
    color: #1705A5;
}

/* حاوية ومسار السهم المنحني بين الخطوات */
.process-arrow-wrap {
    flex: 1;
    max-width: 160px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 38px;
    position: relative;
    padding: 0 4px;
    box-sizing: border-box;
    contain: paint;
    pointer-events: none;
}

.process-arrow-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 2px 8px rgba(23, 5, 165, 0.15));
}

.desktop-arrow {
    display: block;
}

.mobile-arrow {
    display: none !important;
}

.arrow-bg-group {
    transition: opacity 0.3s ease;
}

.arrow-draw-path {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    transition: stroke-dashoffset 0.06s linear;
}

.arrow-head-path {
    opacity: 0;
    transition: opacity 0.15s ease;
}

/* مؤشر التمرير السفلي */
.process-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.process-indicator-text {
    font-size: 11px;
    font-weight: 700;
    color: #8c827a;
    letter-spacing: 0.2px;
}

.process-indicator-bar {
    width: 140px;
    height: 4px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.process-indicator-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #1705A5, #38bdf8);
    border-radius: 4px;
}

/* استجابة شاشات التابلت والموبايل */
@media (max-width: 1024px) {
    .process-frame-card {
        padding: 36px 24px 28px;
    }

    .step-visual-wrap {
        width: 110px;
        height: 110px;
        margin-bottom: 14px;
    }

    .process-arrow-wrap {
        max-width: 95px;
        margin-top: 32px;
    }

    .step-title {
        font-size: 15.5px;
    }

    .step-desc {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .process-pin-track {
        min-height: 280vh;
    }

    .process-sticky-container {
        padding: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
    }

    /* كارت السكشن يأخذ طول الشاشة كاملاً من الحافة للحافة 100dvh */
    .process-frame-card {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: calc(env(safe-area-inset-top, 0px) + 26px) 18px calc(env(safe-area-inset-bottom, 0px) + 20px);
        box-sizing: border-box;
        justify-content: space-between;
    }

    .process-header {
        margin-bottom: 8px;
        flex-shrink: 0;
    }

    .process-tag-badge {
        font-size: 11px;
        padding: 4px 11px;
        margin-bottom: 6px;
        border-radius: 6px;
    }

    .process-main-title {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 6px;
    }

    .process-subtitle {
        font-size: 11.5px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* تحويل الخطوات في الموبايل لتحت بعض وتوزيعها بطول الشاشة كاملاً */
    .process-steps-row {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 480px;
        gap: 0;
        padding: 0;
        margin: auto 0;
        flex: 1;
        justify-content: space-evenly;
    }

    /* كل خطوة سطر أفقي يجمع الصورة والنصوص بجانبها بارتفاع أطول */
    .process-step-item {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        gap: 14px;
        padding: 6px 8px;
        box-sizing: border-box;
        border-radius: 14px;
        transition: opacity 0.35s ease;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* الخطوة الأولى والثالثة: الصورة على اليمين والنصوص على اليسار */
    #processStep1,
    #processStep3 {
        flex-direction: row;
    }

    /* الخطوة الثانية: عكس الترتيب (الصورة على اليسار والنصوص على اليمين) */
    #processStep2 {
        flex-direction: row-reverse;
    }

    .step-visual-wrap {
        width: 70px;
        height: 70px;
        min-width: 70px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-circle-outer {
        border-width: 2.5px;
        padding: 2.5px;
    }

    .step-num-badge {
        width: 24px;
        height: 24px;
        font-size: 10px;
        top: -3px;
        right: -3px;
        border-width: 2px;
    }

    .step-info-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: right;
        gap: 3px;
        flex: 1;
    }

    .step-title {
        font-size: 14.5px;
        font-weight: 800;
        line-height: 1.35;
        white-space: normal;
        margin: 0;
    }

    /* ظهور النص بجانب الصورة في الموبايل بوضوح وخط مريح */
    .process-step-item .step-desc {
        display: block !important;
        font-size: 11.5px;
        color: #635b54;
        line-height: 1.5;
        margin: 0;
    }

    /* إظهار سهم الموبايل وإخفاء سهم الديسكتوب */
    .desktop-arrow {
        display: none !important;
    }

    .mobile-arrow {
        display: block !important;
    }

    /* تكبير طول وارتفاع السهم بين الخطوات لربط الصور برسم أطول وأوضح */
    .process-arrow-wrap {
        width: 100%;
        max-width: 100%;
        height: 46px;
        margin: 0;
        padding: 0 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .process-arrow-svg.mobile-arrow {
        width: 100%;
        height: 100%;
        overflow: visible;
    }

    .process-scroll-indicator {
        margin-top: 8px;
        gap: 5px;
    }

    .process-indicator-text {
        font-size: 10px;
    }

    .process-indicator-bar {
        width: 110px;
        height: 3.5px;
    }
}

@media (max-width: 380px) {
    .process-frame-card {
        padding: 16px 10px 12px;
        border-radius: 12px;
    }

    .process-main-title {
        font-size: 18px;
    }

    .step-visual-wrap {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .step-num-badge {
        width: 20px;
        height: 20px;
        font-size: 8.5px;
    }

    .step-title {
        font-size: 13px;
    }

    .process-step-item .step-desc {
        font-size: 10.5px;
        line-height: 1.45;
    }

    .process-arrow-wrap {
        height: 38px;
    }
}

/* ==========================================================================
   8. سكشن المقالات والدليل الفني (Blog & Technical Insights Section)
   مستوحى من تصميم Technical Insights بالوضع الفاتح وهوية الهنداوي
   ========================================================================== */
.blog-overview-section {
    width: 100%;
    padding: 60px 24px 84px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: var(--bg-warm);
    position: relative;
    z-index: 1;
}

.blog-frame-card {
    width: 100%;
    max-width: var(--container-max-width, 1440px);
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.08);
    padding: 48px 44px 54px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-sizing: border-box;
}

/* ترويسة السكشن المقسمة: العنوان بالشارة باليمين وزر عرض الكل باليسار */
.blog-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
}

.blog-header-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.blog-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 14px;
    width: fit-content;
}

.blog-tag-badge .tag-dot {
    width: 7px;
    height: 7px;
    background-color: #1705A5;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(23, 5, 165, 0.6);
}

.blog-main-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin: 0;
}

/* زر استعراض كافة المقالات - متوافق مع نمط أزرار الموقع الفاخرة */
.btn-blog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-brand-blue, #1A479C);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 9px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 14px var(--color-brand-blue-glow, rgba(26, 71, 156, 0.28));
    transition: all 0.22s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.btn-blog-view-all i {
    font-size: 12px;
    color: #ffffff;
    transition: transform 0.22s ease;
}

.btn-blog-view-all:hover {
    background-color: var(--color-brand-blue-hover, #14397E);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 71, 156, 0.38);
}

.btn-blog-view-all:hover i {
    transform: translateX(-4px);
}

/* شبكة كروت المقالات الثلاثية */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
}

/* كارت المقال الفاخر (Article Card) - مطابق لتصميم صفحة المقالات */
.article-card-box {
    background: #E8EDF2;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    cursor: pointer;
}

.article-card-box:focus-visible {
    outline: 2px solid var(--color-royal-blue, #1705A5);
    outline-offset: 4px;
}

.article-card-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.11);
    border-color: rgba(0, 0, 0, 0.18);
}

/* صورة المقال وحاويتها */
.article-thumb-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #000000;
}

.article-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.article-card-box:hover .article-thumb-img {
    transform: scale(1.07);
}

/* شارة التصنيف فوق الصورة */
.article-category-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

/* زمن القراءة فوق الصورة على اليسار */
.article-read-time {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--color-dark, #000000);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.article-read-time i {
    color: var(--color-royal-blue, #1705A5);
    font-size: 11px;
}

/* محتوى المقال الداخلي */
.article-content-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.article-meta-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.article-meta-date i {
    color: #94a3b8;
}

/* عنوان المقال */
.article-heading-title {
    font-family: 'Cairo', 'Almarai', sans-serif;
    font-size: 18.5px;
    font-weight: 800;
    line-height: 1.45;
    color: var(--color-dark, #000000);
    margin: 0 0 10px;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-box:hover .article-heading-title {
    color: var(--color-dark, #000000);
}

/* نبذة المقال المختصرة */
.article-excerpt-text {
    font-size: 14.5px;
    color: #55524e;
    line-height: 1.65;
    margin: 0 0 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ذيل الكارت وزر قراءة المقال */
.article-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: auto;
}

.article-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark, #000000);
    transition: all 0.2s ease;
}

.article-read-more-btn i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.article-card-box:hover .article-read-more-btn {
    color: var(--color-royal-blue, #1705A5);
}

.article-card-box:hover .article-read-more-btn i {
    transform: translateX(-4px);
}

/* Responsive queries */
@media (max-width: 1024px) {
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .blog-overview-section {
        padding: 36px 14px 48px;
    }

    .blog-frame-card {
        padding: 28px 18px 32px;
        border-radius: 16px;
        gap: 28px;
    }

    .blog-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .btn-blog-view-all {
        width: 100%;
        justify-content: center;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-main-title {
        font-size: 20px;
        line-height: 1.5;
    }

    .article-card-box {
        border-radius: 14px;
    }

    .article-content-body {
        padding: 18px;
    }

    .article-heading-title {
        font-size: 16.5px;
    }

    .article-excerpt-text {
        font-size: 13.5px;
        margin-bottom: 16px;
    }
}


/* ==========================================================================
   9. سكشن تقييمات وآراء العملاء التفاعلي (Reviews & Testimonials Section)
   مستوحى من تصميم Testimonials مع شريط مزدوج انسيابي وهوية الهنداوي
   ========================================================================== */
.reviews-overview-section {
    width: 100%;
    padding: 60px 0 84px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: var(--bg-warm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.reviews-frame-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 46px;
    box-sizing: border-box;
}

/* ترويسة السكشن المقسمة */
.reviews-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-end;
    width: 100%;
    max-width: var(--container-max-width, 1440px);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.reviews-header-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.reviews-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    width: fit-content;
}

.reviews-tag-badge .tag-dot {
    width: 7px;
    height: 7px;
    background-color: #1705A5;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(23, 5, 165, 0.6);
}

.reviews-main-title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.32;
    letter-spacing: -0.5px;
    margin: 0;
}

.reviews-header-desc-wrap {
    display: flex;
    align-items: stretch;
    gap: 18px;
    max-width: 540px;
    margin-right: auto;
}

.reviews-accent-line {
    width: 3.5px;
    background-color: #1705A5;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(23, 5, 165, 0.4);
}

.reviews-header-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin: 0;
    text-align: right;
}

/* حاوية أشرطة التقييمات اللانهائية */
.reviews-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 10px 0;
    direction: ltr; /* ضبط إحداثيات الحركة الصريحة لضمان انسيابية لانهائية تامة بدون أي قفزة */
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reviews-marquee-track {
    display: flex;
    width: max-content;
    gap: 0; /* إلغاء الفجوة بين المجموعات لضمان التكرار الرياضي الدقيق 100% */
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}

/* حركة الصف الأول نحو اليمين بانسيابية لا نهائية تامة */
.reviews-marquee-track.track-left {
    animation: reviewsScrollRight 52s linear infinite;
}

/* حركة الصف الثاني نحو اليسار بانسيابية لا نهائية تامة */
.reviews-marquee-track.track-right {
    animation: reviewsScrollLeft 56s linear infinite;
}

/* إيقاف الحركة عند التحويم بالماوس للقراءة المريحة */
.reviews-marquee-track:hover {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    gap: 24px;
    padding-right: 24px; /* مسافة متطابقة تماماً (24px) بين آخر كارت وأول كارت في الدورة التالية */
    flex-shrink: 0;
    direction: rtl; /* الحفاظ على اتجاه القراءة العربي الأصيل داخل كل كارت */
}

@keyframes reviewsScrollLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes reviewsScrollRight {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* تصميم كارت التقييم الفردي */
.review-card-item {
    width: 380px;
    max-width: 88vw;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 26px 26px 22px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    text-align: right;
    cursor: default;
}

.review-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    border-color: rgba(23, 5, 165, 0.22);
}

/* نجوم التقييم */
.review-stars-row {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: #f97316;
}

.review-stars-row i {
    filter: drop-shadow(0 1px 2px rgba(249, 115, 22, 0.2));
}

/* نص التقييم */
.review-text {
    font-size: 14px;
    line-height: 1.78;
    color: var(--color-text-main);
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
}

/* تذييل الكارت وبيانات العميل */
.review-client-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.client-avatar-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.client-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}

.client-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
}

.client-role {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.review-quote-icon {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.16);
    transition: color 0.22s ease, transform 0.22s ease;
}

.review-card-item:hover .review-quote-icon {
    color: #1705A5;
    transform: scale(1.1);
}

/* تجاوب سكشن التقييمات للشاشات المختلفة */
@media (max-width: 1024px) {
    .reviews-header-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reviews-header-desc-wrap {
        margin-right: 0;
        max-width: 100%;
    }

    .review-card-item {
        width: 340px;
    }
}

@media (max-width: 640px) {
    .reviews-overview-section {
        padding: 44px 0 60px;
    }

    .reviews-frame-card {
        gap: 32px;
    }

    .reviews-header-grid {
        padding: 0 16px;
    }

    .reviews-main-title {
        font-size: 20px;
        line-height: 1.5;
    }

    .reviews-header-desc {
        font-size: 13.5px;
        line-height: 1.68;
    }

    .reviews-accent-line {
        width: 3px;
    }

    .reviews-marquee-container {
        gap: 16px;
    }

    .review-card-item {
        width: 300px;
        padding: 20px 18px 18px;
        border-radius: 16px;
    }

    .review-text {
        font-size: 13px;
        line-height: 1.65;
    }

    .client-avatar-img {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   10. سكشن الأسئلة الشائعة والأجوبة الفنية (FAQ Section)
   مستوحى من تصميم AirFix مع أكورديون تفاعلي أنيق وهوية الهنداوي
   ========================================================================== */
.faq-overview-section {
    width: 100%;
    padding: 70px 24px 90px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: var(--bg-warm);
    position: relative;
    z-index: 1;
}

.faq-frame-card {
    width: 100%;
    max-width: var(--container-max-width, 1440px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    box-sizing: border-box;
}

/* ترويسة السكشن الممركزة */
.faq-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
}

.faq-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
    width: fit-content;
}

.faq-tag-badge .tag-dot {
    width: 7px;
    height: 7px;
    background-color: #1705A5;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(23, 5, 165, 0.6);
}

.faq-main-title {
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.35;
    letter-spacing: -0.5px;
    margin: 0;
}

.faq-subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* بطاقة حاوية الأكورديون المركزية */
.faq-accordion-card {
    width: 100%;
    max-width: 960px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.06);
    padding: 10px 40px;
    box-sizing: border-box;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: background-color 0.2s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

/* زر السؤال */
.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
    gap: 18px;
    font-family: var(--font-primary);
    outline: none;
}

.faq-question-btn .question-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.6;
    transition: color 0.22s ease;
}

.faq-question-btn .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--color-dark);
    flex-shrink: 0;
    transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-question-btn:hover .question-text {
    color: #1705A5;
}

.faq-question-btn:hover .faq-icon {
    background: rgba(23, 5, 165, 0.08);
    color: #1705A5;
}

/* حالة السؤال المفتوح */
.faq-item.is-open .question-text {
    color: #1705A5;
}

.faq-item.is-open .faq-icon {
    background: #1705A5;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(23, 5, 165, 0.35);
}

/* لوحة الإجابة المنزلقة */
.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
}

.faq-answer-text {
    font-size: 14.5px;
    line-height: 1.82;
    color: var(--color-text-muted);
    margin: 0;
    padding-bottom: 22px;
    padding-left: 36px;
    text-align: right;
}

/* تجاوب سكشن الأسئلة الشائعة مع الشاشات */
@media (max-width: 768px) {
    .faq-overview-section {
        padding: 50px 16px 70px;
    }

    .faq-accordion-card {
        padding: 6px 22px;
        border-radius: 16px;
    }

    .faq-question-btn {
        padding: 18px 0;
    }

    .faq-question-btn .question-text {
        font-size: 15px;
        line-height: 1.82;
    }

    .faq-question-btn .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .faq-answer-text {
        font-size: 13.5px;
        line-height: 1.72;
        padding-left: 0;
        padding-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .faq-main-title {
        font-size: 20px;
        line-height: 1.5;
    }

    .faq-subtitle {
        font-size: 13.5px;
    }

    .faq-accordion-card {
        padding: 4px 16px;
    }

    .faq-question-btn .question-text {
        font-size: 14.5px;
        line-height: 1.85;
    }
}

/* ==========================================================================
   11. سكشن طلب المعاينة وحجز الخدمة (Booking & Free Estimate Section)
   مستوحى من تصميم AirFix مع بطاقة منقسمة ونموذج تفاعلي سريع
   ========================================================================== */
.booking-overview-section {
    width: 100%;
    padding: 85px 36px 95px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: #000000;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.booking-overview-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(23, 5, 165, 0.32) 0%, rgba(23, 5, 165, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.booking-overview-section .anchor-offset {
    position: absolute;
    top: -80px;
    left: 0;
    pointer-events: none;
    visibility: hidden;
}

.booking-frame-card {
    width: 100%;
    max-width: var(--container-max-width, 1440px);
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-sizing: border-box;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.booking-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 54px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* العمود الأيمن: تفاصيل الثقة والاتصال */
.booking-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    gap: 20px;
}

.booking-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.booking-tag-badge .tag-dot {
    width: 7px;
    height: 7px;
    background-color: #1705A5;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(23, 5, 165, 0.8);
}

.booking-main-title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.32;
    letter-spacing: -0.5px;
    margin: 0;
}

.booking-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    max-width: 480px;
}

/* مجموعة وسائل التواصل المباشر (الهاتف والجيميل) */
.booking-contacts-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
    max-width: 100%;
    margin-top: 4px;
}

/* بطاقة الاتصال المباشر */
.booking-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px 20px;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.booking-contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #1705A5;
    box-shadow: 0 6px 22px rgba(23, 5, 165, 0.25);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #ffffff;
    color: #1705A5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    transition: background 0.2s ease, color 0.2s ease;
}

.booking-contact-card:hover .contact-card-icon {
    background: #1705A5;
    color: #ffffff;
}

.contact-card-icon.email-icon {
    font-size: 15px;
}

.contact-card-icon.whatsapp-icon {
    color: #25D366;
    font-size: 21px;
}

.booking-whatsapp-card:hover {
    border-color: #25D366 !important;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3) !important;
}

.booking-whatsapp-card:hover .contact-card-icon.whatsapp-icon {
    background: #25D366 !important;
    color: #ffffff !important;
}

.contact-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}

.contact-phone-number {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.booking-contact-card:hover .contact-phone-number {
    color: #ffffff;
}

.contact-email-address {
    font-size: 15px;
    letter-spacing: 0.2px;
    word-break: break-all;
}

.contact-subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

/* قائمة مميزات الثقة */
.booking-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.booking-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.booking-feature-item .feature-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(23, 5, 165, 0.45);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* العمود الأيسر: بطاقة النموذج الأبيض */
.booking-form-col {
    display: flex;
    justify-content: center;
    width: 100%;
}

.booking-form-card {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 38px 32px;
    box-sizing: border-box;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.form-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
    text-align: right;
}

.form-main-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
}

.form-subtitle {
    font-size: 13.5px;
    color: var(--color-text-muted);
    margin: 0;
}

.booking-interactive-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.035);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 9px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: var(--font-primary);
    color: var(--color-dark);
    box-sizing: border-box;
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #1705A5;
    background: #ffffff;
    box-shadow: 0 0 0 3.5px rgba(23, 5, 165, 0.12);
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper .select-arrow {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 11px;
    color: var(--color-text-muted);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-left: 36px;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-booking-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-brand-blue, #1A479C);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    box-shadow: 0 4px 14px var(--color-brand-blue-glow, rgba(26, 71, 156, 0.28));
    transition: all 0.22s ease;
    font-family: var(--font-primary);
    margin-top: 4px;
}

.btn-booking-submit i {
    font-size: 13px;
    color: #ffffff;
    transition: transform 0.22s ease;
}

.btn-booking-submit:hover {
    background-color: var(--color-brand-blue-hover, #14397E);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 71, 156, 0.38);
}

.btn-booking-submit:hover i {
    transform: translateX(-4px);
}

.form-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 2px;
}

.form-trust-badge i {
    color: #1705A5;
    font-size: 13px;
}

/* تجاوب سكشن طلب المعاينة مع الشاشات */
@media (max-width: 1024px) {
    .booking-overview-section {
        padding: 70px 24px 80px;
    }

    .booking-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-contacts-group {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .booking-overview-section {
        padding: 50px 16px 65px;
    }

    .booking-contacts-group {
        width: 100%;
    }

    .booking-form-card {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .booking-main-title {
        font-size: 20px;
        line-height: 1.5;
    }

    .booking-description {
        font-size: 13.5px;
    }

    .booking-contact-card {
        width: 100%;
        padding: 12px 16px;
    }

    .contact-email-address {
        font-size: 14px;
    }

    .form-trust-badge {
        font-size: 10.5px;
        line-height: 1.5;
        gap: 6px;
        margin-top: 4px;
    }

    .form-trust-badge i {
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .form-trust-badge {
        font-size: 9.8px;
        line-height: 1.45;
    }
}

/* ==========================================================================
   12. الفوتر الرئيسي للموقع (Main Footer)
   مستوحى من تصميم Tempra مع مواءمة الهوية البصرية لموقع الهنداوي
   ========================================================================== */
.site-main-footer {
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 75px 36px 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.footer-inner-container {
    width: 100%;
    max-width: var(--container-max-width, 1440px);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* الشبكة العلوية للأعمدة الثلاثة */
.footer-top-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1.15fr;
    gap: 48px;
    width: 100%;
    box-sizing: border-box;
}

.footer-col {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 0 20px;
    letter-spacing: -0.2px;
}

/* قائمة بيانات الاتصال */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.footer-contact-item i {
    font-size: 14px;
    color: #1705A5;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--color-dark);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: #1705A5;
}

/* أيقونات السوشيال ميديا */
.footer-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.22s ease;
}

.footer-social-icon:hover {
    background: #1705A5;
    color: #ffffff;
    border-color: #1705A5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(23, 5, 165, 0.28);
}

/* قوائم الروابط والخدمات */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    font-size: 14px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-nav-link:hover {
    color: #1705A5;
    transform: translateX(-4px);
}

/* خط التقسيم */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 52px 0 36px;
    width: 100%;
}

/* الصف السفلي */
.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
}

/* اللوجو الضخم للهوية البصرية */
.footer-brand-huge {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    user-select: none;
}

.footer-huge-logo-icon {
    height: clamp(70px, 7vw, 105px);
    width: auto;
    max-width: min(100%, 420px);
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(23, 5, 165, 0.12));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-huge-logo-icon:hover {
    transform: scale(1.03);
}

/* الجانب القانوني والحقوق */
.footer-legal-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    text-align: left;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.legal-link {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: #1705A5;
}

.legal-sep {
    opacity: 0.35;
}

/* زر لوحة التحكم الأنيق في الفوتر */
.footer-dashboard-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted, #64748b);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.22s ease;
    cursor: pointer;
}

.footer-dashboard-btn i {
    font-size: 11px;
    color: #1705A5;
    transition: transform 0.22s ease;
}

.footer-dashboard-btn:hover {
    color: #1705A5;
    background: #ffffff;
    border-color: rgba(23, 5, 165, 0.25);
    box-shadow: 0 2px 8px rgba(23, 5, 165, 0.08);
    transform: translateY(-1px);
}

.footer-dashboard-btn:hover i {
    transform: rotate(30deg);
}

.footer-copyright-text {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0;
    direction: ltr;
}

/* تجاوب الفوتر مع الشاشات المختلفة */
@media (max-width: 1024px) {
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-services-col {
        grid-column: span 2;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-legal-col {
        align-items: flex-start;
        text-align: right;
    }

    .footer-copyright-text {
        direction: rtl;
    }
}

@media (max-width: 640px) {
    .site-main-footer {
        padding: 50px 18px 32px;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-services-col {
        grid-column: span 1;
    }

    .footer-huge-logo-icon {
        height: 56px;
        max-width: 270px;
    }

    .footer-divider {
        margin: 36px 0 24px;
    }
}

/* ==========================================================================
   توحيد وتصغير مقاسات جميع عناوين السكاشن على شاشات الموبايل (ما عدا الهيرو)
   ========================================================================== */
@media (max-width: 768px) {
    .about-section-title,
    .services-main-title,
    .transformation-main-title,
    .process-main-title,
    .reviews-main-title,
    .blog-main-title,
    .faq-main-title,
    .booking-main-title {
        font-size: 20px !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 380px) {
    .about-section-title,
    .services-main-title,
    .transformation-main-title,
    .process-main-title,
    .reviews-main-title,
    .blog-main-title,
    .faq-main-title,
    .booking-main-title {
        font-size: 18px !important;
        line-height: 1.45 !important;
    }
}

/* ==========================================================================
   13. عنصر وزر التواصل العائم السريع (Floating Quick Contact Widget)
   ========================================================================== */
.floating-contact-widget {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 990;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    user-select: none;
    font-family: var(--font-primary, 'Almarai', sans-serif);
}

/* القائمة المنبثقة لاختيار التواصل */
.contact-popup-card {
    position: absolute;
    bottom: 74px;
    left: 0;
    width: 290px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 16px 42px -6px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.08);
    padding: 16px 14px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.95);
    transform-origin: bottom left;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s ease;
    pointer-events: none;
}

.floating-contact-widget.is-open .contact-popup-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* ترويسة القائمة */
.contact-popup-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-align: right;
}

.contact-online-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #15803d;
}

.online-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: onlinePulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes onlinePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.contact-popup-subtitle {
    font-size: 12px;
    color: var(--color-text-muted, #6b635c);
    margin: 0;
    line-height: 1.4;
}

/* خيارات التواصل */
.contact-popup-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.22s ease;
    box-sizing: border-box;
}

/* خيار الواتساب */
.option-whatsapp {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.option-whatsapp .option-icon-box {
    background: #25D366;
    color: #ffffff;
}

.option-whatsapp .option-title {
    color: #15803d;
}

.option-whatsapp .option-arrow {
    color: #22c55e;
}

.option-whatsapp:hover {
    background: #dcfce7;
    border-color: #86efac;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.22);
}

.option-whatsapp:hover .option-arrow i {
    transform: translateX(-3px);
}

/* خيار الاتصال */
.option-phone {
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
}

.option-phone .option-icon-box {
    background: #1705A5;
    color: #ffffff;
}

.option-phone .option-title {
    color: #1705A5;
}

.option-phone .option-arrow {
    color: #1705A5;
}

.option-phone:hover {
    background: #ede9fe;
    border-color: #c4b5fd;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(23, 5, 165, 0.22);
}

.option-phone:hover .option-arrow i {
    transform: translateX(-3px);
}

.option-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.option-text-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
    text-align: right;
}

.option-title {
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.2;
}

.option-desc {
    font-size: 11.5px;
    color: var(--color-text-muted, #6b635c);
    font-weight: 600;
}

.option-arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.option-arrow i {
    transition: transform 0.2s ease;
}

/* الزر العائم بتصميم الكبسولة الفاخرة باللون الأحمر المميز مع عبارة التواصل */
.floating-trigger-btn {
    position: relative;
    height: 52px;
    padding: 0 18px 0 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.42), 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, background 0.22s ease, border-color 0.22s ease;
    outline: none;
    z-index: 2;
    text-decoration: none;
}

.floating-trigger-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.55), 0 4px 10px rgba(0, 0, 0, 0.25);
}

.floating-trigger-btn:active {
    transform: scale(0.97);
}

/* النص المرافق للأيقونة داخل الزر العائم */
.trigger-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: -0.2px;
}

.trigger-label .label-open {
    display: inline-block;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.trigger-label .label-close {
    display: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* نقاط التفكير المتحركة (Animated Thinking / Typing Dots) */
.trigger-icons {
    position: relative;
    width: 28px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thinking-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4.5px;
    transition: opacity 0.25s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.thinking-dots .dot {
    width: 6.5px;
    height: 6.5px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    animation: thinkingBounce 1.35s infinite ease-in-out both;
}

.thinking-dots .dot:nth-child(1) {
    animation-delay: -0.32s;
}

.thinking-dots .dot:nth-child(2) {
    animation-delay: -0.16s;
}

.thinking-dots .dot:nth-child(3) {
    animation-delay: 0s;
}

@keyframes thinkingBounce {
    0%, 80%, 100% {
        transform: translateY(0) scale(0.85);
        opacity: 0.6;
    }
    40% {
        transform: translateY(-5px) scale(1.15);
        opacity: 1;
    }
}

.icon-close {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
    font-size: 20px !important;
    color: #ffffff;
    transition: opacity 0.25s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* عندما تكون القائمة مفتوحة */
.floating-contact-widget.is-open .floating-trigger-btn {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 24px rgba(185, 28, 28, 0.45);
}

.floating-contact-widget.is-open .trigger-label .label-open {
    display: none;
}

.floating-contact-widget.is-open .trigger-label .label-close {
    display: inline-block;
}

.floating-contact-widget.is-open .thinking-dots {
    opacity: 0 !important;
    transform: scale(0.4) !important;
    pointer-events: none;
}

.floating-contact-widget.is-open .icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* حلقة النبض الضوئي باللون الأحمر خلف الزر */
.trigger-pulse-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50px;
    border: 2px solid rgba(239, 68, 68, 0.55);
    animation: triggerPulse 2.4s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: -1;
}

.floating-contact-widget.is-open .trigger-pulse-ring {
    display: none;
}

@keyframes triggerPulse {
    0% {
        transform: scale(0.96);
        opacity: 0.85;
    }
    70% {
        transform: scale(1.12, 1.25);
        opacity: 0;
    }
    100% {
        transform: scale(1.18, 1.3);
        opacity: 0;
    }
}

/* تجاوب الزر والقائمة على شاشات الموبايل */
@media (max-width: 640px) {
    .floating-contact-widget {
        bottom: 18px;
        left: 14px;
    }

    .floating-trigger-btn {
        height: 46px;
        padding: 0 14px 0 10px;
        gap: 7px;
    }

    .trigger-label {
        font-size: 13px;
    }

    .trigger-icons {
        width: 24px;
        height: 20px;
    }

    .thinking-dots .dot {
        width: 5px;
        height: 5px;
    }

    .icon-close {
        font-size: 18px !important;
    }

    .contact-popup-card {
        bottom: 58px;
        width: min(285px, calc(100vw - 28px));
        padding: 14px 12px;
    }

    .contact-option-item {
        padding: 10px 12px;
    }

    .option-icon-box {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* ==========================================================================
   12. شاشة التحميل الافتتاحية البلورية الفاخرة (Glassmorphic Site Preloader)
   ========================================================================== */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(232, 237, 242, 0.82);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.65s ease,
                backdrop-filter 0.65s ease,
                -webkit-backdrop-filter 0.65s ease;
    pointer-events: all;
    user-select: none;
}

/* حالة إخفاء شاشة التحميل بانسيابية فائقة */
.site-preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(0);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-preloader.preloader-hidden .preloader-content {
    transform: scale(0.90);
}

/* حاوية الأيقونة وموجات التبريد الدائرية */
.preloader-icon-wrapper {
    position: relative;
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* موجات التبريد والانتعاش الدائرية المتمددة (Cooling Breeze Ripples) */
.preloader-ripple-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid var(--color-brand-blue, #1A479C);
    opacity: 0;
    pointer-events: none;
    animation: acRipplePulse 2.4s cubic-bezier(0.1, 0.8, 0.2, 1) infinite;
}

.preloader-ripple-ring.ripple-2 {
    animation-delay: 1.2s;
}

/* صندوق الأيقونة الزجاجي الأنيق */
.preloader-icon-box {
    position: relative;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    border: 1.5px solid rgba(26, 71, 156, 0.22);
    box-shadow: 0 14px 40px var(--color-brand-blue-glow, rgba(26, 71, 156, 0.22)),
                inset 0 1px 2px rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
    animation: acBoxBreathe 2.4s ease-in-out infinite alternate;
}

/* أيقونة التكييف والتبريد بلون أزرق اللوجو الأصلي وحركتها الانسيابية */
.preloader-icon {
    font-size: 42px;
    color: var(--color-brand-blue, #1A479C); /* نفس لون أزرق اللوجو وأزرار الموقع تماماً */
    filter: drop-shadow(0 4px 14px var(--color-brand-blue-glow, rgba(26, 71, 156, 0.35)));
    animation: acSnowflakeSpin 4.5s linear infinite;
}

/* ================== أنيميشن الحركات (Keyframes) ================== */

/* دوران مستمر فائق النعومة لندفة التكييف */
@keyframes acSnowflakeSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* تنفس ونبض لطيف لصندوق الأيقونة */
@keyframes acBoxBreathe {
    0% {
        transform: scale(0.96);
    }
    100% {
        transform: scale(1.05);
    }
}

/* تمدد موجات التبريد الخارجية */
@keyframes acRipplePulse {
    0% {
        transform: scale(0.85);
        opacity: 0.38;
    }
    50% {
        opacity: 0.15;
    }
    100% {
        transform: scale(1.85);
        opacity: 0;
    }
}

/* نبض نقاط التحميل */
@keyframes preloaderDotPulse {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.25;
    }
    40% {
        transform: scale(1.35);
        opacity: 0.9;
    }
}

