/* ===================================
   15. ABOUT PAGE
=================================== */

.about-page{

    width:90%;
    max-width:1200px;

    margin:70px auto;

}

/* ---------- عنوان ---------- */

.about-title{

    text-align:center;

    margin-bottom:60px;

}

.about-title h1{

    color:var(--primary);

    font-size:46px;

    margin-bottom:20px;

}

.about-title p{

    max-width:850px;

    margin:auto;

    font-size:20px;

    color:#666;

    line-height:2.2;

}

/* ---------- کارت ها ---------- */

.about-card{

    background:#fff;

    border-radius:20px;

    padding:40px;

    margin-bottom:35px;

    box-shadow:var(--shadow);

}

.about-card h2{

    color:var(--primary);

    margin-bottom:20px;

    font-size:32px;

}

.about-card p{

    color:#555;

    line-height:2.3;

}

/* ---------- خدمات ---------- */

.service-list{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    margin-top:25px;

}

.service-item{

    background:#f8f9fb;

    border-radius:15px;

    padding:30px;

    text-align:center;

    transition:.3s;

}

.service-item:hover{

    background:#fff;

    transform:translateY(-8px);

    box-shadow:0 12px 25px rgba(0,0,0,.12);

}

.service-item h3{

    color:var(--primary);

    margin-bottom:12px;

}

.service-item p{

    color:#666;

}

/* ---------- مزایا ---------- */

.features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:25px;

    margin-top:35px;

}

.feature{

    background:#fff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    box-shadow:0 8px 18px rgba(0,0,0,.08);

    transition:.3s;

}

.feature:hover{

    transform:translateY(-6px);

}

.feature span{

    font-size:48px;

    display:block;

    margin-bottom:18px;

}

.feature h3{

    color:var(--primary);

    margin-bottom:12px;

}

.feature p{

    color:#666;

}

/* ---------- شهرها ---------- */

.area-box{

    background:#fff;

    border-radius:18px;

    padding:35px;

    margin-top:35px;

    box-shadow:var(--shadow);

}

.area-box h2{

    color:var(--primary);

    margin-bottom:25px;

}

.area-box ul{

    list-style:none;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:18px;

}

.area-box li{

    background:#eef2f7;

    padding:18px;

    border-radius:12px;

    text-align:center;

    font-weight:bold;

}

/* ---------- CTA ---------- */

.cta-box{

    margin-top:60px;

    background:linear-gradient(135deg,#ffb000,#ffc933);

    border-radius:20px;

    padding:50px;

    text-align:center;

}

.cta-box h2{

    color:#111;

    font-size:36px;

    margin-bottom:18px;

}

.cta-box p{

    color:#222;

    font-size:20px;

    line-height:2;

    margin-bottom:30px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons a{

    display:inline-block;

    background:var(--primary);

    color:#fff;

    text-decoration:none;

    padding:15px 35px;

    border-radius:12px;

    transition:.3s;

    font-weight:bold;

}

.cta-buttons a:hover{

    background:#000;

    transform:translateY(-4px);

}

/* ---------- FAQ ---------- */

.about-faq{

    margin-top:60px;

}
