/* Extracted from inline <style> blocks in index.php */
/* ستايل المساعد الذكي المطور */
        .ai-chat-box {
            position: fixed;
            bottom: 100px;
            left: 20px;
            width: 350px;
            max-width: 90vw;
            height: 500px;
            max-height: 70vh;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            display: none;
            flex-direction: column;
            overflow: hidden;
            z-index: 10000;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            border: 1px solid #eee;
        }

        .ai-chat-box.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .ai-chat-box__header {
            background: #0b2a4a;
            color: #fff;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: bold;
        }

        .ai-chat-box__header button {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }

        .ai-chat-box__messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            background: #f9f9f9;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .msg {
            max-width: 85%;
            padding: 10px 15px;
            border-radius: 15px;
            font-size: 14px;
            line-height: 1.5;
            position: relative;
        }

        .msg.bot {
            background: #fff;
            color: #333;
            align-self: flex-start;
            border-bottom-right-radius: 2px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .msg.user {
            background: #0b2a4a;
            color: #fff;
            align-self: flex-end;
            border-bottom-left-radius: 2px;
        }

        .ai-chat-box__input {
            padding: 15px;
            background: #fff;
            border-top: 1px solid #eee;
            display: flex;
            gap: 10px;
        }

        .ai-chat-box__input input {
            flex: 1;
            border: 1px solid #ddd;
            border-radius: 25px;
            padding: 10px 15px;
            outline: none;
            transition: border 0.3s;
        }

        .ai-chat-box__input input:focus {
            border-color: #0b2a4a;
        }

        .ai-chat-box__input button {
            background: #0b2a4a;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* لودر الانتظار */
        .typing {
            font-style: italic;
            font-size: 12px;
            color: #888;
            margin-bottom: 5px;
            display: none;
        }
        .logo-home-text{
    display:none;
}

@media (max-width:991px){

    .main-menu__logo{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .logo-home-text{
        display:block;
        margin-top:10px;
        font-size:18px;
        font-weight:700;
    }

    .logo-home-text a{
        color:#ffffff;
        text-decoration:none;
    }

    .logo-home-text a:hover{
        color:#fe9043;
    }
}

.luxury-modal {
                display: none;
                position: fixed;
                z-index: 999999;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.85);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
            }

            .luxury-modal-content {
                background: #fff;
                margin: 10% auto;
                padding: 50px 30px;
                border-radius: 40px;
                width: 90%;
                max-width: 550px;
                text-align: center;
                position: relative;
                box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
                font-family: 'Cairo', sans-serif;
                direction: rtl;
            }

            .close-modal-btn {
                position: absolute;
                right: 25px;
                top: 20px;
                font-size: 35px;
                cursor: pointer;
                color: #bbb;
                transition: 0.3s;
            }

            .close-modal-btn:hover {
                color: #333;
            }

            .modal-icon {
                font-size: 90px;
                margin-bottom: 25px;
            }

            #modalTitle {
                font-size: 32px;
                font-weight: 800;
                margin-bottom: 15px;
            }

            #modalMessage {
                font-size: 20px;
                color: #555;
                margin-bottom: 35px;
                line-height: 1.6;
            }

            .modal-action-buttons {
                display: flex;
                justify-content: center;
                gap: 18px;
                flex-wrap: wrap;
                margin-top: 30px;
            }

            .modal-call-btn,
            .modal-whatsapp-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 12px;

                min-width: 190px;
                height: 58px;

                border-radius: 60px;
                text-decoration: none;
                font-size: 17px;
                font-weight: 700;

                transition: .35s;
                position: relative;
                overflow: hidden;
            }

            .modal-call-btn {
                background: linear-gradient(135deg, #1aa1ae, #137b86);
                color: #fff;
                box-shadow: 0 15px 35px rgba(26, 161, 174, .35);
            }

            .modal-call-btn:hover {
                transform: translateY(-4px);
                box-shadow: 0 22px 45px rgba(26, 161, 174, .5);
                color: #fff;
            }

            .modal-whatsapp-btn {
                background: linear-gradient(135deg, #25D366, #128C7E);
                color: #fff;
                box-shadow: 0 15px 35px rgba(37, 211, 102, .35);
            }

            .modal-whatsapp-btn:hover {
                transform: translateY(-4px);
                box-shadow: 0 22px 45px rgba(37, 211, 102, .5);
                color: #fff;
            }

            .modal-call-btn i,
            .modal-whatsapp-btn i {
                font-size: 22px;
            }

            .modal-call-btn::before,
            .modal-whatsapp-btn::before {
                content: "";
                position: absolute;
                top: 0;
                left: -100%;
                width: 50%;
                height: 100%;
                background: linear-gradient(to right, transparent, rgba(255, 255, 255, .35), transparent);
                transform: skewX(-25deg);
                transition: .8s;
            }

            .modal-call-btn:hover::before,
            .modal-whatsapp-btn:hover::before {
                left: 150%;
            }

.fixed-contact {
            position: fixed;
            right: 20px;
            bottom: 30px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 14px;
            z-index: 99999;
        }

        .fixed-contact a {
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            height: 58px;
            padding-left: 20px;
            border-radius: 50px;
            text-decoration: none;
            color: #fff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
            transition: .3s ease;
            white-space: nowrap;
        }

        .fixed-contact a:hover {
            transform: translateX(-4px) scale(1.03);
        }

        .fixed-contact__icon {
            width: 58px;
            height: 58px;
            min-width: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            background: rgba(255, 255, 255, 0.2);
        }

        .fixed-contact__label {
            padding: 0 16px;
            font-size: 15px;
            font-weight: 700;
        }

        .fixed-contact .assistant {
            background: linear-gradient(135deg, var(--zeinet-primary), var(--zeinet-base));
        }

        .fixed-contact .whatsapp {
            background: #25D366;
            animation: whatsapp-pulse 2.4s infinite;
            animation-delay: 0.5s;
        }

        .fixed-contact .whatsapp .fixed-contact__icon {
            animation: whatsapp-bounce 2.4s infinite;
        }

        .fixed-contact .whatsapp:hover {
            animation: none;
            box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.25), 0 8px 25px rgba(37, 211, 102, 0.5);
        }

        @keyframes whatsapp-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 8px 20px rgba(0, 0, 0, .25);
            }

            70% {
                box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 8px 20px rgba(0, 0, 0, .25);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 20px rgba(0, 0, 0, .25);
            }
        }

        @keyframes whatsapp-bounce {

            0%,
            80%,
            100% {
                transform: translateY(0) scale(1);
            }

            88% {
                transform: translateY(-4px) scale(1.08);
            }

            94% {
                transform: translateY(0) scale(1);
            }
        }

        .fixed-contact .assistant {
            background: linear-gradient(135deg, var(--zeinet-primary), var(--zeinet-base));
            animation: assistant-pulse 2.8s infinite;
            animation-delay: 1s;
        }

        .fixed-contact .assistant .fixed-contact__icon {
            animation: assistant-glow 2.8s infinite;
        }

        .fixed-contact .assistant:hover {
            animation: none;
            box-shadow: 0 0 0 10px rgba(8, 159, 172, 0.25), 0 8px 25px rgba(254, 144, 67, 0.5);
        }

        @keyframes assistant-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(8, 159, 172, 0.5), 0 8px 20px rgba(0, 0, 0, .25);
            }

            70% {
                box-shadow: 0 0 0 14px rgba(254, 144, 67, 0), 0 8px 20px rgba(0, 0, 0, .25);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(254, 144, 67, 0), 0 8px 20px rgba(0, 0, 0, .25);
            }
        }

        @keyframes assistant-glow {

            0%,
            100% {
                filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
            }

            50% {
                filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
            }
        }

        .fixed-contact .phone {
            background: var(--zeinet-base);
            animation: phone-pulse 2.2s infinite;
        }

        .fixed-contact .phone .fixed-contact__icon {
            animation: phone-ring 1.8s infinite;
        }

        .fixed-contact .phone:hover {
            animation: none;
            box-shadow: 0 0 0 10px rgba(254, 144, 67, 0.25), 0 8px 25px rgba(254, 144, 67, 0.5);
        }

        @keyframes phone-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(254, 144, 67, 0.55), 0 8px 20px rgba(0, 0, 0, .25);
            }

            70% {
                box-shadow: 0 0 0 14px rgba(254, 144, 67, 0), 0 8px 20px rgba(0, 0, 0, .25);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(254, 144, 67, 0), 0 8px 20px rgba(0, 0, 0, .25);
            }
        }

        @keyframes phone-ring {

            0%,
            85%,
            100% {
                transform: rotate(0deg);
            }

            88% {
                transform: rotate(-15deg);
            }

            91% {
                transform: rotate(12deg);
            }

            94% {
                transform: rotate(-8deg);
            }

            97% {
                transform: rotate(5deg);
            }
        }

        /* موبايل */
        @media (max-width:768px) {
            .fixed-contact {
                right: 15px;
                bottom: 20px;
                gap: 10px;
            }

            .fixed-contact a {
                height: 52px;
                padding-left: 0;
            }

            .fixed-contact__icon {
                width: 52px;
                height: 52px;
                min-width: 52px;
                font-size: 23px;
            }

            .fixed-contact__label {
                display: none;
            }
        }


        .ai-chat-box {
            position: fixed;
            bottom: 100px;
            left: 100px;
            width: 340px;
            max-width: 90vw;
            height: 460px;
            max-height: 75vh;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
            display: none;
            flex-direction: column;
            overflow: hidden;
            z-index: 9999;
            font-family: inherit;
        }

        .ai-chat-box.active {
            display: flex;
        }

        .ai-chat-box__header {
            background: #0b2a4a;
            /* غيّر اللون حسب هوية الموقع */
            color: #fff;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
        }

        .ai-chat-box__header button {
            background: none;
            border: none;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            line-height: 1;
        }

        .ai-chat-box__messages {
            flex: 1;
            padding: 14px;
            overflow-y: auto;
            background: #f5f6f8;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .ai-chat-box__messages .msg {
            max-width: 80%;
            padding: 10px 14px;
            border-radius: 12px;
            line-height: 1.6;
            font-size: 14px;
            white-space: pre-line;
        }

        .ai-chat-box__messages .msg.bot {
            background: #fff;
            border: 1px solid #e2e2e2;
            align-self: flex-start;
            border-bottom-right-radius: 2px;
        }

        .ai-chat-box__messages .msg.user {
            background: #0b2a4a;
            color: #fff;
            align-self: flex-end;
            border-bottom-left-radius: 2px;
        }

        .ai-chat-box__input {
            display: flex;
            border-top: 1px solid #eee;
            padding: 10px;
            gap: 8px;
        }

        .ai-chat-box__input input {
            flex: 1;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 10px 12px;
            font-size: 14px;
            outline: none;
        }

        .ai-chat-box__input button {
            background: #0b2a4a;
            color: #fff;
            border: none;
            border-radius: 8px;
            width: 42px;
            cursor: pointer;
        }

        @media (max-width: 480px) {
            .ai-chat-box {
                left: 10px;
                right: 10px;
                width: auto;
                bottom: 160px;
            }
        }

/* Extracted inline style attributes from index.php */
.inline-style-4be35b0788 { display:none;visibility:hidden }
.inline-style-51b59da5f4 { background-image: url(../images/backgrounds/main-slider-1.png); }
.inline-style-b044ea9fbb { background-image: url(../images/backgrounds/main-slider-2.png); }
.inline-style-185d6ac49c { background-image: url(../images/backgrounds/main-slider-3.png); }
.inline-style-c8ec64680b { font-size:16px;color:#666;line-height:1.9;margin-top:15px; }
.inline-style-9eb125f52f { margin-top:20px; }
.inline-style-5389f6970d { margin-top:35px; }
.inline-style-5b6aad9a3f { margin-bottom:18px; }
.inline-style-95d122f31b { color:#1aa1ae;margin-left:10px; }
.inline-style-cfcafc81b7 { font-size:32px;font-weight:700;margin-bottom:20px;color:#1d1d1d; }
.inline-style-1793437bca { background-image: url(../images/backgrounds/save-money-bg.png); }
.inline-style-565602891d { background-image: url(../images/shapes/save-money-shape-1.png); }
.inline-style-bdbec6d034 { background-image: url(../images/backgrounds/testimonial-one-bg.png); }
.inline-style-a17473c6e5 { background-image: url(../images/shapes/testimonial-one-shape-1.png); }
.inline-style-4c57acd787 { background-image: url(../images/shapes/testimonial-one-shape-2.png); }
.inline-style-62628a9d30 { background-image: url(../images/backgrounds/live-sports-bg.jpg); }
.inline-style-48114c875d { background-image: url(../images/shapes/site-footer-shape-bg.png); }
.inline-style-b1670753a3 { padding: 0 15px; }

/* الصفحة الرئيسية: منع مساحة بيضاء أسفل الفوتر وعدم إظهار رابط الرئيسية أسفل الشعار */
html, body {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    overflow-x: hidden;
}
.site-footer {
    margin-bottom: 0 !important;
}
.main-menu__logo .logo-home-text {
    display: none !important;
}
