/* ===================================
   1. RESET
=================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===================================
   2. FONT
=================================== */

@font-face{
    font-family:"Vazir";
    src:
        url("../font/vazir-font-v16.1.0/Vazir.woff2") format("woff2"),
        url("../font/vazir-font-v16.1.0/Vazir.woff") format("woff");
    font-weight:400;
}

@font-face{
    font-family:"Vazir";
    src:
        url("../font/vazir-font-v16.1.0/Vazir-Bold.woff2") format("woff2"),
        url("../font/vazir-font-v16.1.0/Vazir-Bold.woff") format("woff");
    font-weight:700;
}
@media (max-width: 768px) {
    .social-section {
        margin: 30px 15px;
        padding: 20px;
    }

    .social-section h2 {
        font-size: 24px;
    }

    .social-logo {
        width: 50px;
        height: 50px;
    }
}
/* ===================================
   3. VARIABLES
=================================== */

:root{

    --primary:#10105d;
    --secondary:#ffb000;

    --bg:#eef2f7;
    --white:#ffffff;

    --text:#333;
    --text-light:#666;

    --border:#e5e5e5;

    --radius:14px;

    --shadow:0 8px 25px rgba(0,0,0,.08);

    --transition:.3s;

    --container:1200px;

}

/* ===================================
   4. BASE
=================================== */

html{
    scroll-behavior:smooth;
}

body{

    direction:rtl;

    font-family:"Vazir",sans-serif;

    background:var(--bg);

    color:var(--text);

    line-height:1.9;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

.container{

    width:90%;

    max-width:var(--container);

    margin:auto;

}
.timeline{

margin-top:30px;

}

.timeline div{

padding:14px;

margin-bottom:10px;

border-radius:8px;

font-weight:bold;

}

.done{

background:#27ae60;

color:white;

}

.current{

background:#ffb000;

color:black;

}

.next{

background:#ddd;

color:#777;

}
.social-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-section h2 {
    color: #020007;
    margin-bottom: 15px;
    font-size: 28px;
}

.social-section p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: #ffb000;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #ffd166;
    transform: translateY(-5px);
}

.social-logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
}
.tracking-page{
    max-width:1100px;
    margin:50px auto;
    padding:20px;
}

.tracking-box{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.tracking-box form{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.tracking-box input{
    flex:1;
    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
}

.tracking-box button{
    background:#ffb000;
    border:none;
    padding:14px 30px;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
}

.tracking-error{
    margin-top:25px;
    background:#ffe5e5;
    color:#b30000;
    padding:15px;
    border-radius:8px;
}

.tracking-table{
    width:100%;
    border-collapse:collapse;
}

.tracking-table th,
.tracking-table td{
    padding:12px;
    border-bottom:1px solid #eee;
    text-align:right;
}

.status-badge{
    background:#28a745;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
}

.tracking-progress{
    display:flex;
    justify-content:space-between;
    margin-top:40px;
    flex-wrap:wrap;
}

.progress-item{
    text-align:center;
}

.circle{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#d8d8d8;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:bold;
}

.circle.done{
    background:#28a745;
}

.circle.current{
    background:#ffb000;
    color:#000;
}
img{
    max-width:100%;
    height:auto;
    display:block;
}

.tracking-note,
.tracking-image{
    margin-top:35px;
}

.tracking-image img{
    max-width:100%;
    border-radius:12px;
}

@media(max-width:768px){
    .tracking-box form{
        display:block;
    }

    .tracking-box input,
    .tracking-box button{
        width:100%;
        margin-bottom:15px;
    }
}
/* BLOG */

.blog-container{
    width:90%;
    max-width:1200px;
    margin:40px auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}


.blog-card{
    width:100%;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
}


.blog-link{
    display:block;
    text-decoration:none;
    color:#17145c;
}


.blog-thumbnail{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}


.blog-title{
    padding:15px;
    text-align:center;
    font-size:22px;
    line-height:1.8;
}


.blog-thumbnail:hover{
    transform:scale(1.03);
}



@media(max-width:768px){

.blog-container{
    display:block;
    width:95%;
}


.blog-card{
    width:100%;
    margin-bottom:25px;
}


.blog-thumbnail{
    height:200px;
}

}
@media(max-width:768px){

    .blog-content{
        width:92%;
        margin:25px auto;
        padding:15px;
        box-sizing:border-box;
    }

    .blog-article{
        width:100%;
        margin:0;
        padding:0;
    }

}
@media(max-width:768px){

    main.blog-content{

        width:88% !important;
        max-width:88% !important;

        margin:30px auto !important;

        padding:20px !important;

        box-sizing:border-box;

    }


    main.blog-content .blog-article{

        width:100% !important;

    }


    main.blog-content p,
    main.blog-content ul,
    main.blog-content ol{

        margin-right:0;
        margin-left:0;

    }


    main.blog-content .table-of-content{

        padding:20px;

    }

}
/* ===========================
 CONTACT PLATFORM BOX
=========================== */


.contact-platform-box{

    width:95%;
    max-width:1200px;

    margin:40px auto;

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 5px 20px rgba(0,0,0,.12);

}



.contact-platform-box h2{

    text-align:center;

    color:#222;

    margin-bottom:30px;

}



.contact-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}



.contact-item{

    display:flex;

    align-items:center;

    gap:15px;

}



.icon{

    width:55px;

    height:55px;

    flex:none;

    background:#0077c8;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

}



.contact-item strong{

    display:block;

}



.contact-item a{

    color:#02003d;

    text-decoration:none;

    font-weight:bold;

}



/* عنوان شبکه ها */

.platform-title{

    text-align:center;

    margin-top:40px;

}



/* لینک های پلتفرم */

.platform-links{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    margin-top:25px;

}



/* فقط خود آیکون */

.social-btn{

    width:55px;

    height:55px;

    padding:5px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    border-radius:50%;

    box-shadow:0 3px 10px rgba(0,0,0,.15);

}



.social-btn img{

    width:40px !important;

    height:40px !important;

    max-width:none !important;

    object-fit:contain;

}



.social-btn:hover{

    transform:translateY(-3px);

}



@media(max-width:700px){


.contact-grid{

    grid-template-columns:1fr;

}



.contact-platform-box{

    padding:20px;

}


}
.hero-image{

    width:100%;
    max-width:1200px;
    height:auto;

    border-radius:15px;

    display:block;

}
.driver-area {

max-width:1100px;
margin:40px auto;
padding:25px;
background:#f8f8f8;
border-radius:12px;
line-height:2;
text-align:right;

}


.driver-area h2 {

color:#01013d;
font-size:24px;
margin-bottom:20px;

}


.area-list {

display:flex;
flex-wrap:wrap;
gap:10px;
margin:20px 0;

}


.area-list span {

background:#ffb000;
color:#020007;
padding:6px 15px;
border-radius:20px;
font-size:15px;
font-weight:bold;

}


@media(max-width:600px){

.driver-area{

margin:20px 10px;
padding:18px;

}


.driver-area h2{

font-size:20px;

}


.area-list span{

font-size:13px;

}

}
.driver-seo-content{

max-width:1100px;
margin:40px auto;
padding:25px;
line-height:2;
background:#fff;

}


.driver-seo-content h2{

color:#01013d;
font-size:25px;
margin-bottom:20px;

}


.driver-seo-content h3{

color:#ffb000;
font-size:20px;
margin-top:25px;

}


.driver-seo-content ul{

padding-right:25px;

}


.driver-seo-content li{

margin-bottom:10px;

}


.driver-seo-content a{

color:#01013d;
font-weight:bold;

}


@media(max-width:600px){

.driver-seo-content{

padding:15px;
margin:20px 10px;

}

.driver-seo-content h2{

font-size:21px;

}

}
.breadcrumb{

max-width:1100px;
margin:20px auto;
padding:10px 15px;
font-size:14px;
background:#f5f5f5;
border-radius:8px;
direction:rtl;

}


.breadcrumb a{

color:#01013d;
text-decoration:none;
font-weight:bold;

}


.breadcrumb span{

margin:0 8px;
color:#666;

}


@media(max-width:600px){

.breadcrumb{

margin:15px 10px;
font-size:13px;

}

}
.driver-floating-buttons{

position:fixed;
bottom:20px;
right:20px;
display:flex;
flex-direction:column;
gap:10px;
z-index:999;

}


.driver-floating-buttons a{

display:flex;
align-items:center;
justify-content:center;
width:170px;
padding:13px;
border-radius:30px;
font-size:15px;
font-weight:bold;
text-decoration:none;
box-shadow:0 4px 12px rgba(0,0,0,.2);

}


.driver-register-btn{

background:#ffb000;
color:#020007;

}


.driver-call-btn{

background:#01013d;
color:#fff;

}



@media(max-width:600px){

.driver-floating-buttons{

right:10px;
bottom:15px;

}


.driver-floating-buttons a{

width:145px;
font-size:13px;
padding:11px;

}

}
.driver-trust{

max-width:1100px;
margin:40px auto;
padding:25px;
background:#fafafa;
border-radius:15px;
line-height:2;

}


.driver-trust h2{

text-align:center;
color:#01013d;
font-size:25px;
margin-bottom:20px;

}


.trust-items{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:30px;

}


.trust-box{

background:white;
padding:20px;
border-radius:12px;
box-shadow:0 3px 10px rgba(0,0,0,.08);

}


.trust-box h3{

color:#01013d;
font-size:18px;

}



.driver-call-action{

margin-top:35px;
text-align:center;
background:#01013d;
color:white;
padding:25px;
border-radius:12px;

}


.driver-call-action h3{

color:#ffb000;
font-size:22px;

}


.driver-call-action a{

display:inline-block;
margin-top:15px;
background:#ffb000;
color:#020007;
padding:12px 35px;
border-radius:30px;
font-weight:bold;
text-decoration:none;

}



@media(max-width:700px){

.trust-items{

grid-template-columns:1fr;

}


.driver-trust{

margin:20px 10px;
padding:15px;

}


.driver-trust h2{

font-size:21px;

}

}
.driver-map-area{

max-width:1100px;
margin:40px auto;
padding:25px;
background:#fff;
border-radius:15px;
line-height:2;

}


.driver-map-area h2{

text-align:center;
color:#01013d;
font-size:25px;

}


.map-box{

position:relative;
height:350px;
margin:35px auto;
max-width:700px;
background:#f4f4f4;
border-radius:20px;
border:2px solid #ddd;

}


.map-center{

position:absolute;
top:130px;
left:50%;
transform:translateX(-50%);
background:#01013d;
color:#ffb000;
padding:20px;
border-radius:50%;
text-align:center;
font-weight:bold;

}



.city{

position:absolute;
background:#ffb000;
color:#020007;
padding:8px 15px;
border-radius:20px;
font-size:14px;
font-weight:bold;

}



.city1{
top:70px;
right:160px;
}


.city2{
top:50px;
left:170px;
}


.city3{
top:150px;
left:80px;
}


.city4{
bottom:80px;
left:150px;
}


.city5{
bottom:60px;
right:200px;
}


.city6{
bottom:120px;
right:80px;
}


.city7{
top:220px;
left:250px;
}


.city8{
top:100px;
right:60px;
}



.driver-map-area h3{

color:#01013d;
margin-top:25px;

}



@media(max-width:700px){

.map-box{

height:420px;

}


.city{

font-size:12px;
padding:6px 10px;

}


.city1{
right:90px;
}


.city2{
left:60px;
}


.city3{
left:30px;
}


.city5{
right:80px;
}


}
.driver-statistics{

max-width:1100px;
margin:40px auto;
padding:25px;
background:#f8f8f8;
border-radius:15px;
line-height:2;

}


.driver-statistics h2{

text-align:center;
color:#01013d;
font-size:25px;
margin-bottom:20px;

}


.stats-container{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:30px;

}


.stat-box{

background:white;
padding:20px;
border-radius:12px;
text-align:center;
box-shadow:0 3px 12px rgba(0,0,0,.08);

}


.stat-icon{

font-size:35px;
margin-bottom:10px;

}


.stat-box h3{

color:#01013d;
font-size:18px;

}


.driver-confidence{

margin-top:35px;
background:#01013d;
color:white;
padding:25px;
border-radius:15px;
text-align:center;

}


.driver-confidence h3{

color:#ffb000;
font-size:23px;

}


.driver-confidence a{

display:inline-block;
margin-top:15px;
background:#ffb000;
color:#020007;
padding:12px 35px;
border-radius:30px;
font-weight:bold;
text-decoration:none;

}



@media(max-width:900px){

.stats-container{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:600px){

.stats-container{

grid-template-columns:1fr;

}


.driver-statistics{

margin:20px 10px;
padding:15px;

}


.driver-statistics h2{

font-size:21px;

}

}
.reviews-header{

background:#01013d;
color:white;
text-align:center;
padding:50px 20px;

}


.reviews-header h1{

color:#ffb000;
font-size:32px;

}



.rating-summary{

margin:30px auto;
background:white;
color:#01013d;
max-width:300px;
padding:20px;
border-radius:15px;

}



.big-star{

color:#ffb000;
font-size:35px;

}




.reviews-container{

padding:40px 20px;

display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;

background:#f5f5f5;

}



.review-box{

background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 5px 20px #ddd;
text-align:center;
padding-bottom:20px;

}



.review-box img{

width:100%;
height:230px;
object-fit:cover;

}



.service-title{

background:#01013d;
color:#ffb000;
padding:12px;
font-weight:bold;

}



.stars{

color:#ffb000;
font-size:28px;
margin:15px;

}



.customer-name{

font-weight:bold;
color:#01013d;

}



.send-review{

text-align:center;
padding:40px;

}



.review-btn{

display:inline-block;
background:#ffb000;
color:#01013d;
padding:15px 35px;
border-radius:30px;
font-weight:bold;

}



@media(max-width:900px){

.reviews-container{

grid-template-columns:1fr;

}


.reviews-header h1{

font-size:24px;

}

}
.submit-review-page{

background:#f5f5f5;
padding:50px 20px;
text-align:center;

}


.submit-review-page h1{

color:#01013d;

}



.review-form{

background:white;
max-width:600px;
margin:auto;
padding:30px;
border-radius:20px;
box-shadow:0 5px 20px #ddd;
text-align:right;

}



.review-form input,
.review-form select,
.review-form textarea{


width:100%;
padding:12px;
margin:10px 0 20px;
border:1px solid #ddd;
border-radius:10px;

}




.star-rating{

direction:rtl;
text-align:center;
margin:20px;

}



.star-rating input{

display:none;

}



.star-rating label{

font-size:40px;
color:#ccc;
cursor:pointer;

}



.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label{

color:#ffb000;

}




.review-form button{

width:100%;
background:#ffb000;
color:#01013d;
border:none;
padding:15px;
font-size:18px;
font-weight:bold;
border-radius:30px;
cursor:pointer;

}



.success-message{

background:#dff7df;
padding:20px;
border-radius:10px;
margin:20px auto;
max-width:600px;

}
.projects-header{

background:#01013d;
color:white;
text-align:center;
padding:50px 20px;

}


.projects-header h1{

color:#ffb000;
font-size:32px;

}
/* ================================
   Project Filter
================================ */

.project-filter{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;

    margin:30px auto;
    padding:15px;

}



.project-filter a{

    display:inline-block;

    background:#02013d;

    color:#fff;

    text-decoration:none;

    padding:10px 25px;

    border-radius:30px;

    font-weight:bold;

    font-size:15px;

    transition:.3s;

    border:2px solid transparent;

}



.project-filter a:hover{

    background:#ffb000;

    color:#02013d;

    border-color:#02013d;

    transform:translateY(-3px);

}



/* لینک فعال (دسته انتخاب شده) */

.project-filter a.active{

    background:#ffb000;

    color:#02013d;

}



/* ریسپانسیو موبایل */

@media(max-width:600px){


    .project-filter{

        gap:10px;

        padding:10px;

    }



    .project-filter a{

        padding:8px 15px;

        font-size:13px;

    }


}




.projects-grid{

padding:40px 20px;

display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;

background:#f5f5f5;

}



.project-card{

background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 5px 20px #ddd;

}



.project-card img{

width:100%;
height:250px;
object-fit:cover;

}



.project-content{

padding:20px;
text-align:center;

}



.project-content h2{

color:#01013d;

}



.project-content span{

background:#ffb000;
padding:7px 15px;
border-radius:20px;
font-size:14px;

}



.project-content a{

display:block;
margin-top:20px;
background:#01013d;
color:white;
padding:12px;
border-radius:25px;

}



.project-link{

text-align:center;
padding:40px;

}



.project-link a{

background:#ffb000;
color:#01013d;
padding:15px 30px;
border-radius:30px;
font-weight:bold;

}




@media(max-width:900px){

.projects-grid{

grid-template-columns:1fr;

}

}
.project-gallery{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin-top:30px;

}


.project-gallery img{

width:100%;
height:220px;
object-fit:cover;
border-radius:15px;

}



@media(max-width:700px){

.project-gallery{

grid-template-columns:1fr;

}

}