:root {
    /* باليتة الألوان الجديدة - Mint Green */
    --color-castleton: #00563F;
    /* أخضر داكن (Castleton) - للنصوص، الفوتر، والخلفيات الداكنة */
    --color-misty-jade: #A5C2B4;
    /* أخضر باهت (Misty Jade) - لبطاقات الخدمات والخلفيات الثانوية */
    --color-mint-green: #A8E6CF;
    /* أخضر نعناعي (Mint Green) - للمسات الجمالية وتأثيرات المرور (Hover) */
    --color-mint-dark: #1B7356;
    /* درجة متوسطة بين النعناعي والداكن - مخصصة للأزرار لضمان وضوح النص */
    --color-off-white: #F4F9F6;
    /* أبيض مائل للأخضر الفاتح - كلون خلفية مريح للعين */

    /* الخطوط */
    --font-ar: 'Almarai', sans-serif;
    --font-en: 'Roboto', sans-serif;
}

/* =========================================
   إعدادات عامة
========================================= */
body {
    background-color: var(--color-off-white);
    color: var(--color-castleton);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden !important;

}

/* تخصيص الخط حسب اتجاه اللغة */
html[dir="rtl"] body {
    font-family: var(--font-ar);
}

html[dir="ltr"] body {
    font-family: var(--font-en);
}

h1,
h2,
h3 {
    color: var(--color-castleton);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* =========================================
   Header & Navigation Bar Styles
========================================= */
/* جعل الهيدر زجاجي ولكن بدرجة الأخضر الداكن ليتماشى مع الهوية الجديدة */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(0, 86, 63, 0.95);
    /* لون Castleton مع شفافية */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 86, 63, 0.2);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 15px 20px;
    max-width: 1200px;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-off-white);
    letter-spacing: -0.5px;
    position: relative;
    cursor: pointer;
}

/* النقطة الجمالية في اللوجو */
nav .logo::after {
    content: '.';
    color: var(--color-mint-green);
}

nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-off-white);
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: var(--color-mint-green);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html[dir="rtl"] nav ul li a::after {
    right: 0;
}

html[dir="ltr"] nav ul li a::after {
    left: 0;
}

nav ul li a:hover {
    color: var(--color-mint-green);
}

nav ul li a:hover::after {
    width: 100%;
}

/* زر تغيير اللغة */
nav>a {
    text-decoration: none;
    background-color: var(--color-misty-jade);
    color: var(--color-castleton);
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

nav>a:hover {
    background-color: transparent;
    color: var(--color-mint-green);
    border-color: var(--color-mint-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 230, 207, 0.2);
}

/* تنسيق اللينك النشط (لو العميل واقف في الصفحة دي) - اختياري بس بيدي فخامة */
.nav-links a.active:not(.btn-primary) {
    color: #478ac9;
}

.nav-links a.active:not(.btn-primary)::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--color-mint-green) !important;
    /* تغيير لون النص */
}

/* إظهار الخط السفلي دائماً للينك النشط */
nav ul li a.active::after {
    width: 100%;
}


/* =========================================
   Responsive Design (Mobile & Tablets)
========================================= */
@media (max-width: 850px) {
    nav {
        flex-wrap: wrap;
        padding: 15px;
    }

    nav ul {
        position: fixed;
        /* Fixed أفضل من Absolute لمنع تحركها مع السكرول */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 86, 63, 0.98);
        /* لون Castleton داكن لتناسب الهوية */
        backdrop-filter: blur(15px);

        display: flex !important;
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
        gap: 30px;
        /* مسافة أوسع بين اللينكات في الموبايل */

        /* تأثير الظهور الدائري من زر الهمبرجر */
        clip-path: circle(0px at top left);
        transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
    }

    nav ul.active {
        display: flex;
    }

    nav>a {
        padding: 6px 15px;
        font-size: 0.85rem;
    }

    html[dir="rtl"] nav ul {
        clip-path: circle(0px at top right);
    }

    /* كلاس active الذي يضيفه الجافاسكريبت لفتح القائمة */
    nav ul.active {
        clip-path: circle(150vh at top left);
    }

    html[dir="rtl"] nav ul.active {
        clip-path: circle(150vh at top right);
    }

    /* تكبير حجم الخط في الموبايل */
    nav ul li a {
        font-size: 1.5rem;
    }

    /* 3. تأثير الأنيميشن للينكات (Staggered Wave) */
    nav ul li {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    nav ul.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* تأخير لعمل شكل الموجة */
    nav ul.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    nav ul.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    nav ul.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    nav ul.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    nav ul.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    /* 4. أنيميشن أيقونة الهمبرجر لتتحول إلى X */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--color-mint-green);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--color-mint-green);
    }
}





/* --- Hamburger Icon Styles --- */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1002;
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background-color: var(--color-off-white);
    /* تم التعديل ليكون مرئياً على الخلفية الداكنة */
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* --- Mobile Menu Styles (Screens below 992px) --- */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .nav-links {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgb(11 25 44);

        display: flex !important;
        flex-direction: column !important;
        justify-content: center;
        align-items: center;

        /* 1. التعديل الأساسي: تأثير الدايرة (ديفولت إنجليزي يمين) */
        clip-path: circle(0px at top right);
        transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1);

        z-index: 1001;
        /* gap: 40px; */
    }

    .nav-links a {
        font-size: 21px;
    }

    /* عكس اتجاه فتح الدايرة في اللغة العربية (عشان تفتح من الشمال) */
    html[lang="ar"] .nav-links {
        clip-path: circle(0px at top left);
    }

    /* كلاس الفتح بيكبر الدايرة لحد ما تغطي الشاشة */
    .nav-links.active {
        clip-path: circle(150vh at top right);
    }

    html[lang="ar"] .nav-links.active {
        clip-path: circle(150vh at top left);
    }

    /* ========================================== */
    /* 2. تأثير التمويجة للينكات (Staggered Wave) */
    /* ========================================== */
    .nav-links li {
        opacity: 0;
        transform: translateY(30px);
        /* بيبدأ مخفي ونازل لتحت شوية */
        /* حركة باونس خفيفة للينكات وهي بتظهر */
        transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* لما القائمة تفتح، اللينكات تظهر وترجع لمكانها الطبيعي */
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* تأخير ظهور كل لينك عشان يعمل شكل الموجة (واحدة ورا التانية) */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.5s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.6s;
    }

    /* ========================================== */
    /* باقي كود الهمبرجر والقائمة المنسدلة (بدون تغيير) */
    /* ========================================== */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--accent-color);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--accent-color);
    }

    .nav-links .menu .item .submenu {
        position: static;
        min-width: 100%;
        background: transparent;
        border: none;
        /* box-shadow: none; */
        opacity: 1;
        visibility: visible;
        height: auto;
        padding-top: 15px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5px;
        flex-wrap: wrap;
    }

    /* تصغير حجم خط الخدمات الفرعية قليلاً لتمييزها عن اللينكات الرئيسية */
    .nav-links .menu .item .submenu .submenu-link {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        /* لون أهدى شوية */
        text-align: center;
        border-bottom: none;
        /* إزالة الخط السفلي في الموبايل ليكون الشكل أنظف */
        padding: 8px 20px;
    }

    .nav-links .menu .item .submenu .submenu-link:hover {
        background-color: var(--primary-color) !important;
        color: var(--accent-color) !important;
    }

    /* إخفاء السهم في الموبايل لأن القائمة مفتوحة بالفعل */
    .nav-links .menu .link svg {
        display: none;
    }

    /* إلغاء تأثيرات الـ Hover بتاعت الديسكتوب على الموبايل */
    .nav-links .menu .item:hover .link {
        background: transparent;
        border: none;
    }

    .nav-links .menu .item:hover .link::after {
        display: none;
    }


    .nav-links .menu .item.mobile-open .submenu {
        opacity: 1;
        visibility: visible;
        height: auto;
        padding-top: 15px;
    }


    .nav-links .menu .item:hover .link svg {
        transform: none;
        fill: var(--text-light);
    }

    .nav-links .menu .item.mobile-open .link svg {
        transform: rotate(-180deg);
        fill: var(--accent-color);
    }

    .hero {
        min-height: 112vh !important;
    }

    .hero-content {
        margin-top: -100px !important;
    }

    .hero-badge {
        font-size: 11px !important;
    }

    .value-card-pro {
        padding: 50px 10px !important;
        border-color: rgba(212, 175, 55, 0.4) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.05) !important;

    }


    .value-card-pro .icon-box {
        background: var(--accent-color) !important;
        transform: scale(1.1) !important;
    }

    .value-card-pro .icon-box i {
        color: var(--primary-color) !important;
    }

    .value-card-pro .pulse-ring {
        animation: pulseIcon 1.5s ease-out infinite !important;
    }

    .value-card-pro .watermark-number {
        color: rgba(212, 175, 55, 0.08) !important;
        transform: scale(1.1) rotate(-5deg) !important;
    }

}


.mouse {
    margin-top: 315px !important;
}

/* =========================================
   الأزرار والبطاقات (Buttons & Cards)
========================================= */
.btn-primary {
    background-color: var(--color-mint-dark);
    color: var(--color-off-white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background-color: var(--color-mint-green);
    color: var(--color-castleton);
    transform: translateY(-2px);
}

.bg-dark-green {
    background-color: var(--color-castleton);
    color: var(--color-off-white);
}

.bg-dark-green h1,
.bg-dark-green p {
    color: var(--color-off-white);
}

/* بطاقات الخدمات */
.service-card {
    background-color: var(--color-misty-jade);
    color: var(--color-castleton);
    border: 1px solid var(--color-misty-jade);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.service-card h3 {
    color: var(--color-castleton);
    transition: color 0.3s ease;
}

.service-card:hover {
    background-color: var(--color-castleton);
    color: var(--color-off-white);
    border-color: var(--color-mint-green);
}

.service-card:hover h3 {
    color: var(--color-off-white);
}

/* =========================================Footer Styles & Animations========================================= */
.main-footer {
    background-color: var(--color-castleton);
    color: var(--color-off-white);
    padding: 60px 0 0 0;
    font-family: inherit;
    border-top: 4px solid var(--color-mint-green);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px 40px;
}

.footer-col h3 {
    color: var(--color-mint-green);
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-mint-dark);
    transition: width 0.3s ease;
}

.footer-col:hover h3::after {
    width: 80px;
}

html[dir="ltr"] .footer-col h3::after {
    right: auto;
    left: 0;
}

.footer-col p {
    color: var(--color-off-white);
    opacity: 0.85;
    line-height: 1.8;
}

.footer-links,
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.contact-info li {
    margin-bottom: 15px;
}

.footer-links a,
.contact-info a {
    color: var(--color-off-white);
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--color-misty-jade);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-mint-green);
    opacity: 1;
    transform: translateX(-5px);
}

html[dir="ltr"] .footer-links a:hover {
    transform: translateX(5px);
}

.footer-links a:hover i {
    color: var(--color-mint-green);
}

/* لون أيقونات التواصل في الفوتر (نفس الكلاس القديم حتى لا تحتاج لتعديل الـ HTML) */
.icon-copper {
    color: var(--color-mint-green);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.map-link {
    display: inline-block !important;
    margin-top: 10px;
    background-color: rgba(165, 194, 180, 0.15);
    /* شفافية من Misty Jade */
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid var(--color-misty-jade);
    color: var(--color-off-white) !important;
    transition: all 0.3s ease !important;
}

.map-link:hover {
    background-color: var(--color-mint-dark);
    border-color: var(--color-mint-green);
    color: var(--color-off-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(27, 115, 86, 0.4);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-misty-jade);
    color: var(--color-castleton);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icons a:hover {
    background-color: var(--color-mint-green);
    color: var(--color-castleton);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.25);
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-off-white);
    opacity: 0.7;
}


/**********************************************floating contact*******************************************************************/


#hk-container-floating {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    /* لضمان ظهوره فوق أي عنصر آخر */
}

/* تمدد الحاوية عند الوقوف عليها لضمان عدم اختفاء الأزرار الفرعية */
#hk-container-floating:hover {
    height: 350px;
    width: 90px;
}

/* ========================================= */
/* Main Button */
/* ========================================= */
#hk-floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--hk-gold, #C6A75E);
    /* اللون الذهبي للفت الانتباه */
    position: absolute;
    bottom: 0;
    right: 5px;
    cursor: pointer;
    box-shadow: 0px 5px 20px rgba(198, 167, 94, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

#hk-floating-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 25px rgba(198, 167, 94, 0.6);
}

/* أيقونات الزر الرئيسي (التبديل بين السماعة وعلامة X) */
.hk-main-icon,
.hk-close-icon {
    font-size: 1.5rem;
    color: var(--hk-primary, #092C56);
    /* أيقونة كحلية */
    position: absolute;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.hk-close-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

#hk-container-floating:hover .hk-main-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

#hk-container-floating:hover .hk-close-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* ========================================= */
/* Child Buttons (Social Media) */
/* ========================================= */
.hk-nds {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: absolute;
    right: 12.5px;
    /* توسيط بالنسبة للزر الرئيسي */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transform: scale(0) translateY(20px);
    opacity: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* حركة ارتدادية Bouncy */
}

/* ألوان السوشيال ميديا المخصصة */
.hk-nd1 {
    background: var(--hk-primary, #092C56);
    bottom: 80px;
}

/* اتصال */
.hk-nd2 {
    background: #1877F2;
    bottom: 140px;
}

/* فيسبوك */
.hk-nd3 {
    background: #E4405F;
    bottom: 200px;
}

/* انستجرام */
.hk-nd4 {
    background: #25D366;
    bottom: 260px;
}

/* واتساب */

/* تأثير الـ Hover على الأزرار الفرعية */
.hk-nds:hover {
    transform: scale(1.1) !important;
    color: white;
}

/* ترتيب ظهور الأزرار الفرعية عند الوقوف على الحاوية */
#hk-container-floating:hover .hk-nds {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* تأخير ظريف (Staggered Animation) لتبدو كأنها تخرج واحدة تلو الأخرى */
#hk-container-floating:hover .hk-nd1 {
    transition-delay: 0.05s;
}

#hk-container-floating:hover .hk-nd2 {
    transition-delay: 0.1s;
}

#hk-container-floating:hover .hk-nd3 {
    transition-delay: 0.15s;
}

#hk-container-floating:hover .hk-nd4 {
    transition-delay: 0.2s;
}

/* ========================================= */
/* Tooltips (إضافة مبهرة لتوضيح الزر) */
/* ========================================= */
.hk-nds::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    /* مكان التلميح على يسار الأزرار */
    background: rgba(9, 44, 86, 0.9);
    /* خلفية كحلية زجاجية */
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* سهم صغير للتلميح */
.hk-nds::after {
    content: '';
    position: absolute;
    right: 50px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(9, 44, 86, 0.9);
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.hk-nds:hover::before,
.hk-nds:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   Hero Section Styles (Cinematic Video Redesign)
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--color-off-white);
    padding: 120px 0 80px;
    overflow: hidden;
    margin-top: -75px;
    /* Pull it up behind the sticky glass navbar */
    z-index: 1;
    /* Keep it below navbar (z-index: 1000) */
}

/* Video Background Layer */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Cinematic Gradient Overlay overlaying video to ensure high text contrast */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: background 0.3s ease;
}

/* RTL: Gradient starts strong dark green on the right, fades out to the left */
html[dir="rtl"] .video-overlay {
    background: linear-gradient(to left, rgba(0, 86, 63, 0.95) 10%, rgba(0, 86, 63, 0.65) 60%, rgba(0, 86, 63, 0.25) 100%);
}

/* LTR: Gradient starts strong dark green on the left, fades out to the right */
html[dir="ltr"] .video-overlay {
    background: linear-gradient(to right, rgba(0, 86, 63, 0.95) 10%, rgba(0, 86, 63, 0.65) 60%, rgba(0, 86, 63, 0.25) 100%);
}

/* Mobile responsive overlay: Top-to-bottom wash for stacked viewports */
@media (max-width: 992px) {

    html[dir="rtl"] .video-overlay,
    html[dir="ltr"] .video-overlay {
        background: linear-gradient(to bottom, rgba(0, 86, 63, 0.95) 30%, rgba(0, 86, 63, 0.7) 75%, rgba(0, 86, 63, 0.3) 100%);
    }
}

/* Content Wrapper */
.hero-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.hero-content {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* RTL Layout Alignments */
html[dir="rtl"] .hero-content {
    text-align: right;
    align-items: flex-start;
    margin-inline-start: 5%;
}

/* LTR Layout Alignments */
html[dir="ltr"] .hero-content {
    text-align: left;
    align-items: flex-start;
    margin-inline-start: 5%;
}

/* Responsive adjustments for content alignments */
@media (max-width: 768px) {

    html[dir="rtl"] .hero-content,
    html[dir="ltr"] .hero-content {
        margin-inline-start: 0;
        text-align: center;
        align-items: center;
        padding: 0 10px;
    }
}

/* Premium Glassmorphic Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(168, 230, 207, 0.12);
    border: 1px solid rgba(168, 230, 207, 0.4);
    color: var(--color-mint-green);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 86, 63, 0.2);
    align-self: flex-start;
}

html[dir="rtl"] .hero-badge {
    align-self: flex-start;
}

html[dir="ltr"] .hero-badge {
    align-self: flex-start;
}

@media (max-width: 768px) {
    .hero-badge {
        align-self: center !important;
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

.hero-badge i {
    margin-inline-end: 8px;
    animation: badge-star-spin 3s infinite linear;
}

@keyframes badge-star-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Cinematic Typography */
.hero-section h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--color-off-white);
    line-height: 1.25;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
}

/* Glowing text highlight */
.hero-section h1 span {
    color: var(--color-mint-green);
    text-shadow: 0 0 15px rgba(168, 230, 207, 0.4);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: rgba(244, 249, 246, 0.85);
    /* Highly readable misty white text */
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero-section p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Button & Call to Action Groups */
.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }
}

/* Premium WhatsApp Pulsing Button */
.hero-actions .btn-primary {
    font-size: 1.1rem;
    padding: 14px 36px;
    border-radius: 50px;
    background-color: var(--color-mint-dark);
    color: var(--color-off-white);
    box-shadow: 0 0 0 0 rgba(27, 115, 86, 0.7), 0 10px 25px rgba(27, 115, 86, 0.3);
    animation: pulse-effect-hero 2s infinite;
    /* تم تغيير الاسم لمنع التعارض مع الزر العائم */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-actions .btn-primary:hover {
    background-color: var(--color-mint-green);
    color: var(--color-castleton);
    box-shadow: 0 8px 20px rgba(168, 230, 207, 0.4);
    transform: translateY(-3px);
}

@keyframes pulse-effect-hero {
    0% {
        transform: scale(0.96);
        box-shadow: 0 0 0 0 rgba(27, 115, 86, 0.7), 0 10px 25px rgba(27, 115, 86, 0.3);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 18px rgba(27, 115, 86, 0), 0 10px 25px rgba(27, 115, 86, 0.3);
    }

    100% {
        transform: scale(0.96);
        box-shadow: 0 0 0 0 rgba(27, 115, 86, 0), 0 10px 25px rgba(27, 115, 86, 0.3);
    }
}

/* Interactive Scroll Indicator Mouse Wheel */
.scroll-indicator {
    position: absolute;
    bottom: 101px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
        transform: translateX(-50%) scale(0.8);
    }
}

.scroll-indicator:hover {
    opacity: 0.8;
    transform: translateX(-50%) translateY(4px);
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid rgba(168, 230, 207, 0.6);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 10px rgba(168, 230, 207, 0.2);
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-mint-green);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.6s infinite ease-in-out;
}

@keyframes scroll-wheel-anim {
    0% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.2;
    }

    100% {
        top: 8px;
        opacity: 1;
    }
}

.pulse-btn {
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 50px;
    /* زر دائري الأطراف يعطي طابعاً أحدث */
    background-color: var(--color-mint-dark);
    box-shadow: 0 0 0 0 rgba(27, 115, 86, 0.7);
    animation: pulse-effect 2s infinite;
}

@keyframes pulse-effect {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(27, 115, 86, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(27, 115, 86, 0);
        /* الحلقة تتسع وتختفي */
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(27, 115, 86, 0);
    }
}

/* للشاشات الصغيرة */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* =========================================
   2. Trust Features Section (Floating Bar)
========================================= */
.trust-features-section {
    position: relative;
    z-index: 20;
    /* يجب أن يكون أعلى من الـ Hero لكي يطفو فوقه */
    /* width: 100%; */
    padding: 0 15px;
}

.trust-features-wrapper {
    /* السحب للأعلى ليتداخل مع الـ Hero */
    margin-top: -80px;

    /* تأثير Glassmorphism الفخم */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    /* حواف وظلال */
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 86, 63, 0.08);
    /* ظل خفيف بلون Castleton */
    border: 1px solid rgba(255, 255, 255, 1);
    border-top: 4px solid var(--color-mint-dark);
    /* خط علوي يعطي طابع القوة */

    /* التوزيع الداخلي (Grid) */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 35px 20px;
}

.feature-box {
    text-align: center;
    padding: 0 20px;
    /* تجهيز العناصر مخفية ونازلة لتحت عشان الـ GSAP يطلعها */
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

/* فواصل بين العناصر (باستثناء العنصر الأخير) */
html[dir="rtl"] .feature-box:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 0;
    height: 80%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.06);
}

html[dir="ltr"] .feature-box:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background-color: var(--color-off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-mint-dark);
    transition: all 0.3s ease;
}

.feature-box h3 {
    font-size: 1.15rem;
    color: var(--color-castleton);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.9rem;
    color: #666;
    /* لون رمادي مريح للقراءة */
    margin: 0;
    line-height: 1.6;
}

/* تأثير التمرير (Hover) */
.feature-box:hover .feature-icon {
    background-color: var(--color-mint-dark);
    color: var(--color-off-white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(27, 115, 86, 0.2);
}

/* التجاوب مع الشاشات المختلفة (Responsive) */
@media (max-width: 992px) {
    .trust-features-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }

    html[dir="rtl"] .feature-box:nth-child(2)::after,
    html[dir="ltr"] .feature-box:nth-child(2)::after {
        display: none;
        /* إخفاء الفاصل بعد العنصر الثاني في التابلت */
    }
}

@media (max-width: 576px) {
    .trust-features-wrapper {
        grid-template-columns: 1fr;
        gap: 30px 0;
        margin-top: -50px;
        padding: 30px 10px;
    }

    .feature-box::after {
        display: none !important;
        /* إخفاء كل الفواصل في الموبايل */
    }
}


/* =========================================
   3. Services Overview (Bento Grid)
========================================= */
.services-overview {
    /* padding: 100px 15px; */
    padding-bottom: 100px;
    background-color: var(--color-off-white);
}

/* =========================================
   Modern Section Header Styles
========================================= */
.section-header {
    margin-bottom: 75px;
    position: relative;
    text-align: center;
    z-index: 10;
}

.section-header h2 {
    /* حجم خط متجاوب ذكي: يبدأ من 2rem في الموبايل ويكبر حتى 3rem في الشاشات الكبيرة */
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;

    /* تدرج لوني فخم للنص */
    background: linear-gradient(135deg, var(--color-castleton) 0%, var(--color-mint-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* خط زينة سفلي مضيء (Glowing Underline) */
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    /* توسيط رياضي دقيق */
    width: 50px;
    height: 5px;
    border-radius: 50px;
    background: var(--color-mint-green);
    box-shadow: 0 4px 12px rgba(168, 230, 207, 0.6);
    /* تأثير التوهج النظيف */
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* حركة تمدد الخط عند مرور الماوس على القسم */
.section-header:hover h2::after {
    width: 120px;
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
    /* لون رمادي ناعم جداً مريح للعين */
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

/* للشاشات الصغيرة */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 50px;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* تصميم شبكة Bento */
.bento-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    border-radius: 20px;
    padding: 40px 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 86, 63, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    /* 1. منع اللاج: تحديد ما يتم عمل transition له بدلاً من all */
    transition: translate 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* 2. تسريع الهاردوير لمنع التقطيع (Hardware Acceleration) */
    will-change: transform, translate, box-shadow;
    backface-visibility: hidden;
}

/* إضافة الأنيميشن الناعم للكروت الصغيرة فقط (بأوقات مختلفة) */
.service-card:nth-child(2) {
    animation: smoothFloat 6s ease-in-out infinite;
}

.service-card:nth-child(3) {
    animation: smoothFloat 6s ease-in-out infinite 2s;
}

.service-card:nth-child(4) {
    animation: smoothFloat 6s ease-in-out infinite 1s;
}

/* إيقاف حركة الصعود والهبوط للكارت الكبير لمنع ثقل الصفحة لأن به صورة خلفية */
.service-card.bento-large {
    animation: none !important;
}

/* =========================================
   Keyframes for Lifelike Motion
========================================= */
@keyframes smoothFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}



.service-card:hover .service-link {
    color: var(--color-off-white) !important;
}

/* أحجام الكروت لكسر الملل (Bento Style) */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 400px;
    background: var(--color-castleton);
    /* لتمييزه */
    color: var(--color-off-white);
}

.bento-wide {
    grid-column: span 2;
}

/* المحتوى داخل الكارت */
.card-content {
    position: relative;
    z-index: 2;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-castleton);
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.bento-large .icon-wrapper {
    background: rgba(168, 230, 207, 0.2);
    color: var(--color-mint-green);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: inherit;
}

.service-card p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* رابط التفاصيل (Micro-interaction) */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--color-castleton);
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.bento-large .service-link {
    color: var(--color-mint-green);
}

/* ضبط اتجاه السهم حسب اللغة */
html[dir="rtl"] .arrow-icon {
    transform: rotate(0deg);
}

html[dir="ltr"] .arrow-icon {
    transform: rotate(180deg);
}

/* تأثيرات الماوس السينمائية (Hover Effects) */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 86, 63, 0.15);
}


.service-card:hover .icon-wrapper {
    background: var(--color-mint-dark);
    color: var(--color-off-white);
    transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .service-link {
    gap: 18px;
    /* السهم يتحرك بشكل أنيق */
    color: var(--color-mint-dark);
}

.bento-large:hover .service-link {
    color: var(--color-mint-green);
}

/* خلفية الصورة للكارت الكبير */
.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.service-card:hover .card-bg-image {
    opacity: 0.25;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .bento-services-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 10px;
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .bento-services-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-wide {
        grid-column: span 1;
    }

    /* تأثيرات الماوس السينمائية (Hover Effects) */
    .service-card {
        box-shadow: 0 20px 40px rgba(0, 86, 63, 0.15) !important;
    }

    .service-card .service-link {
        color: var(--color-off-white) !important;
    }

    .service-card .icon-wrapper {
        background: var(--color-mint-dark) !important;
        color: var(--color-off-white) !important;
        transform: scale(1.1) rotate(-5deg) !important;
    }

    .service-card {

        background-color: var(--color-castleton) !important;
        color: var(--color-off-white) !important;
        border-color: var(--color-mint-green) !important;

    }
}



/* =========================================
   تعديل الكارت الكبير (Bento Large) ليكون صورة مع تدرج سفلي
========================================= */

/* 1. إزالة الخلفية المصمتة والحدود من الكارت الكبير */
.service-card.bento-large {
    background: transparent;
    /* إزالة لون الخلفية */
    border: none;
    /* إزالة الحدود لتبدو الصورة مدمجة */
    padding: 40px 30px;
    /* الحفاظ على المساحات الداخلية */
}

/* 2. إظهار صورة الخلفية بالكامل */
.bento-large .card-bg-image {
    opacity: 1;
    /* إظهار الصورة بوضوح 100% بدلاً من 0.15 */
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* تجهيز تأثير الزووم */
}

/* 3. التدرج اللوني (Overlay) - شفاف من الأعلى وغامق بالأسفل */
.service-card.bento-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* يبدأ شفاف (transparent) من فوق، وينتهي بلون Castleton الغامق جداً تحت الكلام */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 86, 63, 0.3) 50%, rgba(0, 86, 63, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
    /* عشان ما يأثرش على الضغط على الزرار */
}

/* 4. التأكد من أن المحتوى فوق التدرج ومحاذاة للأسفل */
.bento-large .card-content {
    z-index: 3;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* إجبار المحتوى للنزول في الجزء الغامق */
}

/* 5. تأثير احترافي عند التمرير (Hover) */
.service-card.bento-large:hover {
    background: transparent;
    /* منع ظهور خلفية ملونة عند الهوفر */
}

.service-card.bento-large:hover .card-bg-image {
    transform: scale(1.08);
    /* زووم بطيء وناعم للصورة بيدي شكل سينمائي */
    opacity: 1;
}

/* =========================================
   4. Premium Emergency CTA (Awwwards Level)
========================================= */
.premium-emergency-cta {
    position: relative;
    padding: 150px 15px;
    background-color: #031710;
    /* لون أغمق من الـ Castleton لعمق سينمائي */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

/* الأضواء المحيطية (Ambient Lighting) */
.ambient-glow {
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 230, 207, 0.08) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.glow-left {
    top: -20%;
    left: -10%;
}

.glow-right {
    bottom: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(27, 115, 86, 0.15) 0%, transparent 60%);
}

/* حلقات الرادار (تأثير الطوارئ والبحث) */
.radar-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(168, 230, 207, 0.15);
    animation: radar-pulse 6s infinite linear;
}

.ring-1 {
    width: 300px;
    height: 300px;
    animation-delay: 0s;
}

.ring-2 {
    width: 600px;
    height: 600px;
    animation-delay: 2s;
}

.ring-3 {
    width: 900px;
    height: 900px;
    animation-delay: 4s;
}

@keyframes radar-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* النص الخلفي العملاق */
.massive-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* اللوحة الزجاجية الفخمة (Glass Panel) */
.emergency-glass-panel {
    position: relative;
    z-index: 10;
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(168, 230, 207, 0.1);
    border-radius: 30px;
    padding: 70px 50px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* شارة التنبيه */
.alert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(168, 230, 207, 0.1);
    border: 1px solid rgba(168, 230, 207, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--color-mint-green);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: var(--color-mint-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-mint-green);
    animation: blink-dot 1.5s infinite;
}

@keyframes blink-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* النصوص داخل اللوحة */
.emergency-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: #FFF;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.emergency-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* الزر الفاخر (Premium Button) */
.magnetic-btn-wrapper {
    display: inline-block;
    padding: 20px;
    /* لزيادة مساحة التقاط الماوس للتأثير المغناطيسي */
}

.btn-premium-emergency {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-mint-green);
    color: var(--color-castleton);
    padding: 12px 12px 12px 35px;
    /* مسافة أقل من جهة الأيقونة للنسخة الإنجليزية (يتم عكسها برمجياً) */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    box-shadow: 0 15px 30px rgba(168, 230, 207, 0.2);
}

/* html[dir="rtl"] .btn-premium-emergency {
    padding: 12px 35px 12px 12px;
} */

.btn-premium-emergency .btn-icon {
    width: 45px;
    height: 45px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-start: 20px;
    color: var(--color-castleton);
    transition: transform 0.4s ease;
}

/* تأثير اللمعان على الزر */
.btn-premium-emergency::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: button-shine 4s infinite;
}

@keyframes button-shine {

    0%,
    50% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.btn-premium-emergency:hover {
    box-shadow: 0 20px 40px rgba(168, 230, 207, 0.4);
    transform: scale(1.02);
}

.btn-premium-emergency:hover .btn-icon {
    transform: scale(1.1) rotate(-15deg);
}

/* مؤشرات الثقة (Trust Indicators) */
.emergency-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.indicator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.indicator i {
    color: var(--color-mint-green);
}

@media (max-width: 768px) {
    .emergency-glass-panel {
        padding: 40px 25px;
    }

    .emergency-trust-indicators {
        flex-direction: column;
        gap: 15px;
    }

    .btn-premium-emergency {
        font-size: 12px !important;
    }

    .container-mob {
        width: auto !important;
    }

    .premium-coverage-section {
        padding: 29px 0 !important;
    }
}



/* =========================================
   5. Ultra-Premium Coverage Area
========================================= */
.premium-coverage-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-off-white);
    overflow: hidden;
}

.coverage-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(168, 230, 207, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.coverage-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 5;
    padding: 1px 30px;
}


/* =========================================
   تنسيق الـ Iframe السحري (Dark Map)
========================================= */
.premium-iframe-map {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: none;
    position: relative;
    z-index: 1;

    /* هذا الفلتر هو السحر: يحول الخريطة لأسود وأبيض، ثم يعكس الألوان، ثم يضبط الدرجة لتلائم هويتك */
    filter: grayscale(100%) invert(95%) contrast(110%) sepia(20%) hue-rotate(110deg);
    transition: filter 0.5s ease;
}

/* طبقة لونية خفيفة تدمج الخريطة مع ألوان الموقع (Castleton) */
.map-overlay-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(0, 86, 63, 0.15);
    /* لمسة خضراء داكنة */
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6);
    /* حواف مظلمة سينمائية */
    z-index: 2;
    pointer-events: none;
    /* مهم جداً: يسمح للماوس بالتحكم في الخريطة التي تحتها */
}

/* الرادار المركزي (دبوس النبض) */
.central-radar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
    /* يسمح بسحب الخريطة أسفله */
}

.pin-core {
    width: 16px;
    height: 16px;
    background: var(--color-mint-green);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--color-mint-green);
}

.pin-ripple {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-mint-green);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ripple-effect 2s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
}

@keyframes ripple-effect {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
    }
}

/* عند مرور الماوس، تضيء الخريطة قليلاً لتشجيع التفاعل */
.coverage-map-wrapper:hover .premium-iframe-map {
    filter: grayscale(80%) invert(90%) contrast(120%) sepia(30%) hue-rotate(110deg);
}

/* ------------------ Left Side (Content) ------------------ */
.coverage-content {
    flex: 1;
    max-width: 550px;
}

.glass-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(27, 115, 86, 0.1);
    border: 1px solid rgba(27, 115, 86, 0.2);
    border-radius: 30px;
    color: var(--color-mint-dark);
    font-size: 0.85rem;
    font-weight: 800;
    /* margin-bottom: 20px; */
    letter-spacing: 1px;
}

.title-gradient {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-castleton) 0%, var(--color-mint-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* line-height: 1.2; */
}

.coverage-desc {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* كبسولات الـ SEO (Tech Pills) */
.seo-tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 45px;
}

.tech-pill {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 230, 207, 0.5);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-castleton);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.tech-pill i {
    color: var(--color-mint-green);
    font-size: 0.85rem;
}

.tech-pill:hover {
    transform: translateY(-3px);
    border-color: var(--color-mint-dark);
    box-shadow: 0 10px 20px rgba(168, 230, 207, 0.3);
    background: #FFF;
}

/* زر خريطة جوجل الفخم */
.btn-premium-map {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--color-castleton);
    color: #FFF;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 86, 63, 0.2);
}

.btn-premium-map:hover {
    background: var(--color-mint-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 115, 86, 0.3);
}

/* ------------------ Right Side (Holographic Map) ------------------ */
.coverage-map-wrapper {
    flex: 1;
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 30px;
    padding: 15px;
    /* زجاج خلفي لإبراز الخريطة */
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 60px rgba(0, 86, 63, 0.08);
}

.holographic-map {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: var(--color-castleton);
    /* لون الخريطة الأساسي */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    /* تأثير لون سينمائي على الخريطة */
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

/* الدبابيس المضيئة (Glowing Map Pins) */
.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* مواقع تخيلية للدبابيس على الخريطة */
.pin-north {
    top: 20%;
    left: 40%;
}

.pin-center {
    top: 45%;
    left: 45%;
}

.pin-south {
    top: 75%;
    left: 55%;
}

.pin-east {
    top: 50%;
    left: 70%;
}

.pin-core {
    width: 16px;
    height: 16px;
    background: var(--color-mint-green);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--color-mint-green);
}

.pin-ripple {
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-mint-green);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ripple-effect 2s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
}

@keyframes ripple-effect {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* البطاقة العائمة فوق الخريطة (Floating Widget) */
.floating-map-widget {
    position: absolute;
    bottom: 30px;
    right: 30px;
    /* ستتغير لليسار في الإنجليزية برمجياً */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #FFF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

html[dir="ltr"] .floating-map-widget {
    right: auto;
    left: 30px;
}

.floating-map-widget i {
    font-size: 1.5rem;
    color: var(--color-mint-green);
    animation: pulse-effect 2s infinite;
}

.floating-map-widget strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.floating-map-widget span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* التجاوب مع الموبايل */
@media (max-width: 992px) {
    .coverage-container {
        flex-direction: column;
        text-align: center;
    }

    .coverage-content {
        max-width: 100%;
    }

    .seo-tech-pills {
        justify-content: center;
    }

    .coverage-map-wrapper {
        height: 400px;
    }
}




/*******************************************************************ABOUT-US-PAGE*********************************************/
/* =========================================
   4. ABOUT US (ULTRA-PREMIUM SECTION)
========================================= */

/* =========================================
   الخلفية الهندسية (Premium Grid Pattern)
========================================= */
.premium-bg-pattern {
    position: absolute;
    inset: 0;
    /* شبكة نقطية راقية وشفافة جداً */
    background-image: radial-gradient(rgba(27, 115, 86, 0.08) 1.5px, transparent 1.5px);
    background-size: 35px 35px;
    z-index: 0;
    pointer-events: none;
    /* تدرج لإخفاء أطراف الشبكة ودمجها مع لون الخلفية */
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* رفع الـ z-index للحاوية لضمان ظهورها فوق الخلفية */
.about-premium-section .container {
    position: relative;
    z-index: 2;
}

/* =========================================
   تطوير النصوص وتوزيعها (Typography Upgrade)
========================================= */
.premium-quote {
    position: relative;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-mint-dark);
    line-height: 1.8;
    margin: 0 0 25px 0;
    padding-right: 25px;
    /* المسافة للخط الجانبي في العربي */
    border-right: 4px solid var(--color-mint-green);
    background: linear-gradient(90deg, transparent, rgba(168, 230, 207, 0.05));
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 8px 0 0 8px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5c54;
    margin-bottom: 35px;
    max-width: 95%;
    text-align: justify;
}

/* =========================================
   شبكة المميزات المصغرة (Mini Bento Cards)
========================================= */
.features-bento-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.mini-feature-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(0, 86, 63, 0.03);
}

.mini-feature-card .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    /* التدرج اللوني للأيقونة */
    background: linear-gradient(135deg, var(--color-mint-green), var(--color-misty-jade));
}

.mini-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-castleton);
    margin-bottom: 5px;
}

.mini-feature-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.mini-feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 30px rgba(0, 86, 63, 0.08);
    border-color: var(--color-mint-green);
}

/* =========================================
   Responsive Design for Mini Grid
========================================= */
@media (max-width: 600px) {
    .features-bento-mini {
        grid-template-columns: 1fr;
    }

    .premium-quote {
        font-size: 1.1rem;
    }
}

.about-premium-section {
    position: relative;
    padding: 15px 15px;
    background-color: var(--color-off-white);
    overflow: hidden;
    z-index: 1;
}

/* =========================================
   Cinematic Ambient Lighting
========================================= */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
    will-change: transform;
}

.glow-left {
    top: -10%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 230, 207, 0.4) 0%, rgba(244, 249, 246, 0) 70%);
    animation: pulseGlow 10s infinite alternate ease-in-out;
}

.glow-right {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 115, 86, 0.15) 0%, rgba(244, 249, 246, 0) 70%);
    animation: pulseGlow 8s infinite alternate-reverse ease-in-out;
}

/* =========================================
   Grid Layout & Structural Geometry
========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    /* نسبة غير متماثلة لكسر الملل */
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

/* =========================================
   Typography & Content Styling
========================================= */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(27, 115, 86, 0.1);
    border: 1px solid rgba(27, 115, 86, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--color-castleton);
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-mint-dark);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(27, 115, 86, 0.7);
    animation: pulseDot 2s infinite;
}

.about-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--color-castleton);
    letter-spacing: -0.5px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-castleton) 0%, var(--color-mint-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a5c54;
    margin-bottom: 40px;
    max-width: 600px;
}

/* =========================================
   Premium Features List
========================================= */
.premium-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 45px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-features-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-castleton);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-mint-green), var(--color-misty-jade));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-castleton);
    font-size: 1.2rem;
    box-shadow: 0 8px 15px rgba(168, 230, 207, 0.4);
    transition: transform 0.3s ease;
}

.premium-features-list li:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* =========================================
   Ultra-Premium Buttons
========================================= */
.about-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-ultra {
    position: relative;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.btn-whatsapp {
    background-color: var(--color-castleton);
    color: var(--color-off-white);
    box-shadow: 0 15px 30px rgba(0, 86, 63, 0.2);
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #25D366 0%, var(--color-mint-dark) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
    color: #fff;
}

.btn-whatsapp:hover::before {
    opacity: 1;
}

.btn-link {
    color: var(--color-castleton);
    font-weight: 800;
    text-decoration: none;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.btn-link:hover {
    gap: 15px;
    color: var(--color-mint-dark);
}

/* =========================================
   Visuals & Modern Glassmorphism
========================================= */
.about-visuals {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.main-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 86, 63, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.main-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-image-wrapper:hover .main-image {
    transform: scale(1.05);
}

/* Cinematic Overlay */
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 86, 63, 0.3) 0%, transparent 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* 🌟 Apple-tier Glass Cards */
.glass-stat-card,
.glass-review-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 20px 40px rgba(0, 86, 63, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    z-index: 5;
    will-change: transform;
}

.glass-stat-card {
    bottom: 50px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-mint-dark);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-castleton);
    line-height: 1.4;
}

.glass-review-card {
    top: 60px;
    left: -10px;
    padding: 20px 25px;
}

.review-stars {
    color: #FFB800;
    /* لون ذهبي للتقييم */
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-weight: 800;
    color: var(--color-castleton);
    font-size: 1rem;
}

/* =========================================
   Smooth Animations
========================================= */
.floating-element-1 {
    animation: floatSlow 7s ease-in-out infinite;
}

.floating-element-2 {
    animation: floatSlow 6s ease-in-out infinite 1.5s;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 115, 86, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(27, 115, 86, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(27, 115, 86, 0);
    }
}

/* =========================================
   Responsive Design
========================================= */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visuals {
        height: 500px;
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
    }

    .main-image-wrapper {
        width: 100%;
        right: 0;
    }

    .glass-stat-card {
        left: 20px;
        bottom: 30px;
    }

    .glass-review-card {
        left: 20px;
        top: 30px;
    }
}

@media (max-width: 768px) {
    .about-premium-section {
        padding: 80px 15px;
    }

    .about-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .btn-ultra {
        width: 100%;
        justify-content: center;
    }

    .glass-stat-card,
    .glass-review-card {
        padding: 15px 20px;
        /* إيقاف التعويم في الموبايل لتحسين الأداء */
        animation: none;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

/* =========================================
   1. The Cinematic Sticky Process (Upgraded)
========================================= */
/* =========================================
   1. Redesigned Bento Process Section
========================================= */
.premium-process-section {
    padding: 120px 0;
    background: var(--color-castleton);
    /* We shift to deep dark green for HUD pop */
    color: var(--color-off-white);
    position: relative;
    overflow: visible;
}

/* Custom ambient glowing circles behind Bento */
.glow-bento-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 230, 207, 0.1) 0%, transparent 70%);
    position: absolute;
    top: 10%;
    right: 5%;
    pointer-events: none;
    z-index: 0;
}

.glow-bento-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 115, 86, 0.15) 0%, transparent 70%);
    position: absolute;
    bottom: 5%;
    left: 5%;
    pointer-events: none;
    z-index: 0;
}

.premium-process-section .section-header .tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 230, 207, 0.1);
    border: 1px solid rgba(168, 230, 207, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    color: var(--color-mint-green);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.premium-process-section .section-header h2 {
    color: var(--color-off-white) !important;
}

.premium-process-section .section-desc {
    color: var(--color-misty-jade);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 15px auto 0 auto;
}

.process-bento-layout {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

/* -----------------------------------------
   Right Column: Bento Steps Container
----------------------------------------- */
.process-steps-container {
    width: 55%;
    position: relative;
    padding-right: 40px;
    /* Space for timeline laser track */
}

/* The neon laser line track */
.timeline-laser-track {
    position: absolute;
    right: 15px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: rgba(168, 230, 207, 0.15);
    border-radius: 10px;
}

.timeline-laser-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--color-mint-green), transparent);
    border-radius: 10px;
    box-shadow: 0 0 15px var(--color-mint-green), 0 0 30px var(--color-mint-dark);
    will-change: transform;
}

/* Bento Glass Cards */
.bento-step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 40px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.bento-step-card:last-child {
    margin-bottom: 0;
}

.card-glass-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(168, 230, 207, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.bento-step-card:hover .card-glass-glow {
    opacity: 1;
}

/* Bento Card Hover State */
.bento-step-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(168, 230, 207, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(168, 230, 207, 0.05);
}

/* Card active class triggered by ScrollTrigger */
.bento-step-card.is-active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(168, 230, 207, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(168, 230, 207, 0.05);
}

.step-badge-mini {
    position: absolute;
    top: 25px;
    left: 30px;
    font-family: monospace;
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(168, 230, 207, 0.15);
    transition: color 0.4s ease;
}

.bento-step-card.is-active .step-badge-mini {
    color: var(--color-mint-green);
    text-shadow: 0 0 10px rgba(168, 230, 207, 0.4);
}

.step-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.magnetic-icon-wrap {
    display: inline-flex;
    padding: 5px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(168, 230, 207, 0.1);
    border: 1px solid rgba(168, 230, 207, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-mint-green);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-step-card:hover .step-icon {
    background: var(--color-mint-green);
    color: var(--color-castleton);
    box-shadow: 0 10px 25px rgba(168, 230, 207, 0.4);
    transform: scale(1.05);
}

.step-card-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-off-white) !important;
    margin: 0;
}

.step-card-desc {
    font-size: 1.05rem;
    color: var(--color-misty-jade);
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.step-interactive-telemetry {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.telemetry-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: monospace;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
}

.telemetry-pill.active {
    color: var(--color-mint-green);
    background: rgba(168, 230, 207, 0.05);
    border-color: rgba(168, 230, 207, 0.15);
}

.bento-step-card.is-active .telemetry-pill {
    color: var(--color-mint-green);
    background: rgba(168, 230, 207, 0.05);
    border-color: rgba(168, 230, 207, 0.2);
}

/* -----------------------------------------
   Left Column: Holographic Dynamic Viewport
----------------------------------------- */
.process-hud-container {
    width: 45%;
    position: relative;
}

.hud-glass-panel {
    width: 100%;
    height: 72vh;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 36px;
    padding: 24px;
    position: sticky;
    top: 120px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* Moving scanner bar */
.hud-scanner-bar {
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-mint-green), transparent);
    box-shadow: 0 0 12px var(--color-mint-green), 0 0 20px var(--color-mint-dark);
    z-index: 10;
    pointer-events: none;
    animation: scanPulse 6s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

@keyframes scanPulse {
    0% {
        top: 24px;
        opacity: 0;
    }

    5%,
    95% {
        opacity: 1;
    }

    100% {
        top: calc(100% - 24px);
        opacity: 0;
    }
}

/* Telemetry Header */
.hud-telemetry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.hud-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hud-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.hud-status-dot.active {
    background: var(--color-mint-green);
    box-shadow: 0 0 10px var(--color-mint-green);
    animation: beacon 1.5s ease infinite;
}

@keyframes beacon {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.hud-status-text {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--color-misty-jade);
    letter-spacing: 1px;
}

.hud-timestamp {
    font-family: monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Viewport Screen */
.hud-viewport-screen {
    flex-grow: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hud-matrix-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 230, 207, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 230, 207, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 5;
    pointer-events: none;
}

.hud-images-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hud-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 2s ease-out;
}

.hud-img.active {
    opacity: 0.75;
    transform: scale(1);
}

/* Telemetry Parameters Footer */
.hud-telemetry-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 15px;
}

.hud-param-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 12px 16px;
}

.hud-param-label {
    font-family: monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.hud-param-value {
    font-family: monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-off-white);
    transition: color 0.3s ease;
}

.text-mint {
    color: var(--color-mint-green) !important;
}

/* -----------------------------------------
   Responsive Layout
----------------------------------------- */
@media (max-width: 992px) {
    .process-bento-layout {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .process-steps-container {
        width: 100%;
        padding-right: 0;
    }

    .timeline-laser-track {
        display: none;
        /* Hide timeline laser on tablet/mobile for UX */
    }

    .process-hud-container {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }

    .hud-glass-panel {
        height: 450px;
        position: relative;
        top: 0;
    }

    .bento-step-card {
        padding: 25px;
    }
}

/* =========================================
   2. The Infinite Tech Marquee
========================================= */
.tech-marquee-section {
    padding: 100px 0;
    background-color: var(--color-castleton);
    overflow: hidden;
    position: relative;
}

.marquee-container {
    display: flex;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    /* حركة لانهائية تعتمد على الـ CSS */
    animation: scrollMarquee 20s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
    /* تتوقف عند الهوفر */
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }

    /* قد تحتاجين تعديل الـ 50% حسب طول المحتوى */
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 40px;
    cursor: pointer;
}

.outline-text {
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.solid-text {
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-off-white);
    transition: all 0.4s ease;
}

.marquee-icon {
    font-size: 2.5rem;
    color: var(--color-mint-green);
    animation: rotateIcon 5s linear infinite;
}

@keyframes rotateIcon {
    100% {
        transform: rotate(360deg);
    }
}

.marquee-item:hover .outline-text {
    color: var(--color-mint-green);
    -webkit-text-stroke: 0px;
}

/* =========================================
   3. Immersive Portal & Cinematic Typewriter
========================================= */
.vision-immersive-portal {
    position: relative;
    padding: 160px 15px;
    background-color: #020b07;
    /* Cinematic Midnight Green */
    color: #fff;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Mouse-follow glow effect */
.portal-spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 230, 207, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
    will-change: left, top;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.vision-badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(168, 230, 207, 0.08);
    border: 1px solid rgba(168, 230, 207, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--color-mint-green);
    font-size: 0.95rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(168, 230, 207, 0.2);
}

.text-white-light {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.vision-main-text {
    font-size: clamp(1.8rem, 4.5vw, 3.8rem);
    line-height: 1.5;
    font-weight: 800;
    max-width: 1000px;
    margin: 0 auto;
}

/* Premium portal animated gradient text mask */
.portal-text-mask {
    font-weight: 900;
    background: linear-gradient(120deg, var(--color-mint-green) 0%, #10b981 30%, #34d399 70%, var(--color-mint-green) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: flowGradient 6s linear infinite;
    text-shadow: 0 0 30px rgba(168, 230, 207, 0.15);
}

@keyframes flowGradient {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: -200% center;
    }
}

.gsap-typewriter-reveal {
    color: var(--color-mint-green);
}

.custom-pulsing-cursor {
    display: inline-block;
    color: var(--color-mint-green);
    font-weight: 900;
    margin-left: 5px;
    animation: terminalPulse 1s step-end infinite;
}

@keyframes terminalPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vision-immersive-portal {
        padding: 100px 15px;
        min-height: 70vh;
    }

    .vision-main-text {
        line-height: 1.6;
    }
}

/**************************SERVICES PAGE ************************************************************/
/* =========================================
   Awwwards-Level Services Page Styles
========================================= */
/* =========================================
   Modern Split Layout Services Page
========================================= */

.services-split-page {
    background-color: var(--color-castleton);
    /* Deep green backdrop for maximum visual luxury */
    color: var(--color-off-white);
    overflow: hidden;
}

/* -------------------------------------
   Header / Immersive Hero Canvas
------------------------------------- */
.services-hero-light {
    position: relative;
    padding: 180px 15px 120px;
    background-color: #020e09;
    /* Cinematic Midnight Green */
    overflow: hidden;
    height: 47vh;
    text-align: center;
}

/* Background image with multi-layered visual overlays */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    /* Translucent city/piping framework */
    z-index: 1;
    mix-blend-mode: luminosity;
    will-change: transform;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(2, 14, 9, 0.4) 0%, #020e09 85%);
    z-index: 2;
    pointer-events: none;
}

/* High-tech grid canvas overlay */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 230, 207, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 230, 207, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 3;
    pointer-events: none;
    will-change: transform;
}

/* Floating Slow keyframe ambient orbs */
.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 2;
    pointer-events: none;
    opacity: 0.35;
    mix-blend-mode: screen;
}

.hero-bg-orb.orb-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--color-mint-green) 0%, transparent 70%);
    top: -50px;
    right: 10%;
    animation: floatSlowOrb1 18s ease-in-out infinite alternate;
}

.hero-bg-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-mint-dark) 0%, transparent 70%);
    bottom: -100px;
    left: 10%;
    animation: floatSlowOrb2 22s ease-in-out infinite alternate;
}

@keyframes floatSlowOrb1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 40px) scale(1.15);
    }
}

@keyframes floatSlowOrb2 {
    0% {
        transform: translate(0, 0) scale(1.1);
    }

    100% {
        transform: translate(-80px, -50px) scale(0.9);
    }
}

.relative-z {
    position: relative;
    z-index: 10;
}

.badge-glow-wrap {
    display: inline-block;
}

.mint-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: rgba(168, 230, 207, 0.06);
    border: 1px solid rgba(168, 230, 207, 0.2);
    border-radius: 50px;
    color: var(--color-mint-green);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(168, 230, 207, 0.15);
}

.mega-title-dark {
    font-size: clamp(2.3rem, 6vw, 4.2rem);
    font-weight: 900;
    color: var(--color-off-white) !important;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-mint {
    color: var(--color-mint-green);
    position: relative;
}

.hero-desc-dark {
    /* max-width: 650px; */
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--color-misty-jade);
    line-height: 1.8;
}

/* -------------------------------------
   Interactive Services Showcase Gallery
------------------------------------- */
.services-showcase {
    position: relative;
    padding: 80px 0 120px 0;
    background-color: var(--color-castleton);
    /* Deep green backdrop */
    overflow: hidden;
}

/* Background mesh patterns */
.showcase-mesh-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(168, 230, 207, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
}

/* Floating light halos deep behind cards */
.showcase-glow-halo {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.18;
    mix-blend-mode: screen;
}

.showcase-glow-halo.halo-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-mint-green) 0%, transparent 60%);
    top: 20%;
    left: -10%;
    animation: floatSlowOrb1 25s ease-in-out infinite alternate;
}

.showcase-glow-halo.halo-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--color-mint-dark) 0%, transparent 60%);
    bottom: 20%;
    right: -10%;
    animation: floatSlowOrb2 30s ease-in-out infinite alternate;
}

.split-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 120px;
    position: relative;
    z-index: 2;
}

.split-service-row:last-child {
    margin-bottom: 0;
}

.split-service-row.reverse-row {
    flex-direction: row-reverse;
}

.service-image-col,
.service-content-col {
    flex: 1;
    width: 50%;
}

/* --- Service Image Frame --- */
.image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    background-color: #000;
}

.image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    /* Soft blend */
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 115, 86, 0.3), rgba(168, 230, 207, 0));
    opacity: 0.6;
    transition: opacity 0.6s ease;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.split-service-row:hover .image-tint {
    opacity: 0.1;
}

.split-service-row:hover .image-wrapper img {
    transform: scale(1.06) rotate(0.5deg);
    opacity: 0.95;
}

/* --- Redesigned Service Bento Cards --- */
.service-content-col.gsap-content {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    padding: 50px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.01);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    transform-style: preserve-3d;
}

.card-glass-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(168, 230, 207, 0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-content-col.gsap-content:hover .card-glass-glow {
    opacity: 1;
}

/* Hover effects for bento card */
.service-content-col.gsap-content:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(168, 230, 207, 0.25);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(168, 230, 207, 0.05);
}

.service-number {
    position: absolute;
    top: 25px;
    left: 40px;
    font-family: monospace;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(168, 230, 207, 0.06);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    transition: color 0.4s ease;
}

html[dir="ltr"] .service-number {
    left: auto;
    right: 40px;
}

.service-content-col.gsap-content:hover .service-number {
    color: rgba(168, 230, 207, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(168, 230, 207, 0.08);
    border: 1px solid rgba(168, 230, 207, 0.15);
    color: var(--color-mint-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.service-content-col.gsap-content:hover .service-icon {
    background: var(--color-mint-green);
    color: var(--color-castleton);
    box-shadow: 0 10px 25px rgba(168, 230, 207, 0.35);
    transform: scale(1.05);
}

.service-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--color-off-white) !important;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-desc {
    font-size: 1.05rem;
    color: var(--color-misty-jade);
    line-height: 1.8;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
    max-width: 500px;
}

/* Premium fill button */
.btn-outline-mint {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    border: 2px solid var(--color-mint-green);
    color: var(--color-mint-green);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    background: transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-mint::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--color-mint-green);
    z-index: -1;
    transition: width 0.3s ease;
}

html[dir="rtl"] .btn-outline-mint::before {
    right: 0;
    left: auto;
}

.btn-outline-mint:hover {
    color: var(--color-castleton) !important;
    box-shadow: 0 10px 25px rgba(168, 230, 207, 0.35);
    transform: translateY(-2px);
}

.btn-outline-mint:hover::before {
    width: 100%;
}

/* Arrow direction handler */
html[dir="rtl"] .arrow-dir {
    transform: rotate(0deg);
}

html[dir="ltr"] .arrow-dir {
    transform: rotate(180deg);
}

.btn-outline-mint:hover .arrow-dir {
    transform: translateX(-5px);
}

html[dir="ltr"] .btn-outline-mint:hover .arrow-dir {
    transform: rotate(180deg) translateX(5px);
}

/* -------------------------------------
   Responsive Layout (Mobile & Tablets)
------------------------------------- */
@media (max-width: 992px) {
    .split-service-row {
        flex-direction: column !important;
        /* Stack columns vertically */
        gap: 40px;
        margin-bottom: 80px;
    }

    .service-image-col,
    .service-content-col {
        width: 100%;
    }

    .image-wrapper img {
        height: 380px;
    }

    .service-content-col.gsap-content {
        padding: 30px;
        text-align: center;
    }

    .service-number {
        top: 25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 5rem;
    }

    html[dir="ltr"] .service-number {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .service-icon {
        margin: 0 auto 20px auto;
    }

    .service-desc {
        margin: 0 auto 30px auto;
    }
}

/**************************COVARAGE PAGE***************************************/

/* =========================================
   Coverage Page Visual Command Redesign
========================================= */

.coverage-page {
    background-color: var(--color-castleton);
    /* Deep green backdrop */
    color: var(--color-off-white);
    overflow: hidden;
}

/* -------------------------------------
   Header / Immersive Map Hero
------------------------------------- */
.coverage-hero {
    position: relative;
    padding: 180px 15px 120px;
    background-color: #020e09;
    /* Midnight green */
    z-index: 1;
    /* Locked behind Navbar */
    overflow: hidden;
    height: 51vh;
}

/* Video wrapper */
.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-video-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    /* Translucent networking overlay */
    mix-blend-mode: luminosity;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(2, 14, 9, 0.4) 0%, #020e09 85%);
    z-index: 2;
    pointer-events: none;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 230, 207, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 230, 207, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 3;
    pointer-events: none;
}

.coverage-hero .hero-bg-orb {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--color-mint-green) 0%, transparent 70%);
    top: -50px;
    right: 15%;
    filter: blur(140px);
    z-index: 2;
    pointer-events: none;
    opacity: 0.3;
}

.coverage-hero .mega-title-dark {
    color: var(--color-off-white) !important;
}

.coverage-hero .hero-desc-dark {
    color: var(--color-misty-jade);
}

/* -------------------------------------
   Futuristic Radar Navigation Map
------------------------------------- */
.radar-section {
    position: relative;
    padding: 100px 0;
    background-color: #020b07;
    /* Dark topographic space */
    border-top: 1px solid rgba(168, 230, 207, 0.08);
    border-bottom: 1px solid rgba(168, 230, 207, 0.08);
    overflow: hidden;
}

.moving-tech-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 230, 207, 0.02) 1px, transparent 1px);
    background-size: 25px 25px;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

.radar-glow-halo {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 230, 207, 0.08) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.flex-radar-hud {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* The Map Center Container */
.radar-command-map {
    position: relative;
    width: 480px;
    height: 480px;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(168, 230, 207, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Concentric rings */
.radar-hologram-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(168, 230, 207, 0.08);
    pointer-events: none;
}

.radar-hologram-ring.ring-1 {
    width: 85%;
    height: 85%;
}

.radar-hologram-ring.ring-2 {
    width: 60%;
    height: 60%;
}

.radar-hologram-ring.ring-3 {
    width: 35%;
    height: 35%;
    border-style: solid;
    border-color: rgba(168, 230, 207, 0.04);
}

/* Rotating scanner sweep */
.radar-scanner-sweep {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(168, 230, 207, 0.08) 0deg, transparent 90deg, transparent 360deg);
    z-index: 2;
    pointer-events: none;
    animation: radarSweep 6s linear infinite;
}

@keyframes radarSweep {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Target locator Beacons */
.map-target-node {
    position: absolute;
    z-index: 5;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.node-pulse {
    position: absolute;
    top: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(168, 230, 207, 0.4);
    border: 1px solid var(--color-mint-green);
    transform: scale(0.5);
    opacity: 0;
    pointer-events: none;
}

/* Target locator Beacons active animation */
.map-target-node.is-active .node-pulse,
.map-target-node:hover .node-pulse {
    animation: beaconPulse 1.8s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
}

@keyframes beaconPulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.node-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-mint-green);
    box-shadow: 0 0 10px var(--color-mint-green), 0 0 20px var(--color-mint-dark);
    transition: all 0.3s ease;
}

.map-target-node.is-active .node-dot,
.map-target-node:hover .node-dot {
    background: #FFFFFF;
    box-shadow: 0 0 15px #FFFFFF, 0 0 30px var(--color-mint-green);
    transform: scale(1.2);
}

.node-label {
    font-family: var(--font-ar);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-misty-jade);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.map-target-node.is-active .node-label,
.map-target-node:hover .node-label {
    color: var(--color-off-white);
    border-color: rgba(168, 230, 207, 0.3);
    background: rgba(27, 115, 86, 0.8);
    transform: translateY(-2px);
}

/* Absolute positions inside coordinates circle map */
.node-north {
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
}

.node-south {
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
}

.node-east {
    top: 50%;
    right: 12%;
    transform: translateY(-50%);
}

.node-central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Glowing neon Delivery Car SVG */
.hud-delivery-car {
    position: absolute;
    z-index: 10;
    width: 32px;
    height: 32px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    will-change: left, top, transform;
}

.hud-delivery-car svg {
    filter: drop-shadow(0 0 8px var(--color-mint-green));
}

.car-glow-trail {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-mint-green) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(2px);
    opacity: 0.6;
}

/* Telemetry Dashboard Side */
.radar-hud-telemetry {
    width: 42%;
    z-index: 2;
}

.hud-glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.01);
}

.hud-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.hud-title {
    font-family: monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-mint-green);
    letter-spacing: 1px;
}

.hud-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.hud-stat-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hud-label {
    font-family: monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.hud-value {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-off-white);
    transition: color 0.3s ease;
}

/* -------------------------------------
   Glass Districts Summary Cards
------------------------------------- */
.regions-grid-section {
    padding: 80px 0 100px 0;
    position: relative;
    z-index: 2;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.region-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-mint-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: right;
}

html[dir="ltr"] .region-card::before {
    transform-origin: left;
}

.region-icon {
    font-size: 2.5rem;
    color: var(--color-mint-green);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.region-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-off-white) !important;
    margin-bottom: 15px;
}

.neighborhoods p {
    font-size: 1rem;
    color: var(--color-misty-jade);
    line-height: 1.8;
}

.region-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(168, 230, 207, 0.25);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(168, 230, 207, 0.05);
}

.region-card:hover::before {
    transform: scaleX(1);
}

.region-card:hover .region-icon {
    transform: scale(1.1) rotate(5deg);
    color: #FFFFFF;
}

/* -------------------------------------
   SEO Marquee Upgrade
------------------------------------- */
.seo-marquee-section {
    background: #020b07;
    padding: 24px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(168, 230, 207, 0.1);
    border-bottom: 1px solid rgba(168, 230, 207, 0.1);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-marquee 25s linear infinite;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--color-mint-green);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 25px;
}

.marquee-content span i {
    font-size: 0.6rem;
    opacity: 0.5;
}

/* LTR/RTL loops */
html[dir="rtl"] .marquee-content {
    animation: scroll-marquee-rtl 25s linear infinite;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-marquee-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

/* -------------------------------------
   Responsive Layout (Mobile & Tablets)
------------------------------------- */
@media (max-width: 992px) {
    .flex-radar-hud {
        flex-direction: column;
        gap: 40px;
    }

    .radar-command-map {
        width: 350px;
        height: 350px;
    }

    .radar-hud-telemetry {
        width: 100%;
    }

    .node-label {
        font-size: 0.75rem;
        padding: 2px 8px;
    }

    .node-north {
        top: 12%;
    }

    .node-south {
        bottom: 12%;
    }

    .node-east {
        right: 12%;
    }

    .node-central {
        top: 50%;
        left: 50%;
    }
}






/* ==========================================================================
   PREMIUM CONTACT PAGE STYLES (100% RESPONSIVE & MINT GREEN PALETTE)
   ========================================================================== */

/* 1. Base Variables & Layout */
.dispatch-contact-page {
    position: relative;
    overflow: hidden;
    color: var(--color-off-white);
    min-height: 100vh;
    background-color: #020e09;
    /* درجة Castleton داكنة جداً */
    padding: 100px 0;
}

/* 2. Ambient Glow Orbs */
.dispatch-ambient {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

.dispatch-ambient.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-mint-green) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation: floatGlow1 24s infinite alternate ease-in-out;
}

.dispatch-ambient.glow-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--color-mint-dark) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation: floatGlow2 28s infinite alternate ease-in-out;
}

.dispatch-ambient.glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-misty-jade) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: floatGlow1 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

@keyframes floatGlow2 {
    0% {
        transform: translate(0, 0) scale(1.1);
    }

    100% {
        transform: translate(-50px, -50px) scale(0.9);
    }
}

.relative-z {
    position: relative;
    z-index: 5;
}

/* 3. Page Header */
.contact-header {
    margin-bottom: 60px;
    position: relative;
    padding: 0 15px;
}

.contact-header .mint-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 100px;
    background: rgba(168, 230, 207, 0.08);
    border: 1px solid rgba(168, 230, 207, 0.25);
    color: var(--color-mint-green);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-header .mega-title-white {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 30%, var(--color-misty-jade) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
}

.contact-header .hero-desc-light {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 4. Split Grid Console */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    width: 100%;
}

.dispatch-console {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 230, 207, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 50px;
    position: relative;
    z-index: 5;
}

/* 5. Left Column (Info Hub) */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.live-status-hud {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(168, 230, 207, 0.1);
    border: 1px solid rgba(168, 230, 207, 0.2);
    padding: 12px 20px;
    border-radius: 14px;
    width: fit-content;
}

.pulse-wrapper {
    position: relative;
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.online-pulse-dot,
.online-pulse-glow {
    position: absolute;
    border-radius: 50%;
    background-color: var(--color-mint-green);
}

.online-pulse-dot {
    width: 8px;
    height: 8px;
    z-index: 2;
}

.online-pulse-glow {
    width: 10px;
    height: 10px;
    z-index: 1;
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.status-hud-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-mint-green);
}

.info-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-glass-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(0, 86, 63, 0.2);
    border: 1px solid rgba(168, 230, 207, 0.1);
    border-radius: 18px;
    transition: all 0.4s ease;
}

.info-glass-card:hover {
    transform: translateY(-4px);
    background: rgba(0, 86, 63, 0.4);
    border-color: rgba(168, 230, 207, 0.3);
    box-shadow: 0 15px 30px rgba(168, 230, 207, 0.05);
}

.card-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(168, 230, 207, 0.1);
    border: 1px solid rgba(168, 230, 207, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
    color: var(--color-mint-green);
    transition: transform 0.4s ease;
}

.info-glass-card:hover .card-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: var(--color-mint-green);
    color: var(--color-castleton);
}


.card-details h3 {
    font-size: 0.95rem;
    color: var(--color-misty-jade);
    font-weight: 700;
    margin-bottom: 6px;
}

.card-primary-link,
.card-primary-text {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.card-primary-link:hover {
    color: var(--color-mint-green);
}

.card-subtext {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    line-height: 1.4;
}

.card-action-link {
    font-size: 0.92rem;
    color: var(--color-mint-green);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.card-action-link:hover {
    color: #ffffff;
    gap: 12px;
}

/* 6. Right Column (Smart Form) */
.contact-form-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.issue-selector-group .selector-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-misty-jade);
    margin-bottom: 16px;
}

.selectors-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.issue-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 10px;
    background: rgba(0, 86, 63, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    color: var(--color-misty-jade);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.issue-btn i {
    font-size: 1.3rem;
    transition: transform 0.4s ease;
}

.issue-btn:hover {
    background: rgba(0, 86, 63, 0.4);
    color: #fff;
}

.issue-btn.active {
    background: rgba(168, 230, 207, 0.1);
    border-color: var(--color-mint-green);
    color: var(--color-mint-green);
    box-shadow: inset 0 0 15px rgba(168, 230, 207, 0.1);
}

.issue-btn.active i {
    transform: scale(1.15);
}

.smart-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 18px 22px;
    font-family: inherit;
    font-size: 1rem;
    color: #ffffff;
    background: rgba(0, 86, 63, 0.2);
    border: none;
    border-bottom: 2px solid rgba(168, 230, 207, 0.1);
    border-radius: 14px 14px 0 0;
    outline: none;
    transition: all 0.4s ease;
}

.input-group textarea {
    resize: none;
}

.input-group label {
    position: absolute;
    top: 18px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    font-weight: 500;
    pointer-events: none;
}

[dir="ltr"] .input-group label {
    left: 22px;
    right: auto;
    transform-origin: left top;
}

[dir="rtl"] .input-group label {
    right: 22px;
    left: auto;
    transform-origin: right top;
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label,
.input-group textarea:focus+label,
.input-group textarea:not(:placeholder-shown)+label,
.input-group select:focus+label,
.input-group select:valid+label {
    top: -24px;
    font-size: 0.85rem;
    color: var(--color-mint-green);
    font-weight: 700;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    background: rgba(0, 86, 63, 0.4);
    border-bottom-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-mint-green), var(--color-misty-jade));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 5;
}

.input-group input:focus~.input-line,
.input-group textarea:focus~.input-line,
.input-group select:focus~.input-line {
    transform: scaleX(1);
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper select option {
    background: var(--color-castleton);
    color: #fff;
}

.select-arrow {
    position: absolute;
    top: 22px;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

[dir="ltr"] .select-arrow {
    right: 22px;
}

[dir="rtl"] .select-arrow {
    left: 22px;
}

.select-wrapper select:focus~.select-arrow {
    transform: rotate(180deg);
    color: var(--color-mint-green);
}

/* Submit Button */
.submit-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

[dir="rtl"] .submit-wrapper {
    justify-content: flex-start;
}

.btn-magnetic-submit {
    padding: 16px 45px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-mint-green) 0%, var(--color-misty-jade) 100%);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-castleton);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(168, 230, 207, 0.2);
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-magnetic-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(168, 230, 207, 0.35);
}

.btn-inner-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-inner-content i {
    transition: transform 0.3s ease;
}

[dir="rtl"] .btn-magnetic-submit:hover .btn-inner-content i {
    transform: translateX(-5px);
}

[dir="ltr"] .btn-magnetic-submit:hover .btn-inner-content i {
    transform: translateX(5px);
}


/* ==========================================================================
   7. FULLY RESPONSIVE ADAPTATION GRID (The Magic Fix)
   ========================================================================== */

/* أجهزة التابلت الأفقية (Tablet Landscape) */
@media (max-width: 1024px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        /* تحويل لعمود واحد */
        gap: 50px;
    }

    .dispatch-console {
        padding: 10px 0 !important;
    }

    .info-cards-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* كروت المعلومات جنب بعض في التابلت */
        gap: 20px;
    }

    .info-glass-card {
        padding: 10px !important;
        margin: 16px !important;
    }

    .issue-btn {
        margin: 0 13px !important;
    }


}

/* التابلت الرأسي والموبايل الكبير (Tablet Portrait / Large Mobile) */
@media (max-width: 768px) {
    .dispatch-contact-page {
        padding: 60px 0;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header .mega-title-white {
        font-size: 2.2rem;
    }

    .dispatch-console {
        padding: 35px 20px;
        border-radius: 20px;
        border-left: none;
        border-right: none;
        /* جعلها متصلة بحواف الشاشة */
    }

    .info-cards-wrapper {
        grid-template-columns: 1fr;
        /* رجوع الكروت تحت بعض في الموبايل */
    }

    .form-row {
        grid-template-columns: 1fr;
        /* حقول الاسم ورقم التليفون تحت بعض */
        gap: 25px;
    }
}

/* الموبايل الصغير (Small Mobile) */
@media (max-width: 480px) {
    .selectors-wrapper {
        grid-template-columns: 1fr;
        /* أزرار نوع الطلب تحت بعض */
        gap: 12px;
    }

    .btn-magnetic-submit {
        width: 100%;
        /* زر الإرسال بعرض الشاشة */
        justify-content: center;
    }

    .submit-wrapper {
        justify-content: center;
    }
}