/* Intro landing — App Landing Page (Figma) */

:root {
    --intro-cyan: #38bdf8;
    --intro-cyan-dark: #0ea5e9;
    --intro-navy: #101828;
    --intro-slate: #64748b;
    --intro-bg: #f8fafc;
    --intro-card: #ffffff;
    --intro-gradient-hero: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(56, 189, 248, 0.2), transparent 55%),
        radial-gradient(ellipse 60% 50% at 15% 100%, rgba(34, 197, 94, 0.14), transparent 50%);
    --intro-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
    --intro-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
}

html.intro-landing,
html.intro-landing body {
    font-family: "Tajawal", "JF Flat", "Segoe UI", sans-serif;
    color: var(--intro-slate);
}

html.intro-landing .body-content {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 55%, #f8fafc 100%);
}

/* Header */
html.intro-landing header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06) !important;
    padding: 10px 0 !important;
}

html.intro-landing .intro-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
}

html.intro-landing .intro-logo img.the-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

html.intro-landing .nav_bar {
    flex-grow: 1;
    justify-content: center !important;
    gap: 0.25rem 1rem;
    flex-wrap: wrap;
}

html.intro-landing .nav_bar li a {
    color: var(--intro-navy) !important;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.35rem 0;
}

html.intro-landing .nav_bar li a:hover,
html.intro-landing .nav_bar li a.active {
    color: var(--intro-cyan) !important;
}

html.intro-landing .intro-header-tools {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

html.intro-landing .intro-header-tools .dropdown-toggle {
    color: var(--intro-navy);
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
}

html.intro-landing .close-open-nav > div span {
    background: var(--intro-navy) !important;
}

html.intro-landing .dropdown-menu {
    border-color: rgba(56, 189, 248, 0.35);
}

html.intro-landing .dropdown-menu .dropdown-item {
    color: var(--intro-navy);
}

/* Hero */
html.intro-landing .hero-section.owl-carousel .item {
    min-height: 520px;
    display: flex;
    align-items: center;
}

html.intro-landing .hero-section .info_owl {
    width: 100%;
    height: auto !important;
    min-height: 480px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    background: var(--intro-gradient-hero);
    padding: 2.5rem 0 3.5rem;
}

html.intro-landing .hero-section .hero-row {
    align-items: center;
}

html.intro-landing .hero-title {
    font-size: clamp(1.65rem, 4vw, 2.65rem);
    font-weight: 800;
    color: var(--intro-navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}

html.intro-landing .hero-title .hero-title-accent {
    color: var(--intro-cyan);
    font-weight: 800;
}

html.intro-landing .hero-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--intro-slate);
    margin-bottom: 1.75rem;
    max-width: 36rem;
}

html.intro-landing .hero-desc.download-app-html p {
    margin-bottom: 0.85rem;
}

html.intro-landing .hero-desc.download-app-html p:last-child {
    margin-bottom: 0;
}

html.intro-landing .hero-desc.download-app-html ul,
html.intro-landing .hero-desc.download-app-html ol {
    margin: 0.5rem 0 0.85rem;
    padding-inline-start: 1.25rem;
}

html.intro-landing .hero-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

html.intro-landing .btn-store {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 48px;
}

html.intro-landing .btn-store:hover {
    transform: translateY(-2px);
    box-shadow: var(--intro-shadow-sm);
    color: inherit;
    text-decoration: none;
}

html.intro-landing .btn-store--apple {
    background: #fff;
    color: var(--intro-cyan-dark);
    border: 2px solid rgba(56, 189, 248, 0.55);
}

html.intro-landing .btn-store--google {
    background: linear-gradient(135deg, var(--intro-cyan), var(--intro-cyan-dark));
    color: #fff;
    border: 2px solid transparent;
}

html.intro-landing .btn-store__icon {
    font-size: 1.4rem;
    line-height: 1;
}

html.intro-landing .btn-store--apple .btn-store__icon {
    color: var(--intro-cyan-dark);
}

html.intro-landing .btn-store--google .btn-store__icon {
    color: #fff;
}

html.intro-landing .hero-section .img_owl_index {
    position: relative !important;
    width: 100% !important;
    max-width: 440px;
    height: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    border-radius: 24px;
    overflow: hidden;
    margin-inline: auto;
    box-shadow: var(--intro-shadow);
}

html.intro-landing .hero-section .img_owl_index::after {
    display: none !important;
}

html.intro-landing .hero-section .img_owl_index img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

html.intro-landing .hero-section .ads_wol {
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 2;
}

html.intro-landing .hero-section .owl-dots {
    bottom: 1.25rem;
}

html.intro-landing .hero-section .owl-nav {
    bottom: 0.75rem;
}

html.intro-landing .hero-section .owl-nav > div {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    color: var(--intro-navy) !important;
}

html.intro-landing .hero-section .owl-nav > div:hover {
    background: var(--intro-cyan) !important;
    color: #fff !important;
}

html.intro-landing .hero-section .owl-dot.active {
    background: var(--intro-cyan) !important;
}

/* Sections */
html.intro-landing .sec-padd {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

html.intro-landing .section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.25rem;
}

html.intro-landing .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    color: var(--intro-cyan-dark);
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
}

html.intro-landing .section-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--intro-cyan);
}

html.intro-landing .section-title {
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    font-weight: 800;
    color: var(--intro-navy);
    margin-bottom: 0.65rem;
    line-height: 1.35;
}

html.intro-landing .section-title .text-accent {
    color: var(--intro-cyan);
}

html.intro-landing .section-sub {
    color: var(--intro-slate);
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 0;
}

/* About */
html.intro-landing #who_we {
    background: #fff;
}

html.intro-landing .about-grid {
    align-items: center;
}

/* LTR: نفس الترتيب البصري (نص يسار، صور يمين) */
html.intro-landing[dir="ltr"] .about-grid {
    flex-direction: row-reverse;
}

html.intro-landing .about-copy {
    padding-inline-end: 0.5rem;
}

html.intro-landing .about-body,
html.intro-landing .about-html {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--intro-slate);
}

/* محتوى من CKEditor: فقرات، عناوين، قوائم */
html.intro-landing .about-html p {
    margin-bottom: 1rem;
}

html.intro-landing .about-html p:last-child {
    margin-bottom: 0;
}

html.intro-landing .about-html ul,
html.intro-landing .about-html ol {
    margin: 0.75rem 0 1rem;
    padding-inline-start: 1.25rem;
}

html.intro-landing .about-html li {
    margin-bottom: 0.35rem;
}

html.intro-landing .about-html h1,
html.intro-landing .about-html h2,
html.intro-landing .about-html h3,
html.intro-landing .about-html h4 {
    color: var(--intro-navy);
    margin: 1.25rem 0 0.75rem;
    font-weight: 800;
}

html.intro-landing .about-html h1:first-child,
html.intro-landing .about-html h2:first-child,
html.intro-landing .about-html h3:first-child,
html.intro-landing .about-html h4:first-child {
    margin-top: 0;
}

html.intro-landing .about-html a {
    color: var(--intro-cyan-dark);
    text-decoration: underline;
}

html.intro-landing .about-html img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

html.intro-landing .about-visual {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

html.intro-landing .about-visual .deco {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 18px;
    background: rgba(139, 92, 246, 0.12);
    z-index: 0;
}

html.intro-landing .about-visual .deco-1 {
    top: 6%;
    inset-inline-end: 4%;
    transform: rotate(12deg);
}

html.intro-landing .about-visual .deco-2 {
    bottom: 4%;
    inset-inline-start: 6%;
    transform: rotate(-10deg);
}

html.intro-landing .about-visual .img_info_JM.about-phones {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    min-height: 320px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

html.intro-landing .about-visual .about-phone {
    border-radius: 28px;
    box-shadow: var(--intro-shadow);
    object-fit: cover;
    display: block;
}

/* الهاتف الأمامي (صورة 1 من الإعدادات) */
html.intro-landing .about-visual .about-phone--front {
    position: relative;
    z-index: 3;
    width: min(270px, 82vw);
    height: auto;
    max-height: 520px;
}

/* الهاتف الخلفي (صورة 2) — يتموضع خلف الجهاز الأمامي */
html.intro-landing .about-visual .about-phone--back {
    position: absolute;
    z-index: 2;
    width: min(220px, 72vw);
    height: auto;
    max-height: 450px;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 0;
}

/* Services */
html.intro-landing #our_service {
    background: linear-gradient(180deg, #e8f4fc 0%, #ffffff 100%) !important;
}

html.intro-landing .service-card {
    background: var(--intro-card) !important;
    border-radius: 20px;
    padding: 1.5rem 1.2rem;
    margin-bottom: 1rem;
    box-shadow: var(--intro-shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.05);
    min-height: calc(100% - 1rem);
    position: relative;
    overflow: visible !important;
    transition: box-shadow 0.25s, transform 0.25s;
}

html.intro-landing .service-card:hover {
    box-shadow: var(--intro-shadow);
    transform: translateY(-4px);
}

html.intro-landing .service-card::after {
    display: none !important;
}

html.intro-landing .service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(56, 189, 248, 0.14);
    color: var(--intro-cyan-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

html.intro-landing .service-card h6 {
    color: var(--intro-navy);
    font-size: 1.05rem;
    margin-bottom: 0.55rem;
}

html.intro-landing .service-card p {
    color: var(--intro-slate);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* How we work */
html.intro-landing #how_work {
    background: #fff;
}

html.intro-landing .how-work-carousel-wrap {
    max-width: 960px;
    margin: 0 auto;
}

html.intro-landing .how-phone-card {
    text-align: center;
    padding: 0.5rem;
}

html.intro-landing .how-phone-card img {
    width: 100%;
    max-width: 240px;
    height: 420px;
    object-fit: cover;
    border-radius: 28px;
    margin: 0 auto 0.65rem;
    box-shadow: var(--intro-shadow);
    border: 2px solid rgba(15, 23, 42, 0.06);
}

html.intro-landing .how-phone-card .how-caption {
    font-weight: 700;
    color: var(--intro-navy);
    font-size: 0.95rem;
}

html.intro-landing .owl-how-work .owl-nav > div {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
}

html.intro-landing .owl-how-work .owl-item.center .how-phone-card img {
    max-width: 260px;
    height: 460px;
}

/* FAQ */
html.intro-landing #FAQ {
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%) !important;
}

html.intro-landing #FAQ .nav-pills {
    justify-content: center !important;
    gap: 0.65rem;
    flex-wrap: wrap;
}

html.intro-landing #FAQ .nav-pills .nav-item {
    margin: 0;
}

html.intro-landing #FAQ .nav-pills .nav-link {
    width: auto !important;
    min-width: 130px;
    height: auto !important;
    line-height: 1.35 !important;
    padding: 0.75rem 1rem !important;
    border-radius: 16px !important;
    background: #fff !important;
    color: var(--intro-slate) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-weight: 700;
    margin: 0 !important;
}

html.intro-landing #FAQ .nav-pills .nav-link i {
    opacity: 0.75;
}

html.intro-landing #FAQ .nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--intro-cyan), var(--intro-cyan-dark)) !important;
    color: #fff !important;
    border-color: transparent !important;
}

html.intro-landing #FAQ .nav-pills .nav-link.active i {
    opacity: 1;
    color: #fff;
}

html.intro-landing .faq-accordion .faq-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--intro-shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.06);
    margin-bottom: 0.85rem;
    overflow: hidden;
}

html.intro-landing .faq-accordion .faq-head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.15rem;
    text-align: start;
    background: #fff;
    border: none;
    cursor: pointer;
}

html.intro-landing .faq-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.18);
    color: var(--intro-cyan-dark);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

html.intro-landing .faq-accordion .collapsed .faq-num {
    background: #f1f5f9;
    color: var(--intro-slate);
}

html.intro-landing .faq-q {
    flex: 1;
    font-weight: 700;
    color: var(--intro-navy);
    line-height: 1.5;
}

html.intro-landing .faq-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--intro-slate);
    display: flex;
    align-items: center;
    justify-content: center;
}

html.intro-landing .faq-body-inner {
    padding: 0 1.15rem 1.15rem 4rem;
    color: var(--intro-slate);
    line-height: 1.85;
    font-size: 0.98rem;
}

/* Partners */
html.intro-landing #parteners {
    background: #fff;
}

html.intro-landing .partner-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.15rem;
    box-shadow: var(--intro-shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.05);
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

html.intro-landing .partner-card img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Contact */
html.intro-landing #connect_us {
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
}

html.intro-landing .contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--intro-shadow);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

html.intro-landing .contact-card .form-label {
    display: block;
    font-weight: 700;
    color: var(--intro-navy);
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
}

html.intro-landing .contact-card .form-control {
    background: #f8fafc !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 14px !important;
    padding: 0.85rem 1rem !important;
}

html.intro-landing .contact-card textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

html.intro-landing .contact-card .char-count {
    font-size: 0.85rem;
    color: var(--intro-slate);
    margin-top: 0.35rem;
}

html[dir="rtl"] .intro-landing .contact-card .char-count {
    text-align: right;
}

html[dir="ltr"] .intro-landing .contact-card .char-count {
    text-align: left;
}

html.intro-landing .btn-send-message {
    width: 100%;
    border-radius: 14px !important;
    padding: 0.95rem 1.25rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--intro-cyan), var(--intro-cyan-dark)) !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #fff !important;
}

html.intro-landing .btn-send-message i {
    margin: 0 !important;
}

/* Footer */
html.intro-landing footer {
    background: var(--intro-navy) !important;
    padding: 2.5rem 0 0 !important;
    color: #e2e8f0;
}

html.intro-landing footer .logo_footer {
    max-height: 48px;
    margin-bottom: 1rem;
}

html.intro-landing footer .footer-about {
    color: #94a3b8;
    line-height: 1.85;
    font-size: 0.92rem;
    margin-bottom: 1.15rem;
}

html.intro-landing footer .social-m li a {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    width: 40px !important;
    height: 40px !important;
}

html.intro-landing footer .social-m li a:hover {
    background: var(--intro-cyan) !important;
    color: #fff !important;
}

html.intro-landing footer .Tfooter {
    color: #fff !important;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.85rem;
}

html.intro-landing footer .link-footer a,
html.intro-landing footer .link-footer li {
    color: #cbd5e1 !important;
}

html.intro-landing footer .link-footer a:hover {
    color: var(--intro-cyan) !important;
}

html.intro-landing .under_footer {
    background: rgba(0, 0, 0, 0.25) !important;
    margin-top: 2rem;
    padding: 1.15rem 0 !important;
    text-align: center;
    color: #94a3b8;
}

html.intro-landing .under_footer a {
    color: #e2e8f0 !important;
}

html.intro-landing .footer-made {
    margin-top: 0.35rem;
    font-size: 0.88rem;
    color: #94a3b8;
}

/* Mobile nav */
@media (max-width: 991.98px) {
    html.intro-landing .nav_bar {
        background: #f8fafc !important;
        color: var(--intro-navy) !important;
        box-shadow: -4px 0 28px rgba(15, 23, 42, 0.12) !important;
    }

    html.intro-landing .nav_bar a {
        color: var(--intro-navy) !important;
    }

    html.intro-landing .nav_bar a.active {
        color: var(--intro-cyan) !important;
    }

    html.intro-landing .hero-section .info_owl {
        min-height: auto;
        padding: 1.5rem 0 3rem;
    }

    html.intro-landing .hero-section .img_owl_index {
        margin-top: 1.5rem;
    }

    html.intro-landing .about-visual {
        margin-top: 2rem;
        min-height: auto;
    }

    html.intro-landing .faq-body-inner {
        padding-inline-start: 1.15rem;
    }
}

/* LTR */
html.intro-landing[dir="ltr"] .about-visual .about-phone--back {
    inset-inline-start: auto;
    inset-inline-end: 0;
}

html.intro-landing[dir="ltr"] .faq-body-inner {
    padding: 0 4rem 1.15rem 1.15rem;
}
