:root{
    --navy:#0a2647;
    --navy-light:#143a6b;
    --sky:#5BC0EB;
    --sky-light:#7DD3F0;
    --w:#fff;
    --bg:#f8f9fb;
    --bg-soft:#fafbfc;
    --txt:#1a2332;
    --txt-mute:#5c6878;
    --txt-faint:#8a96a8;
    --border:#e5eaf0;
    --border-soft:#eef1f5;
}
*{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent}
html,body{
    font-family:'Readex Pro',sans-serif;
    background:var(--w);
    color:var(--txt);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none;cursor:pointer}
button{cursor:pointer;font-family:inherit;border:none;background:none;color:inherit}
ul,ol{list-style:none}

@keyframes fadeIn{from{opacity:0;transform:translateY(15px)}to{opacity:1;transform:translateY(0)}}
.page-enter{animation:fadeIn .5s ease-out}

/* ========== شاشة التحميل ========== */
#loader{
    position:fixed;inset:0;z-index:99999;
    background:var(--navy);
    display:flex;align-items:center;justify-content:center;
    transition:opacity .4s ease,visibility .4s ease;
}
#loader.hidden{opacity:0;visibility:hidden;pointer-events:none}
#loader img{
    max-width:280px;
    width:60%;
    height:auto;
}

/* ========== ستار الانتقال - GIF ========== */
#curtain{
    position:fixed;inset:0;z-index:9999;
    background:var(--navy);
    display:flex;align-items:center;justify-content:center;
    opacity:0;visibility:hidden;
    pointer-events:none;
    transition:opacity .3s ease,visibility .3s ease;
}
#curtain.up{
    opacity:1;visibility:visible;
    pointer-events:all;
}
#curtain img{
    max-width:280px;
    width:60%;
    height:auto;
}

@media(max-width:480px){
    #loader img,#curtain img{max-width:200px;width:70%}
}

/* ========== أزرار - بسيطة ========== */
.btn{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    padding:14px 36px;border-radius:8px;
    font-weight:600;font-size:14px;
    transition:all .3s ease;cursor:pointer;
    letter-spacing:.3px;border:1.5px solid transparent;
}
.btn-fill{background:var(--navy);color:#fff}
.btn-fill:hover{background:var(--navy-light);transform:translateY(-1px);box-shadow:0 8px 18px rgba(10,38,71,0.2)}
.btn-out{background:transparent;color:var(--w);border-color:rgba(255,255,255,0.6)}
.btn-out:hover{background:#fff;color:var(--navy);border-color:#fff}
.btn-ghost{background:transparent;color:var(--navy);border-color:var(--navy)}
.btn-ghost:hover{background:var(--navy);color:#fff}
.btn-sky{background:var(--sky);color:var(--navy);font-weight:700}
.btn-sky:hover{background:var(--sky-light);transform:translateY(-1px)}

.lnk{
    display:inline-flex;align-items:center;gap:6px;
    color:var(--navy);font-weight:600;font-size:13.5px;
    transition:gap .25s;
}
.lnk::after{content:'←';font-size:14px}
.lnk:hover{gap:12px;color:var(--sky)}

/* ========== هيدر ========== */
.hdr{
    position:fixed;top:0;left:0;right:0;z-index:100;
    padding:18px 0;background:transparent;
    transition:all .35s ease;
}
.hdr.sc{
    background:rgba(255,255,255,0.97);
    backdrop-filter:blur(20px);
    border-bottom:1px solid var(--border-soft);
    padding:12px 0;
    box-shadow:0 1px 14px rgba(0,0,0,0.04);
}
.hc{
    max-width:1300px;margin:0 auto;padding:0 28px;
    display:flex;align-items:center;justify-content:space-between;gap:15px;
}
.logo img{height:44px;filter:brightness(0) invert(1);transition:filter .3s}
.hdr.sc .logo img{filter:none}

body.inner-page .hdr{
    background:rgba(255,255,255,0.97);
    backdrop-filter:blur(20px);
    border-bottom:1px solid var(--border-soft);
}
body.inner-page .logo img{filter:none}
body.inner-page .mnav a{color:var(--txt-mute)}
body.inner-page .mnav a:hover,body.inner-page .mnav a.act{color:var(--navy)}
body.inner-page .burg span{background:var(--navy)}
body.inner-page .burg{background:rgba(10,38,71,0.05);border-color:var(--border)}

.mnav{display:flex;align-items:center;gap:0}
.mnav a{
    color:rgba(255,255,255,0.9);
    padding:8px 16px;font-size:14px;font-weight:500;
    border-radius:6px;transition:all .2s;white-space:nowrap;
}
.mnav a:hover{color:#fff}
.mnav a.act{color:var(--sky)}
.hdr.sc .mnav a{color:var(--txt-mute)}
.hdr.sc .mnav a:hover,.hdr.sc .mnav a.act{color:var(--navy)}
.hx{display:flex;align-items:center;gap:10px}
.burg{
    display:none;cursor:pointer;
    width:42px;height:42px;border-radius:8px;
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.25);
    align-items:center;justify-content:center;
    flex-direction:column;gap:5px;padding:0;
}
.burg span{display:block;width:20px;height:2px;background:#fff;border-radius:1px;transition:background .3s}
.hdr.sc .burg{background:rgba(10,38,71,0.05);border-color:var(--border)}
.hdr.sc .burg span{background:var(--navy)}

/* ========== HERO الرئيسية - زي واجهات العقارية ========== */
.hero{
    position:relative;width:100%;height:100vh;min-height:620px;
    display:flex;align-items:center;justify-content:center;
    overflow:hidden;color:#fff;text-align:center;
}
.hero-video{position:absolute;inset:0;overflow:hidden;z-index:0}
.hero-video video{width:100%;height:100%;object-fit:cover;object-position:center}
.hero-ov{
    position:absolute;inset:0;z-index:1;
    background:linear-gradient(180deg,rgba(10,38,71,0.55) 0%,rgba(10,38,71,0.7) 100%);
}
.hero-c{
    position:relative;z-index:2;
    max-width:900px;width:100%;
    padding:0 28px;margin:0 auto;
}
.hero-pretitle{
    color:var(--sky);
    font-size:13px;letter-spacing:8px;font-weight:500;
    margin-bottom:36px;text-transform:uppercase;
    opacity:.9;
}
.hero-c h1{
    font-size:72px;font-weight:700;color:#fff;
    margin-bottom:30px;line-height:1.15;
    letter-spacing:-1.5px;
}
.hero-c h1 span{color:var(--sky)}
.hero-c>p{
    font-size:17px;color:rgba(255,255,255,0.85);
    margin-bottom:44px;line-height:1.9;font-weight:400;
    max-width:560px;margin-left:auto;margin-right:auto;
}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}

/* ========== HERO الصفحات الفرعية ========== */
.page-hero{
    position:relative;
    padding:160px 28px 70px;
    background:var(--navy);
    color:#fff;text-align:center;overflow:hidden;
}
.page-hero::before{
    content:'';position:absolute;inset:0;
    background:radial-gradient(ellipse at center,rgba(91,192,235,0.12),transparent 70%);
}
.page-hero-c{position:relative;z-index:2;max-width:900px;margin:0 auto}
.page-hero .sub-tag{
    background:rgba(91,192,235,0.15);
    color:var(--sky);
    border:1px solid rgba(91,192,235,0.3);
}
.page-hero h1{
    font-size:48px;font-weight:700;color:#fff;
    margin-bottom:16px;line-height:1.2;letter-spacing:-.8px;
}
.page-hero h1 span{color:var(--sky)}
.page-hero p{
    font-size:16px;color:rgba(255,255,255,0.8);
    max-width:640px;line-height:1.8;
    margin:0 auto;
}

/* ========== الأقسام ========== */
.sec{padding:100px 28px;max-width:1300px;margin:0 auto;width:100%}
.sec-head{margin-bottom:56px;text-align:center}
.sub-tag{
    display:inline-block;padding:7px 16px;
    background:rgba(10,38,71,0.06);
    color:var(--navy);font-size:11px;font-weight:600;
    letter-spacing:2px;margin-bottom:18px;
    border-radius:100px;text-transform:uppercase;
}
.sec-title{
    font-size:44px;font-weight:700;
    color:var(--navy);margin-bottom:16px;
    line-height:1.2;letter-spacing:-.8px;
}
.sec-title span{color:var(--sky)}
.sec-desc{
    font-size:16px;color:var(--txt-mute);
    line-height:1.85;max-width:680px;
    margin:0 auto;
}
.sec-light{background:var(--bg-soft)}

/* ========== ABOUT - بسيط ومرتب ========== */
.bgrid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.bgrid img{width:100%;height:auto;object-fit:cover;border-radius:18px;box-shadow:0 14px 40px rgba(10,38,71,0.1)}
.bgrid h3{font-size:30px;font-weight:700;margin-bottom:16px;color:var(--navy);letter-spacing:-.5px}
.bgrid p{font-size:15.5px;color:var(--txt-mute);line-height:1.9;margin-bottom:20px}
.bgrid p strong{color:var(--navy);font-weight:600}
.afeat{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:28px 0}
.afeat .it{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--txt);font-weight:500}
.afeat i{
    width:24px;height:24px;border-radius:50%;
    background:var(--sky);color:var(--navy);
    display:flex;align-items:center;justify-content:center;
    font-size:10px;flex-shrink:0;font-weight:700;
}

.nums{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:30px}
.num-c{
    padding:22px 18px;border-radius:14px;
    background:#fff;border:1px solid var(--border);
    text-align:center;transition:all .3s;
}
.num-c:hover{border-color:var(--sky);transform:translateY(-3px);box-shadow:0 10px 24px rgba(10,38,71,0.08)}
.num-c .n{font-size:32px;font-weight:700;color:var(--navy);letter-spacing:-1px;line-height:1}
.num-c .l{font-size:11.5px;color:var(--txt-faint);margin-top:8px;font-weight:500}

/* ========== الخدمات ========== */
.svgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.svc{
    padding:32px 28px;border-radius:16px;
    background:#fff;border:1px solid var(--border);
    transition:all .3s;text-align:center;
}
.svc:hover{border-color:var(--sky);transform:translateY(-5px);box-shadow:0 14px 36px rgba(10,38,71,0.1)}
.svc-i{
    width:64px;height:64px;border-radius:14px;
    background:var(--navy);color:var(--sky);
    display:flex;align-items:center;justify-content:center;
    font-size:24px;margin:0 auto 22px;
    transition:all .3s;
}
.svc:hover .svc-i{background:var(--sky);color:var(--navy);transform:scale(1.05)}
.svc h4{font-size:18px;font-weight:700;margin-bottom:8px;color:var(--navy)}
.svc .en{font-size:10px;color:var(--txt-faint);letter-spacing:1.8px;margin-bottom:14px;font-weight:600;text-transform:uppercase}
.svc p{font-size:14px;color:var(--txt-mute);line-height:1.75}

/* ========== المشاريع ========== */
.pjgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.pjcard{
    border-radius:16px;overflow:hidden;
    border:1px solid var(--border);background:#fff;transition:all .3s;
}
.pjcard:hover{transform:translateY(-5px);border-color:var(--sky);box-shadow:0 14px 36px rgba(10,38,71,0.1)}
.pjcard .pjimg{aspect-ratio:16/10;background-size:cover;background-position:center;background-color:var(--bg)}
.pjcard .pjbody{padding:26px}
.pjcard h4{font-size:19px;font-weight:700;margin-bottom:12px;color:var(--navy)}
.pjcard .pjmeta{display:flex;gap:8px;margin-bottom:14px;flex-wrap:wrap}
.pjcard .pjmeta span{
    padding:5px 14px;border-radius:14px;
    background:rgba(10,38,71,0.06);color:var(--navy);
    font-size:11px;font-weight:600;
}
.pjcard p{font-size:14px;color:var(--txt-mute);line-height:1.75}

/* ========== قسم خدمات ما بعد البيع ========== */
.aftersales{
    background:linear-gradient(135deg,#0072BC 0%,#005a96 100%);
    padding:80px 28px 90px;
    position:relative;
    overflow:hidden;
}
.aftersales::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(ellipse at top right,rgba(91,192,235,0.25),transparent 50%),
        radial-gradient(ellipse at bottom left,rgba(255,255,255,0.08),transparent 50%);
    pointer-events:none;
}
.aftersales-c{
    max-width:1100px;
    margin:0 auto;
    position:relative;
    z-index:2;
}
.as-header{text-align:center;margin-bottom:50px}
.as-title{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:8px;
    letter-spacing:-.5px;
}
.as-subtitle{
    color:rgba(255,255,255,0.7);
    font-size:17px;
    font-weight:400;
    letter-spacing:2px;
}

/* شكل اللانهاية */
.as-infinity{
    position:absolute;
    inset:auto 0 60px 0;
    z-index:1;
    width:100%;
    height:240px;
    pointer-events:none;
    opacity:.65;
}
.as-infinity svg{
    width:100%;
    height:100%;
}
.inf-path{
    stroke-dasharray:6 4;
    animation:dashFlow 30s linear infinite;
}
@keyframes dashFlow{
    to{stroke-dashoffset:-300}
}

/* البطاقات الثلاث */
.as-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    position:relative;
    z-index:2;
    margin-bottom:40px;
}
.as-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:50%;
    aspect-ratio:1;
    max-width:240px;
    margin:0 auto;
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:30px 20px;
    cursor:pointer;
    transition:all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position:relative;
}
.as-card::before{
    content:'';
    position:absolute;
    inset:-3px;
    border-radius:50%;
    background:linear-gradient(135deg,rgba(255,255,255,0.4),rgba(255,255,255,0));
    opacity:0;
    transition:opacity .3s;
    z-index:-1;
}
.as-card:hover,
.as-card.active{
    background:#fff;
    transform:translateY(-8px) scale(1.05);
    box-shadow:0 18px 40px rgba(0,0,0,0.25);
}
.as-card:hover::before,
.as-card.active::before{opacity:1}

.as-card-icon{
    width:60px;height:60px;border-radius:50%;
    background:rgba(255,255,255,0.15);
    color:#fff;
    display:flex;align-items:center;justify-content:center;
    font-size:24px;
    margin-bottom:14px;
    transition:all .3s;
}
.as-card:hover .as-card-icon,
.as-card.active .as-card-icon{
    background:var(--brand);
    color:#fff;
}
.as-card h3{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:6px;
    transition:color .3s;
}
.as-card.active h3,
.as-card:hover h3{color:var(--navy)}
.as-card .as-en{
    color:rgba(255,255,255,0.7);
    font-size:13px;
    font-weight:400;
    transition:color .3s;
}
.as-card.active .as-en,
.as-card:hover .as-en{color:var(--brand)}

/* تفاصيل الخدمة */
.as-details{
    background:#fff;
    border-radius:18px;
    padding:36px 44px;
    box-shadow:0 14px 40px rgba(0,0,0,0.18);
    position:relative;
    z-index:2;
}
.as-detail{
    display:none;
}
.as-detail.active{
    display:block;
    animation:fadeInDetail .4s ease-out;
}
@keyframes fadeInDetail{
    from{opacity:0;transform:translateY(8px)}
    to{opacity:1;transform:translateY(0)}
}
.as-detail h4{
    color:var(--navy);
    font-size:22px;
    font-weight:700;
    margin-bottom:14px;
    display:flex;
    align-items:center;
    gap:12px;
}
.as-detail h4 i{
    color:var(--brand);
    font-size:20px;
    background:rgba(0,114,188,0.08);
    width:42px;height:42px;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
.as-detail p{
    color:var(--txt-mute);
    font-size:15.5px;
    line-height:2;
    text-align:right;
}
.as-detail p strong{color:var(--navy);font-weight:700}

/* Mobile */
@media(max-width:992px){
    .aftersales{padding:60px 18px 70px}
    .as-title{font-size:30px}
    .as-subtitle{font-size:14px;letter-spacing:1.5px}
    .as-header{margin-bottom:36px}
    
    .as-cards{
        grid-template-columns:1fr;
        gap:20px;
        max-width:280px;
        margin-left:auto;
        margin-right:auto;
        margin-bottom:30px;
    }
    .as-card{
        max-width:100%;
        aspect-ratio:auto;
        border-radius:16px;
        flex-direction:row;
        text-align:right;
        padding:18px 22px;
        gap:16px;
        justify-content:flex-start;
    }
    .as-card-icon{
        width:48px;height:48px;font-size:20px;
        margin-bottom:0;flex-shrink:0;
    }
    .as-card h3{font-size:16px;margin-bottom:2px}
    .as-card .as-en{font-size:12px}
    .as-card:hover,
    .as-card.active{transform:translateY(-3px) scale(1.02)}
    
    /* إخفاء شكل اللانهاية في الجوال */
    .as-infinity{display:none}
    
    .as-details{padding:24px 20px;border-radius:14px}
    .as-detail h4{font-size:18px;margin-bottom:12px}
    .as-detail h4 i{width:36px;height:36px;font-size:16px}
    .as-detail p{font-size:14px;line-height:1.9}
}
@media(max-width:480px){
    .as-title{font-size:24px}
    .as-subtitle{font-size:13px}
    .as-card{padding:16px 18px;gap:12px}
    .as-card-icon{width:42px;height:42px;font-size:18px}
    .as-card h3{font-size:15px}
    .as-detail p{font-size:13.5px}
}

/* ========== سلايدر الشركاء المتحرك ========== */
.partners-slider{
    overflow:hidden;
    position:relative;
    margin-top:40px;
    padding:10px 0;
    -webkit-mask-image:linear-gradient(to right,transparent 0%,#000 8%,#000 92%,transparent 100%);
    mask-image:linear-gradient(to right,transparent 0%,#000 8%,#000 92%,transparent 100%);
}
.partners-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:scrollPartners 35s linear infinite;
}
.ps-item{
    flex-shrink:0;
    width:200px;height:120px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    display:flex;align-items:center;justify-content:center;
    padding:24px 20px;
    transition:all .3s;
}
.ps-item:hover{border-color:var(--sky);box-shadow:0 8px 20px rgba(10,38,71,0.06)}
.ps-item img{
    max-width:100%;max-height:70px;
    object-fit:contain;
    transition:all .3s;
}
.partners-slider:hover .partners-track{
    animation-play-state:paused;
}
@keyframes scrollPartners{
    0%{transform:translateX(0)}
    100%{transform:translateX(50%)}
}

@media(max-width:992px){
    .ps-item{width:160px;height:100px;padding:18px 14px}
    .ps-item img{max-height:55px}
    .partners-track{gap:14px}
}
@media(max-width:480px){
    .ps-item{width:140px;height:90px;padding:14px}
    .ps-item img{max-height:50px}
}

/* ========== الشركاء ========== */
.ptg{display:grid;grid-template-columns:repeat(6,1fr);gap:16px;margin-top:50px}
.ptc{
    padding:22px 18px;border-radius:14px;
    background:#fff;border:1px solid var(--border);
    height:110px;
    display:flex;align-items:center;justify-content:center;transition:all .3s;
}
.ptc img{
    max-width:100%;max-height:65px;object-fit:contain;
    transition:all .3s;opacity:.65;filter:grayscale(50%);
}
.ptc:hover{border-color:var(--sky);box-shadow:0 10px 24px rgba(10,38,71,0.08);transform:translateY(-3px)}
.ptc:hover img{opacity:1;filter:grayscale(0%)}

.ptstats{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:50px}
.ptst{
    padding:32px 24px;border-radius:16px;
    background:#fff;border:1px solid var(--border);
    text-align:center;transition:all .3s;
}
.ptst:hover{border-color:var(--sky);transform:translateY(-5px);box-shadow:0 12px 30px rgba(10,38,71,0.08)}
.ptst i{font-size:28px;color:var(--sky);margin-bottom:14px;display:block}
.ptst .n{font-size:42px;font-weight:700;color:var(--navy);letter-spacing:-1.5px;line-height:1}
.ptst .l{font-size:13px;color:var(--txt-mute);margin-top:8px;font-weight:500}

/* ========== آراء العملاء ========== */
.trgrid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.trc{
    padding:32px;border-radius:16px;
    background:#fff;border:1px solid var(--border);transition:all .3s;
}
.trc:hover{border-color:var(--sky);box-shadow:0 12px 30px rgba(10,38,71,0.08)}
.trc .qi{font-size:32px;color:var(--sky);opacity:.4;margin-bottom:16px}
.trc p{font-size:14.5px;color:var(--txt-mute);line-height:1.9;margin-bottom:20px}
.trau{display:flex;align-items:center;gap:14px;padding-top:18px;border-top:1px solid var(--border-soft)}
.trav{
    width:48px;height:48px;border-radius:50%;
    background:var(--navy);color:var(--sky);
    font-weight:700;font-size:18px;
    display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.trnm{font-size:15px;font-weight:600;color:var(--navy)}
.trrl{color:var(--txt-faint);font-size:12.5px;margin-top:2px}
.trst{display:flex;gap:2px;margin-top:6px}
.trst i{color:#fbbf24;font-size:11px}

/* ========== التواصل ========== */
.ctgrid{display:grid;grid-template-columns:1fr 1.3fr;gap:40px;align-items:start}
.ctinfo{display:flex;flex-direction:column;gap:14px}
.cti{
    display:flex;align-items:flex-start;gap:14px;
    padding:22px;border-radius:14px;
    background:#fff;border:1px solid var(--border);transition:all .25s;
}
.cti:hover{border-color:var(--sky);transform:translateX(-4px);box-shadow:0 8px 20px rgba(10,38,71,0.06)}
.cti-i{
    width:48px;height:48px;border-radius:12px;
    background:var(--navy);color:var(--sky);font-size:16px;
    display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.cti-l{font-size:11px;color:var(--txt-faint);margin-bottom:4px;letter-spacing:1.2px;font-weight:600;text-transform:uppercase}
.cti-v{font-size:15px;font-weight:600;color:var(--navy);line-height:1.5}
.cti-v a{direction:ltr;unicode-bidi:embed;display:inline-block}
.cti-v a:hover{color:var(--sky)}

.ctform{
    padding:36px;border-radius:16px;
    background:#fff;border:1px solid var(--border);
    box-shadow:0 4px 30px rgba(10,38,71,0.04);
}
.ctform h3{font-size:24px;font-weight:700;margin-bottom:10px;color:var(--navy)}
.ctform>p{font-size:14px;color:var(--txt-mute);margin-bottom:24px}
.ftrow{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px}
.fgr{margin-bottom:14px}
.fgr label{display:block;font-size:13px;color:var(--txt-mute);margin-bottom:8px;font-weight:600}
.fgr label .opt{
    color:var(--txt-faint);
    font-size:11px;
    font-weight:400;
    margin-right:4px;
}
.fin,.fta,.fsl{
    width:100%;padding:14px 16px;
    background:var(--bg-soft);border:1px solid var(--border);
    border-radius:10px;color:var(--txt);
    font-family:inherit;font-size:14px;transition:all .2s;
}
.fin:focus,.fta:focus,.fsl:focus{
    outline:none;border-color:var(--sky);background:#fff;
    box-shadow:0 0 0 3px rgba(91,192,235,0.15);
}
.fta{resize:none;min-height:110px}
.fsl option{background:#fff;color:var(--txt)}
.fsub{
    width:100%;padding:16px;
    background:var(--navy);color:#fff;
    border-radius:10px;font-weight:700;font-size:14.5px;
    display:flex;align-items:center;justify-content:center;gap:8px;transition:all .25s;
}
.fsub:hover{background:var(--navy-light);transform:translateY(-1px);box-shadow:0 8px 20px rgba(10,38,71,0.2)}
.fsub:disabled{opacity:.7;cursor:not-allowed;transform:none}

/* رسائل الفورم */
.form-msg{
    margin-top:14px;
    padding:0 16px;
    border-radius:10px;
    font-size:13.5px;font-weight:500;
    text-align:center;
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:all .3s ease;
}
.form-msg.success,.form-msg.error{
    padding:14px 16px;
    max-height:100px;
    opacity:1;
    margin-top:14px;
}
.form-msg.success{
    background:rgba(34,197,94,0.1);
    color:#16a34a;
    border:1px solid rgba(34,197,94,0.3);
}
.form-msg.error{
    background:rgba(239,68,68,0.1);
    color:#dc2626;
    border:1px solid rgba(239,68,68,0.3);
}
.form-msg i{margin-left:6px}

/* ========== الفوتر ========== */
.ft{
    background:var(--navy);
    color:rgba(255,255,255,0.7);
    padding:70px 28px 28px;margin-top:60px;
}
.fc{max-width:1300px;margin:0 auto}
.fg{display:grid;grid-template-columns:1fr 2fr;gap:60px;margin-bottom:36px}
.fl img{height:50px;margin-bottom:20px;filter:brightness(0) invert(1)}
.fa-txt{font-size:14px;line-height:1.85;color:rgba(255,255,255,0.65);margin-bottom:20px;max-width:340px}
.fct li{margin-bottom:10px;font-size:13px}
.fct a{color:rgba(255,255,255,0.7);transition:color .25s;display:inline-flex;align-items:center;gap:10px}
.fct a:hover{color:var(--sky)}
.fct i{color:var(--sky);font-size:12px;width:18px;flex-shrink:0}
.fct .ltr-num{direction:ltr;unicode-bidi:embed}
.flt{font-size:17px;font-weight:700;margin-bottom:20px;color:#fff}
.flg{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.flg a{color:rgba(255,255,255,0.6);font-size:13px;transition:color .25s}
.flg a:hover{color:var(--sky)}
.fb{
    margin-top:36px;padding-top:24px;
    border-top:1px solid rgba(255,255,255,0.08);
    display:flex;justify-content:space-between;align-items:center;
    flex-wrap:wrap;gap:18px;
}
.fcr{font-size:13px;color:rgba(255,255,255,0.5)}
.fso{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.fso .t{font-size:13px;margin-left:10px;color:#fff;font-weight:600}
.fso a{
    width:40px;height:40px;border-radius:10px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    display:flex;align-items:center;justify-content:center;
    color:rgba(255,255,255,0.7);font-size:14px;transition:all .25s;
}
.fso a:hover{background:var(--sky);color:var(--navy);border-color:var(--sky)}

/* ========== WhatsApp ========== */
.wapf{
    position:fixed;bottom:28px;left:28px;
    width:58px;height:58px;border-radius:50%;
    background:#25d366;color:#fff;
    display:flex;align-items:center;justify-content:center;
    font-size:26px;z-index:90;
    box-shadow:0 10px 26px rgba(37,211,102,0.4);
    transition:transform .25s;
}
.wapf:hover{transform:scale(1.08)}

/* ========== Mobile ========== */
@media(max-width:992px){
    .mnav{display:none}
    .burg{display:flex}
    .hx .btn{display:none}
    .logo img{height:38px}
    .hdr{padding:14px 0}
    .hc{padding:0 18px}
    
    .hero{height:auto;min-height:580px;padding:120px 0 60px}
    .hero-c{padding:0 24px}
    .hero-pretitle{font-size:11px;letter-spacing:5px;margin-bottom:24px}
    .hero-c h1{font-size:42px;line-height:1.2;margin-bottom:22px;letter-spacing:-.8px}
    .hero-c>p{font-size:14.5px;margin-bottom:32px;line-height:1.8}
    .hero-cta{flex-direction:column;width:100%;max-width:320px;margin:0 auto;gap:10px}
    .hero-cta .btn{width:100%;padding:14px}
    
    .page-hero{padding:120px 22px 50px}
    .page-hero h1{font-size:32px;margin-bottom:12px}
    .page-hero p{font-size:14.5px}
    
    .sec{padding:60px 18px}
    .sec-head{margin-bottom:36px}
    .sec-title{font-size:28px;margin-bottom:12px}
    .sec-desc{font-size:14.5px}
    
    .bgrid{grid-template-columns:1fr;gap:32px}
    .bgrid h3{font-size:22px}
    .bgrid p{font-size:14px}
    .afeat{grid-template-columns:1fr;gap:10px}
    
    .nums{grid-template-columns:repeat(2,1fr);gap:10px;margin-top:22px}
    .num-c{padding:18px 14px}
    .num-c .n{font-size:24px}
    
    .svgrid{grid-template-columns:1fr;gap:14px}
    .svc{padding:24px}
    .svc-i{width:54px;height:54px;font-size:20px;margin-bottom:18px}
    .svc h4{font-size:16px}
    
    .pjgrid{grid-template-columns:1fr;gap:16px}
    
    .ptg{grid-template-columns:repeat(3,1fr);gap:10px;margin-top:34px}
    .ptc{height:80px;padding:14px}
    .ptc img{max-height:48px}
    .ptstats{grid-template-columns:repeat(2,1fr);gap:12px;margin-top:34px}
    .ptst{padding:22px 16px}
    .ptst .n{font-size:30px}
    
    .trgrid{grid-template-columns:1fr;gap:14px}
    .trc{padding:24px}
    
    .ctgrid{grid-template-columns:1fr;gap:24px}
    .ctform{padding:24px}
    .ftrow{grid-template-columns:1fr;gap:10px;margin-bottom:10px}
    
    .map-box{height:320px !important}
    section iframe{height:320px !important}
    section [style*="height:480px"]{height:320px !important}
    
    .ft{padding:50px 18px 24px;margin-top:40px}
    .fg{grid-template-columns:1fr;gap:32px;margin-bottom:28px}
    .fl img{height:44px}
    .flg{grid-template-columns:repeat(2,1fr)}
    .fb{flex-direction:column;text-align:center;align-items:center;gap:18px}
    .fso{flex-wrap:wrap;justify-content:center}
    
    .wapf{bottom:20px;left:20px;width:52px;height:52px;font-size:23px}
}

@media(max-width:480px){
    .logo img{height:34px}
    
    .hero{min-height:560px;padding:110px 0 50px}
    .hero-c{padding:0 20px}
    .hero-c h1{font-size:34px;line-height:1.25}
    .hero-c>p{font-size:14px;margin-bottom:28px}
    .hero-pretitle{font-size:10.5px;letter-spacing:4px;margin-bottom:20px}
    
    .page-hero{padding:110px 18px 45px}
    .page-hero h1{font-size:26px}
    .page-hero p{font-size:13.5px}
    
    .sec{padding:50px 16px}
    .sec-title{font-size:24px}
    .sec-desc{font-size:14px}
    
    .ptg{grid-template-columns:repeat(2,1fr)}
    .ptc{height:85px}
    .ptc img{max-height:54px}
    
    .map-box{height:280px !important}
    section iframe{height:280px !important}
    
    .wapf{bottom:16px;left:16px;width:50px;height:50px;font-size:22px}
}

/* ========== قائمة الموبايل ========== */
.mob{
    position:fixed;inset:0;z-index:2000;display:none;
    background:#fff;overflow-y:auto;
}
.mob.open{display:flex;flex-direction:column}
.mob-hd{
    display:flex;justify-content:space-between;align-items:center;
    padding:20px 22px;border-bottom:1px solid var(--border-soft);
}
.mob-hd img{height:38px}
.mob-x{
    font-size:24px;color:var(--navy);
    width:42px;height:42px;border-radius:9px;
    background:var(--bg);border:1px solid var(--border);
    display:flex;align-items:center;justify-content:center;
}
.mob-body{flex:1;padding:28px 20px}
.mob li{margin-bottom:8px}
.mob a{
    display:flex;align-items:center;gap:14px;
    color:var(--txt);
    padding:16px 20px;font-size:15px;font-weight:500;
    border-radius:10px;background:var(--bg);
    border:1px solid var(--border);transition:all .2s;
}
.mob a:hover,.mob a.act{background:var(--navy);color:#fff;border-color:var(--navy)}
.mob a:hover i,.mob a.act i{color:var(--sky)}
.mob a i{width:22px;color:var(--navy);font-size:14px;transition:color .2s}
.mob-ft{padding:20px;border-top:1px solid var(--border-soft);display:flex;flex-direction:column;gap:10px}
.mob-ft .btn{width:100%}
