/*
===============================================================================
FILE: /public_html/assets/css/cities.css
PROJECT: Jassas Net
VERSION: V1.0.0
FUNCTION: Cities Coverage Page Styles
AUTHOR: Jassas Net
STATUS: PRODUCTION
CREATED: 2026-06-10
UPDATED: 2026-06-10
===============================================================================
*/

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body{
    min-height:100vh;
    font-family:'Tajawal',Arial,sans-serif;
    color:#0f172a;
    background:
        radial-gradient(circle at 10% 0%, rgba(56,189,248,.16), transparent 28%),
        radial-gradient(circle at 90% 8%, rgba(37,99,235,.12), transparent 30%),
        linear-gradient(180deg,#f8fbff 0%,#eef5ff 100%);
}

.scope-bg{
    position:fixed;
    inset:0;
    z-index:-1;
    background:
        linear-gradient(rgba(37,99,235,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,.045) 1px, transparent 1px);
    background-size:42px 42px;
}

.scope-page{
    width:min(92%,980px);
    margin:auto;
    padding:34px 0 130px;
}

.scope-card{
    position:relative;
    overflow:hidden;
    border-radius:36px;
    padding:34px;
    background:rgba(255,255,255,.88);
    border:1px solid rgba(226,232,240,.95);
    box-shadow:0 24px 70px rgba(15,23,42,.08);
    backdrop-filter:blur(14px);
}

.scope-card::before{
    content:"";
    position:absolute;
    top:-120px;
    left:-120px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(37,99,235,.12);
}

.scope-card::after{
    content:"";
    position:absolute;
    right:-90px;
    bottom:-120px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(56,189,248,.14);
}

.scope-content{
    position:relative;
    z-index:1;
}

.scope-badge{
    width:max-content;
    max-width:100%;
    min-height:40px;
    padding:0 16px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:#1d4ed8;
    background:#eff6ff;
    border:1px solid #dbeafe;
    font-size:13px;
    font-weight:900;
}

.scope-badge::before{
    content:"";
    width:9px;
    height:9px;
    border-radius:50%;
    background:#22c55e;
    box-shadow:0 0 0 7px rgba(34,197,94,.12);
}

.scope-title{
    margin-top:18px;
    color:#020617;
    font-size:42px;
    line-height:1.35;
    font-weight:900;
    letter-spacing:-.8px;
}

.scope-desc{
    margin-top:12px;
    max-width:720px;
    color:#475569;
    font-size:17px;
    line-height:2;
    font-weight:800;
}

.scope-summary{
    margin-top:24px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.summary-box{
    min-height:112px;
    padding:20px;
    border-radius:26px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
}

.summary-box strong{
    display:block;
    color:#2563eb;
    font-size:34px;
    line-height:1.2;
    font-weight:900;
}

.summary-box span{
    display:block;
    margin-top:10px;
    color:#64748b;
    font-size:13px;
    line-height:1.7;
    font-weight:900;
}

.cities-section{
    margin-top:24px;
    padding:26px;
    border-radius:32px;
    background:#ffffff;
    border:1px solid #e2e8f0;
    box-shadow:0 18px 44px rgba(15,23,42,.06);
}

.section-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:18px;
}

.section-head h2{
    color:#020617;
    font-size:28px;
    font-weight:900;
}

.status-pill{
    min-height:36px;
    padding:0 14px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#dcfce7;
    color:#15803d;
    font-size:12px;
    font-weight:900;
    white-space:nowrap;
}

.status-pill::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#22c55e;
}

.city-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.city-item{
    min-height:84px;
    padding:16px;
    border-radius:22px;
    background:linear-gradient(180deg,#f8fafc,#ffffff);
    border:1px solid #e2e8f0;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    transition:.18s ease;
}

.city-item:hover{
    transform:translateY(-2px);
    border-color:#bfdbfe;
    box-shadow:0 14px 30px rgba(37,99,235,.08);
}

.city-item strong{
    color:#0f172a;
    font-size:17px;
    font-weight:900;
}

.scope-note{
    margin-top:18px;
    padding:18px 20px;
    border-radius:24px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    color:#64748b;
    font-size:14px;
    line-height:2;
    font-weight:800;
}

.scope-actions{
    margin-top:22px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.scope-actions a{
    min-height:52px;
    padding:0 20px;
    border-radius:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:14px;
    font-weight:900;
}

.scope-actions .primary{
    color:#ffffff;
    background:linear-gradient(135deg,#38bdf8,#2563eb);
    box-shadow:0 16px 32px rgba(37,99,235,.18);
}

.scope-actions .secondary{
    color:#2563eb;
    background:#eff6ff;
    border:1px solid #dbeafe;
}

body.jassas-dark{
    background:
        radial-gradient(circle at 10% 0%, rgba(56,189,248,.08), transparent 28%),
        linear-gradient(180deg,#020617 0%,#07111f 100%) !important;
}

body.jassas-dark .scope-card,
body.jassas-dark .cities-section{
    background:#0f172a;
    border-color:#1e293b;
    box-shadow:0 24px 70px rgba(0,0,0,.25);
}

body.jassas-dark .scope-title,
body.jassas-dark .section-head h2,
body.jassas-dark .city-item strong{
    color:#f8fafc;
}

body.jassas-dark .scope-desc,
body.jassas-dark .summary-box span,
body.jassas-dark .scope-note{
    color:#94a3b8;
}

body.jassas-dark .summary-box,
body.jassas-dark .city-item,
body.jassas-dark .scope-note{
    background:#020617;
    border-color:#1e293b;
}

@media(max-width:850px){
    .city-list{
        grid-template-columns:repeat(2,1fr);
    }

    .scope-summary{
        grid-template-columns:1fr;
    }

    .scope-title{
        font-size:34px;
    }
}

@media(max-width:480px){
    .scope-page{
        width:100%;
        padding:20px 14px 130px;
    }

    .scope-card,
    .cities-section{
        border-radius:28px;
        padding:22px;
    }

    .scope-title{
        font-size:30px;
    }

    .section-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .city-list{
        grid-template-columns:1fr;
    }

    .scope-actions a{
        width:100%;
    }
}