/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    background: #f7fbff;
    color: #10243e;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

:root {
    --primary: #2096ed;
    --primary-dark: #087ed1;
    --primary-light: #55b8ff;

    --text: #10243e;
    --muted: #6d7d91;

    --white: #fff;
    --background: #f7fbff;
    --border: #e7eef6;

    --shadow: 0 15px 45px rgba(32, 150, 237, .10);

    --radius: 24px;
}


/* =====================================================
   BACKGROUND
===================================================== */

.background-shapes {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.background-shapes span {
    position: absolute;
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(32, 150, 237, .045);
    animation: floatShape 12s ease-in-out infinite;
}

.background-shapes span:nth-child(1) {
    width: 180px;
    height: 180px;
    top: 10%;
    right: -70px;
}

.background-shapes span:nth-child(2) {
    width: 90px;
    height: 90px;
    top: 30%;
    left: -35px;
    animation-delay: 2s;
}

.background-shapes span:nth-child(3) {
    width: 130px;
    height: 130px;
    bottom: 20%;
    right: -40px;
    animation-delay: 4s;
}

.background-shapes span:nth-child(4) {
    width: 70px;
    height: 70px;
    bottom: 10%;
    left: 10%;
    animation-delay: 6s;
}

.background-shapes span:nth-child(5) {
    width: 50px;
    height: 50px;
    top: 18%;
    left: 20%;
    animation-delay: 8s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}


/* =====================================================
   HEADER
===================================================== */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(32, 150, 237, .08);
}

.header-container {
    width: min(1150px, 100%);
    min-height: 82px;

    margin: auto;
    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* BRAND */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
}

.brand-logo {
    width: 52px;
    height: 52px;
    min-width: 52px;

    border-radius: 16px;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 25px rgba(32, 150, 237, .12);

    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.brand-text strong {
    font-size: 17px;
    font-weight: 800;
    white-space: nowrap;
}

.brand-text small {
    color: var(--muted);
    font-size: 11px;
    white-space: nowrap;
}


/* DESKTOP NAV */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.desktop-nav a {
    padding: 10px 14px;

    border-radius: 12px;

    color: #617287;

    font-size: 13px;
    font-weight: 700;

    transition: .25s;
}

.desktop-nav a i {
    margin-left: 5px;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--primary);
    background: rgba(32, 150, 237, .08);
}


/* MOBILE BUTTON */

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 13px;

    background: #eef8ff;
    color: var(--primary);

    font-size: 19px;

    cursor: pointer;
}


/* MOBILE MENU */

.mobile-menu {
    display: none;

    width: min(1150px, 100%);
    margin: auto;

    padding: 0 22px 18px;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 15px;

    border-radius: 14px;

    color: #43566b;

    font-size: 14px;
    font-weight: 700;
}

.mobile-menu a:hover {
    background: #eef8ff;
    color: var(--primary);
}

.mobile-menu.show {
    display: block;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    width: min(1150px, 100%);

    min-height: 650px;

    margin: auto;
    padding: 80px 22px;

    display: grid;

    grid-template-columns: 1.15fr .85fr;

    align-items: center;

    gap: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    border-radius: 50px;

    background: #eaf6ff;
    color: var(--primary);

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -2px;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero-content > p {
    max-width: 580px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 17px;
    line-height: 2;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    gap: 12px;

    margin-top: 30px;
}

.primary-btn,
.secondary-btn {
    min-width: 145px;

    padding: 13px 20px;

    border-radius: 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    font-size: 14px;
    font-weight: 800;

    transition: .25s;
}

.primary-btn {
    background: var(--primary);
    color: #fff;

    box-shadow: 0 12px 28px rgba(32, 150, 237, .25);
}

.primary-btn:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}

.secondary-btn {
    background: #fff;
    color: var(--primary);

    border: 1px solid #dcecf8;
}

.secondary-btn:hover {
    transform: translateY(-3px);
    background: #f1f9ff;
}


/* HERO FEATURES */

.hero-features {
    display: flex;
    gap: 25px;

    margin-top: 30px;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #708197;

    font-size: 12px;
    font-weight: 700;
}

.hero-features i {
    color: var(--primary);
}


/* =====================================================
   HERO CARD
===================================================== */

.hero-card {
    position: relative;

    min-height: 440px;

    padding: 40px;

    border-radius: 36px;

    background: linear-gradient(
        145deg,
        #fff 0%,
        #eef8ff 100%
    );

    border: 1px solid #dceefa;

    box-shadow: 0 30px 70px rgba(32, 150, 237, .13);

    overflow: hidden;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;
}

.hero-card-glow {
    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(32, 150, 237, .12);

    filter: blur(5px);

    top: -100px;
    right: -80px;
}

.hero-logo {
    position: relative;

    width: 120px;
    height: 120px;

    border-radius: 32px;

    background: #fff;

    padding: 10px;

    box-shadow: 0 15px 35px rgba(32, 150, 237, .15);

    margin-bottom: 18px;
}

.hero-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 25px;
}

.hero-card-label {
    color: var(--primary);

    font-size: 13px;
    font-weight: 800;
}

.hero-card h2 {
    margin-top: 8px;

    font-size: 30px;
    line-height: 1.5;

    font-weight: 800;
}

.hero-card-items {
    display: flex;
    gap: 10px;

    width: 100%;

    margin-top: 28px;
}

.hero-card-items div {
    flex: 1;
    min-width: 0;

    padding: 15px 8px;

    background: #fff;

    border: 1px solid #e7f1f8;

    border-radius: 16px;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 7px;

    font-size: 11px;
    font-weight: 700;

    color: #63758a;
}

.hero-card-items i {
    color: var(--primary);
    font-size: 19px;
}


/* =====================================================
   GENERAL SECTION
===================================================== */

.section {
    width: min(1150px, 100%);

    margin: auto;

    padding: 75px 22px;
}

.section-heading {
    text-align: center;

    margin-bottom: 35px;
}

.section-heading > span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    background: #eaf6ff;

    padding: 7px 13px;

    border-radius: 50px;
}

.section-heading h2 {
    margin-top: 12px;

    font-size: 32px;
    font-weight: 800;
}

.section-heading p {
    margin-top: 8px;

    color: var(--muted);

    font-size: 14px;
}


/* =====================================================
   SERVICES
===================================================== */

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.service-card {
    width: 100%;
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 20px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow: 0 8px 30px rgba(20, 60, 100, .045);

    transition: .3s;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: #cfeafa;

    box-shadow: 0 18px 40px rgba(32, 150, 237, .10);
}

.service-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.service-icon.blue {
    background: #e9f6ff;
    color: #2096ed;
}

.service-icon.cyan {
    background: #e8fbff;
    color: #00a9d8;
}

.service-icon.purple {
    background: #f1ecff;
    color: #7c58dc;
}

.service-icon.green {
    background: #eafaf1;
    color: #20b866;
}

.service-card > div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.service-card h3 {
    font-size: 19px;
    font-weight: 800;

    white-space: nowrap;
}

.service-card p {
    margin-top: 3px;

    color: var(--muted);

    font-size: 12px;

    white-space: nowrap;
}

.service-arrow {
    color: var(--primary);

    font-size: 18px;

    flex-shrink: 0;
}


/* =====================================================
   TRACK / VERSIONS
===================================================== */

.track-section {
    width: min(1100px, 100%);

    margin: auto;

    padding: 20px 22px 75px;
}

.track-box {
    width: 100%;

    padding: 24px;

    display: flex;
    align-items: center;

    gap: 18px;

    background: rgba(255, 255, 255, .94);

    border: 1px solid rgba(32, 150, 237, .12);

    border-radius: 24px;

    box-shadow: 0 10px 35px rgba(28, 91, 140, .08);

    transition: .25s;
}

.track-box:hover {
    transform: translateY(-3px);
}

.track-icon {
    width: 60px;
    height: 60px;

    min-width: 60px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #25b7e9,
        #167bdc
    );

    color: #fff;

    font-size: 23px;
}

.track-content {
    flex: 1;
    min-width: 0;
}

.track-content > span {
    display: block;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
}

.track-content h2 {
    margin-top: 2px;

    color: #123c68;

    font-size: 23px;

    font-weight: 800;
}

.track-content p {
    margin-top: 3px;

    color: #71879b;

    font-size: 12px;
}

.track-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 11px 18px;

    flex-shrink: 0;

    background: linear-gradient(
        135deg,
        #20b7e9,
        #167bdc
    );

    color: #fff;

    border-radius: 14px;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 8px 20px rgba(22, 123, 220, .18);

    transition: .25s;
}

.track-btn:hover {
    transform: translateY(-2px);
}


/* =====================================================
   APPLICATION
===================================================== */

.application-section {
    padding-top: 35px;
}

.application-card {
    position: relative;

    width: 100%;

    min-height: 330px;

    padding: 35px;

    display: flex;
    align-items: center;

    gap: 40px;

    overflow: hidden;

    background: linear-gradient(
        135deg,
        #fff,
        #eef8ff
    );

    border: 1px solid #dceefa;

    border-radius: 30px;

    box-shadow: 0 20px 50px rgba(32, 150, 237, .08);
}

.application-info {
    flex: 1;
    min-width: 0;
}

.application-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 800;
}

.application-info h2 {
    margin-top: 10px;

    font-size: 32px;
    line-height: 1.4;

    font-weight: 800;
}

.application-info h2 span {
    color: var(--primary);
}

.application-info > p {
    max-width: 600px;

    margin-top: 10px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.9;
}

.application-features {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 18px;
}

.application-features div {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #63758a;

    font-size: 12px;
    font-weight: 700;
}

.application-features i {
    color: var(--primary);
}

.application-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 20px;

    padding: 12px 20px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #25b7e9,
        #167bdc
    );

    color: #fff;

    font-size: 13px;
    font-weight: 800;

    box-shadow: 0 10px 25px rgba(22, 123, 220, .20);
}

.application-logo {
    position: relative;

    width: 250px;
    height: 250px;

    min-width: 250px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .75);

    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    overflow: hidden;
}

.application-logo img {
    width: 150px;
    height: 150px;

    object-fit: contain;

    position: relative;
    z-index: 2;
}

.application-logo span {
    position: relative;
    z-index: 2;

    margin-top: 10px;

    color: var(--muted);

    font-size: 12px;
    font-weight: 700;
}

.app-glow {
    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(32, 150, 237, .10);

    filter: blur(8px);
}


/* =====================================================
   ABOUT MINI
===================================================== */

.about-mini {
    width: min(1050px, calc(100% - 44px));

    margin: 20px auto 70px;

    padding: 28px;

    display: flex;
    align-items: center;

    gap: 20px;

    background: rgba(255, 255, 255, .90);

    border: 1px solid var(--border);

    border-radius: 25px;

    box-shadow: 0 12px 35px rgba(20, 60, 100, .05);
}

.about-mini-icon {
    width: 58px;
    height: 58px;

    min-width: 58px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e9f6ff;

    color: var(--primary);

    font-size: 22px;
}

.about-mini > div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.about-mini > div:nth-child(2) > span {
    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
}

.about-mini h2 {
    margin-top: 3px;

    font-size: 24px;

    font-weight: 800;

    white-space: nowrap;
}

.about-mini p {
    margin-top: 4px;

    color: var(--muted);

    font-size: 12px;
}

.about-mini > a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    flex-shrink: 0;

    color: var(--primary);

    font-size: 13px;
    font-weight: 800;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    width: min(1050px, 100%);

    margin: auto;

    padding: 20px 22px 75px;
}

.contact-card {
    width: 100%;

    padding: 30px;

    display: flex;
    align-items: center;

    gap: 22px;

    background: rgba(255, 255, 255, .94);

    border: 1px solid var(--border);

    border-radius: 25px;

    box-shadow: 0 12px 35px rgba(20, 60, 100, .05);
}

.contact-icon {
    width: 62px;
    height: 62px;

    min-width: 62px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #25b7e9,
        #167bdc
    );

    color: #fff;

    font-size: 23px;
}

.contact-info {
    flex: 1;
    min-width: 0;
}

.contact-info > span {
    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
}

.contact-info h2 {
    margin-top: 3px;

    font-size: 25px;

    font-weight: 800;

    white-space: nowrap;
}

.contact-info p {
    margin-top: 4px;

    color: var(--muted);

    font-size: 12px;
}

.contact-numbers {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 8px;

    color: #596b7e;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}

.contact-actions {
    display: flex;

    flex-direction: column;

    gap: 8px;

    width: 120px;

    flex-shrink: 0;
}

.whatsapp-btn,
.call-btn {
    width: 100%;

    padding: 11px 15px;

    border-radius: 12px;

    color: #fff;

    font-size: 11px;
    font-weight: 800;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    transition: .25s;
}

.whatsapp-btn {
    background: #20b866;
}

.call-btn {
    background: var(--primary);
}

.whatsapp-btn:hover,
.call-btn:hover {
    transform: translateY(-3px);
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    padding: 35px 22px;

    background: #fff;

    border-top: 1px solid var(--border);
}

.footer-container {
    width: min(1100px, 100%);

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 10px;
}

.footer-brand img {
    width: 43px;
    height: 43px;

    border-radius: 12px;

    object-fit: cover;
}

.footer-brand div {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    font-size: 13px;
}

.footer-brand span {
    font-size: 9px;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: #748397;

    font-size: 10px;
    font-weight: 700;

    transition: .2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    color: #7a8999;

    font-size: 10px;

    text-align: center;
}

.copyright strong {
    color: #56687b;
}


/* =====================================================
   ANIMATION
===================================================== */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .6s ease,
        transform .6s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .hero {
        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-card {
        width: min(650px, 100%);

        margin: auto;
    }
    .hero-card {
    width: min(650px, 100%);
    margin: auto;
}

/* =========================================================
   كود تصغير الجوال - ضعه هنا مباشرة
========================================================= */

@media screen and (max-width: 600px) {

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .hero {
        width: 100% !important;
        padding: 35px 14px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }

    .hero h1 {
        font-size: 38px !important;
        line-height: 1.25 !important;
    }

    .hero-content > p {
        font-size: 12px !important;
        line-height: 1.8 !important;
    }

    .hero-buttons {
        width: 100% !important;
        gap: 8px !important;
    }

    .primary-btn,
    .secondary-btn {
        min-width: 0 !important;
        padding: 9px 8px !important;
        font-size: 10px !important;
        flex: 1 !important;
        white-space: nowrap !important;
    }

    /* الخدمات الأربعة */
    .services-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .service-card {
        width: 100% !important;
        padding: 12px !important;
        min-height: 72px !important;
        gap: 10px !important;
    }

    .service-icon {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        font-size: 16px !important;
    }

    .service-card h3 {
        font-size: 15px !important;
        white-space: nowrap !important;
    }

    .service-card p {
        font-size: 9px !important;
        white-space: nowrap !important;
    }

    .service-arrow {
        font-size: 12px !important;
    }

    /* الإصدارات */
    .track-box {
        width: 100% !important;
        padding: 13px !important;
        gap: 9px !important;
    }

    .track-content h2 {
        font-size: 15px !important;
        white-space: nowrap !important;
    }

    .track-content p {
        font-size: 8px !important;
        white-space: nowrap !important;
    }

    .track-btn {
        padding: 8px 9px !important;
        font-size: 8px !important;
        white-space: nowrap !important;
    }

    /* التطبيق */
    .application-card {
        width: 100% !important;
        padding: 18px 12px !important;
        gap: 10px !important;
    }

    .application-info h2 {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }

    .application-info > p {
        font-size: 9px !important;
        line-height: 1.6 !important;
    }

    .application-logo {
        width: 90px !important;
        height: 90px !important;
        min-width: 90px !important;
    }

    .application-logo img {
        width: 60px !important;
        height: 60px !important;
    }

    /* حول التطبيق */
    .about-mini {
        width: calc(100% - 28px) !important;
        margin: 15px auto !important;
        padding: 16px 12px !important;
        gap: 9px !important;
    }

    .about-mini h2 {
        font-size: 15px !important;
        white-space: nowrap !important;
    }

    .about-mini p {
        font-size: 8px !important;
        white-space: nowrap !important;
    }

    .about-mini > a {
        font-size: 8px !important;
        white-space: nowrap !important;
    }

    /* التواصل */
    .contact-card {
        width: 100% !important;
        padding: 20px 12px !important;
        gap: 8px !important;
    }

    .contact-info h2 {
        font-size: 17px !important;
        white-space: nowrap !important;
    }

    .contact-info p {
        font-size: 9px !important;
    }

    .contact-numbers {
        font-size: 10px !important;
        white-space: nowrap !important;
    }

    .contact-actions {
        width: 100% !important;
        display: flex !important;
        gap: 6px !important;
    }

    .whatsapp-btn,
    .call-btn {
        flex: 1 !important;
        padding: 9px 5px !important;
        font-size: 9px !important;
    }

    /* الفوتر */
    .footer-container {
        width: 100% !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px !important;
    }

    .footer-links {
        gap: 9px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .footer-links a {
        font-size: 8px !important;
    }

    .copyright {
        width: 100% !important;
        font-size: 8px !important;
    }
}
/* =====================================================
   إصلاح الهيدر للشاشات الضيقة
===================================================== */

@media screen and (max-width: 900px) {

    .main-header {
        width: 100% !important;
    }

    .header-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 12px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    /* إخفاء قائمة الكمبيوتر */
    .desktop-nav {
        display: none !important;
    }

    /* إظهار زر الثلاث خطوط */
    .mobile-menu-btn {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 42px !important;
        height: 42px !important;

        min-width: 42px !important;

        flex-shrink: 0 !important;

        border-radius: 13px !important;

        font-size: 18px !important;
    }

    /* ترتيب الشعار */
    .brand {
        min-width: 0 !important;
        max-width: calc(100% - 55px) !important;
    }

    .brand-text {
        min-width: 0 !important;
    }

    .brand-text strong {
        font-size: 15px !important;
        white-space: nowrap !important;
    }

    .brand-text small {
        font-size: 8px !important;
        white-space: nowrap !important;
    }

    .brand-logo {
        width: 42px !important;
        height: 42px !important;

        min-width: 42px !important;
    }

    /* القائمة المنسدلة */
    .mobile-menu {
        width: 100% !important;
        max-width: 100% !important;

        padding: 8px 12px 14px !important;

        background: rgba(255,255,255,.97) !important;
    }

    .mobile-menu a {
        width: 100% !important;

        padding: 11px 13px !important;

        font-size: 13px !important;
    }
}
/* =====================================================
   تحسين قسم التطبيق على الجوال
===================================================== */

@media screen and (max-width: 600px) {

    .application-card {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 24px 15px !important;
        gap: 16px !important;
    }

    /* الشعار داخل دائرة واضحة */
    .application-logo {
        order: -1 !important;

        width: 125px !important;
        height: 125px !important;
        min-width: 125px !important;

        border-radius: 50% !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        background: #ffffff !important;

        padding: 12px !important;

        box-shadow:
            0 10px 30px rgba(32,150,237,.12) !important;
    }

    .application-logo img {
        width: 88px !important;
        height: 88px !important;

        object-fit: contain !important;

        border-radius: 50% !important;
    }

    .application-logo span {
        display: none !important;
    }


    /* النص */
    .application-info {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        text-align: center !important;
    }

    .application-label {
        font-size: 10px !important;
        margin-bottom: 5px !important;
    }

    .application-info h2 {
        font-size: 23px !important;
        line-height: 1.45 !important;
        margin: 0 !important;
    }

    .application-info > p {
        max-width: 330px !important;

        font-size: 10px !important;
        line-height: 1.8 !important;

        margin-top: 7px !important;
    }


    /* سريع - آمن - تحديثات */
    .application-features {
        width: 100% !important;

        display: flex !important;
        justify-content: center !important;
        align-items: flex-start !important;

        gap: 18px !important;

        margin-top: 8px !important;
    }

    .application-features div {
        flex: 1 !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 5px !important;

        font-size: 9px !important;
        line-height: 1.4 !important;

        white-space: normal !important;
        text-align: center !important;
    }

    .application-features div i {
        font-size: 17px !important;

        display: block !important;
    }


    /* زر التحميل */
    .application-btn {
        width: 85% !important;
        max-width: 280px !important;

        padding: 10px 15px !important;

        font-size: 10px !important;

        border-radius: 12px !important;
    }
}
/* =====================================================
   زر "حول التطبيق" - ترتيب الجوال
===================================================== */

@media (max-width: 600px) {

    .about-mini {
        width: calc(100% - 30px) !important;
        margin: 35px auto !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        text-align: center !important;

        padding: 24px 18px !important;
        gap: 12px !important;

        border-radius: 22px !important;
    }

    /* أيقونة المعلومات فوق */
    .about-mini-icon {
        width: 46px !important;
        height: 46px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        margin: 0 auto !important;

        font-size: 18px !important;
    }

    /* النص */
    .about-mini > div:not(.about-mini-icon) {
        width: 100% !important;
    }

    .about-mini span {
        font-size: 11px !important;
    }

    .about-mini h2 {
        font-size: 20px !important;
        line-height: 1.5 !important;

        margin: 4px 0 !important;
    }

    .about-mini p {
        font-size: 11px !important;
        line-height: 1.8 !important;

        margin: 0 auto !important;

        max-width: 320px !important;
    }

    /* زر حول التطبيق */
    .about-mini > a {
        width: auto !important;
        min-width: 150px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 8px !important;

        margin-top: 8px !important;

        padding: 10px 18px !important;

        border-radius: 12px !important;

        background: #2096ED !important;
        color: #fff !important;

        font-size: 11px !important;
        font-weight: 800 !important;

        box-shadow: 0 8px 20px rgba(32,150,237,.18) !important;

        transition: .25s ease !important;
    }

    .about-mini > a:hover {
        transform: translateY(-2px) !important;
    }

    .about-mini > a i {
        font-size: 10px !important;
    }
}
/* =====================================================
   تحسين قسم التواصل في الجوال
===================================================== */

@media (max-width: 600px) {

    .contact-section {
        width: 100%;
        padding: 35px 15px !important;
    }

    .contact-card {
        width: 100%;
        max-width: 500px;

        margin: 0 auto !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        text-align: center !important;

        padding: 28px 18px !important;
        gap: 15px !important;

        border-radius: 24px !important;
    }

    /* أيقونة التواصل */
    .contact-icon {
        width: 58px !important;
        height: 58px !important;

        flex-shrink: 0;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        border-radius: 18px !important;

        margin: 0 auto !important;

        font-size: 22px !important;
    }

    /* محتوى التواصل */
    .contact-info {
        width: 100% !important;
        max-width: 360px !important;

        text-align: center !important;
    }

    .contact-info > span {
        display: block !important;

        font-size: 12px !important;
        margin-bottom: 5px !important;
    }

    .contact-info h2 {
        font-size: 20px !important;
        line-height: 1.5 !important;

        margin: 4px 0 !important;

        white-space: normal !important;
    }

    .contact-info p {
        font-size: 11px !important;
        line-height: 1.8 !important;

        margin: 5px auto !important;

        max-width: 300px !important;
    }

    /* أرقام التواصل */
    .contact-numbers {
        width: 100% !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 8px !important;

        margin-top: 10px !important;

        font-size: 13px !important;
        white-space: nowrap !important;
    }

    .contact-numbers span:not(:last-child)::after {
        content: " - ";
        margin: 0 3px;
    }

    /* حاوية الأزرار */
    .contact-actions {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        justify-content: center !important;

        gap: 9px !important;

        margin-top: 8px !important;
    }

    /* الأزرار نفسها */
    .contact-actions a {
        width: 180px !important;
        max-width: 180px !important;

        min-height: 42px !important;

        padding: 9px 15px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 7px !important;

        border-radius: 12px !important;

        font-size: 11px !important;
        font-weight: 800 !important;

        box-sizing: border-box !important;
    }

    .contact-actions a i {
        font-size: 13px !important;
    }

}
/* =====================================================
   قائمة الجوال - تصميم جديد
===================================================== */

@media (max-width: 800px) {

    /* الهيدر */
    .main-header {
        position: sticky;
        top: 0;
        z-index: 9999;
    }

    .header-container {
        min-height: 68px !important;
        padding: 8px 14px !important;
    }

    /* زر القائمة */
    .mobile-menu-btn {
        width: 46px !important;
        height: 46px !important;

        border-radius: 15px !important;

        background: linear-gradient(
            135deg,
            #eef8ff,
            #e2f3ff
        ) !important;

        color: #2096ED !important;

        font-size: 19px !important;

        box-shadow:
            0 5px 18px rgba(32,150,237,.08);

        transition: .25s ease;
    }

    .mobile-menu-btn:active {
        transform: scale(.94);
    }


    /* =================================================
       القائمة نفسها
    ================================================= */

    .mobile-menu {
        display: none;

        position: absolute;

        top: calc(100% + 8px);
        right: 12px;
        left: 12px;

        width: auto;
        max-width: none;

        margin: 0 !important;

        padding: 10px !important;

        background: rgba(255,255,255,.97);

        border: 1px solid #e8f0f7;

        border-radius: 20px;

        box-shadow:
            0 18px 45px rgba(20,60,100,.14);

        backdrop-filter: blur(20px);

        overflow: hidden;

        transform-origin: top center;

        animation: menuOpen .25s ease;
    }


    /* ظهور القائمة */

    .mobile-menu.show {
        display: block !important;
    }


    /* حركة الظهور */

    @keyframes menuOpen {

        from {
            opacity: 0;
            transform: translateY(-8px) scale(.98);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

    }


    /* =================================================
       روابط القائمة
    ================================================= */

    .mobile-menu a {

        position: relative;

        display: flex !important;

        align-items: center !important;

        justify-content: flex-start !important;

        gap: 13px !important;

        width: 100%;

        min-height: 50px;

        margin: 3px 0;

        padding: 10px 13px !important;

        border-radius: 14px !important;

        color: #24384f !important;

        font-size: 14px !important;

        font-weight: 700 !important;

        transition:
            background .2s ease,
            color .2s ease,
            transform .2s ease;
    }


    /* الأيقونات */

    .mobile-menu a i {

        width: 36px;
        height: 36px;

        flex-shrink: 0;

        display: flex;

        align-items: center;

        justify-content: center;

        border-radius: 11px;

        background: #eef8ff;

        color: #2096ED;

        font-size: 15px;

        transition: .2s ease;
    }


    /* عند المرور */

    .mobile-menu a:hover {

        background: #f1f9ff;

        color: #2096ED;

        transform: translateX(-2px);
    }

    .mobile-menu a:hover i {

        background: #2096ED;

        color: #fff;
    }


    /* الرابط النشط */

    .mobile-menu a:first-child {

        background:
            linear-gradient(
                90deg,
                #eef8ff,
                #f7fbff
            );

        color: #2096ED;
    }

    .mobile-menu a:first-child i {

        background: #2096ED;

        color: #fff;

        box-shadow:
            0 5px 14px rgba(32,150,237,.18);
    }


    /* خط بسيط بين العناصر */

    .mobile-menu a + a {
        border-top: 1px solid rgba(231,238,246,.55);
    }


    /* =================================================
       تحسين الشعار في الهيدر
    ================================================= */

    .brand {
        gap: 9px !important;
    }

    .brand-logo {
        width: 45px !important;
        height: 45px !important;
        border-radius: 14px !important;
    }

    .brand-text strong {
        font-size: 15px !important;
        line-height: 1.3;
    }

    .brand-text small {
        font-size: 9px !important;
        margin-top: 2px;
    }

}


/* =====================================================
   جوالات صغيرة جدًا
===================================================== */

@media (max-width: 380px) {

    .mobile-menu {
        right: 9px;
        left: 9px;

        padding: 8px !important;

        border-radius: 18px;
    }

    .mobile-menu a {

        min-height: 46px;

        padding: 8px 10px !important;

        font-size: 13px !important;
    }

    .mobile-menu a i {

        width: 33px;
        height: 33px;

        border-radius: 10px;

        font-size: 14px;
    }

}
/* تشغيل التطبيق أونلاين */
.online-app-button {
    width: min(92%, 620px);
    margin: 20px auto 30px;

    padding: 14px 18px;

    display: flex;
    align-items: center;
    gap: 14px;

    text-decoration: none;

    background: linear-gradient(
        135deg,
        #2096ED,
        #0878D1
    );

    color: #fff;

    border-radius: 18px;

    box-shadow:
        0 10px 28px rgba(32, 150, 237, .22);

    transition: all .25s ease;

    direction: rtl;
}

.online-app-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(32, 150, 237, .30);
}


/* الأيقونة */
.online-app-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255,255,255,.18);

    font-size: 21px;
}


/* النص */
.online-app-text {
    flex: 1;

    display: flex;
    flex-direction: column;

    text-align: right;
}

.online-app-text strong {
    font-size: 16px;
    font-weight: 800;

    line-height: 1.5;
}

.online-app-text small {
    margin-top: 2px;

    font-size: 11px;

    opacity: .88;
}


/* السهم */
.online-app-arrow {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255,255,255,.15);

    font-size: 14px;
}


/* الجوال */
@media (max-width: 600px) {

    .online-app-button {
        width: calc(100% - 28px);

        margin: 16px auto 24px;

        padding: 12px 14px;

        border-radius: 16px;

        gap: 11px;
    }

    .online-app-icon {
        width: 43px;
        height: 43px;

        border-radius: 12px;

        font-size: 18px;
    }

    .online-app-text strong {
        font-size: 14px;
    }

    .online-app-text small {
        font-size: 9px;
    }

    .online-app-arrow {
        width: 34px;
        height: 34px;

        border-radius: 10px;
    }
}
/* =========================================
   تشغيل التطبيق أونلاين
========================================= */

.online-app-button {
    width: min(92%, 720px);
    margin: 28px auto 38px;
    padding: 20px 24px;

    display: flex;
    align-items: center;
    gap: 18px;

    position: relative;
    overflow: hidden;

    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            rgba(32,150,237,.13),
            rgba(32,150,237,.035)
        );

    border: 1px solid rgba(32,150,237,.18);
    border-radius: 24px;

    color: #172033;

    box-shadow:
        0 12px 35px rgba(32,150,237,.10);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

    direction: rtl;
}

/* لمعة بسيطة */
.online-app-button::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    left: -80px;

    background: rgba(32,150,237,.08);

    border-radius: 50%;

    pointer-events: none;
}

.online-app-button:hover {
    transform: translateY(-5px);

    border-color: rgba(32,150,237,.35);

    box-shadow:
        0 18px 45px rgba(32,150,237,.17);
}


/* الأيقونة الكبيرة */

.online-app-icon {
    width: 64px;
    height: 64px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #2096ED,
            #0878D1
        );

    color: #fff;

    font-size: 26px;

    box-shadow:
        0 8px 20px rgba(32,150,237,.22);
}


/* النص */

.online-app-text {
    flex: 1;

    display: flex;
    flex-direction: column;

    text-align: right;
}

.online-app-text strong {
    font-size: 18px;

    font-weight: 800;

    color: #172033;

    line-height: 1.6;
}

.online-app-text small {
    margin-top: 3px;

    color: #718096;

    font-size: 12px;

    line-height: 1.7;
}


/* زر الدخول */

.online-app-arrow {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #2096ED;

    color: #fff;

    font-size: 15px;

    box-shadow:
        0 7px 18px rgba(32,150,237,.20);

    transition: .25s ease;
}

.online-app-button:hover .online-app-arrow {
    transform: translateX(-4px);
}


/* =========================================
   الجوال
========================================= */

@media (max-width: 600px) {

    .online-app-button {
        width: calc(100% - 28px);

        margin: 22px auto 30px;

        padding: 16px 15px;

        gap: 13px;

        border-radius: 21px;
    }

    .online-app-icon {
        width: 52px;
        height: 52px;

        border-radius: 16px;

        font-size: 21px;
    }

    .online-app-text strong {
        font-size: 15px;
    }

    .online-app-text small {
        font-size: 10px;
    }

    .online-app-arrow {
        width: 38px;
        height: 38px;

        border-radius: 12px;

        font-size: 13px;
    }
}
/* =================================================
   إصلاح ظهور زر تشغيل التطبيق على الكمبيوتر والجوال
================================================= */

.online-app-button {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: min(92%, 720px) !important;
    max-width: 720px !important;

    margin: 28px auto 38px !important;

    padding: 20px 24px !important;

    align-items: center !important;
    justify-content: flex-start !important;

    position: relative !important;
    z-index: 10 !important;

    direction: rtl !important;

    text-decoration: none !important;

    background: linear-gradient(
        135deg,
        rgba(32,150,237,.13),
        rgba(32,150,237,.035)
    ) !important;

    border: 1px solid rgba(32,150,237,.18) !important;
    border-radius: 24px !important;

    color: #172033 !important;

    box-shadow:
        0 12px 35px rgba(32,150,237,.10) !important;
}


/* الأيقونة */

.online-app-button .online-app-icon {
    width: 64px !important;
    height: 64px !important;

    flex-shrink: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 20px !important;

    background: linear-gradient(
        145deg,
        #2096ED,
        #0878D1
    ) !important;

    color: white !important;

    font-size: 26px !important;
}


/* النص */

.online-app-button .online-app-text {
    flex: 1 !important;

    display: flex !important;
    flex-direction: column !important;

    text-align: right !important;
}

.online-app-button .online-app-text strong {
    display: block !important;

    font-size: 18px !important;
    font-weight: 800 !important;

    color: #172033 !important;
}

.online-app-button .online-app-text small {
    display: block !important;

    margin-top: 3px !important;

    font-size: 12px !important;

    color: #718096 !important;
}


/* السهم */

.online-app-button .online-app-arrow {
    width: 44px !important;
    height: 44px !important;

    flex-shrink: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 14px !important;

    background: #2096ED !important;

    color: white !important;
}


/* ================================
   الجوال
================================ */

@media (max-width: 600px) {

    .online-app-button {
        width: calc(100% - 28px) !important;
        max-width: 720px !important;

        margin: 22px auto 30px !important;

        padding: 16px 15px !important;

        border-radius: 21px !important;
    }

    .online-app-button .online-app-icon {
        width: 52px !important;
        height: 52px !important;

        border-radius: 16px !important;

        font-size: 21px !important;
    }

    .online-app-button .online-app-text strong {
        font-size: 15px !important;
    }

    .online-app-button .online-app-text small {
        font-size: 10px !important;
    }

    .online-app-button .online-app-arrow {
        width: 38px !important;
        height: 38px !important;
    }
}