@import url('../fonts/Vazirmatn/Vazirmatn-font-face.css');

:root{

    --primary:#29303b;
    --accent:#e8252a;

    --bg:#12161c;
    --surface:#1a212b;

    --text:#ffffff;
    --muted:#b7c0cc;

    --border:#2a3340;

    --radius:18px;

    --transition:.3s ease;

}

html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Vazirmatn',sans-serif;

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

}

a{
    text-decoration:none;
    color: var(--muted)!important;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.container{
    max-width:1320px;
}

h1,h2,h3,h4,h5,h6{

    font-weight:700;
    line-height:1.3;
    overflow-wrap:break-word;
    word-wrap:break-word;

}

.section-title{

    font-size:clamp(2rem,4vw,3rem);

    font-weight:800;

}

.section-subtitle{

    color:var(--muted);

    max-width:700px;

}

.btn-primary-custom{

    background:var(--accent);

    color:#fff;

    border:none;

    border-radius:12px;

    padding:.9rem 1.5rem;

    transition:var(--transition);

    display:inline-block;

}

.btn-primary-custom:hover{

    transform:translateY(-3px);

    color:#fff;

}

.btn-outline-custom{

    border:1px solid var(--border);

    color:#fff;

    border-radius:12px;

    padding:.9rem 1.5rem;

    transition:var(--transition);

    display:inline-block;

}

.btn-outline-custom:hover{

    background:var(--surface);

}

section{

    padding:100px 0;

}

.card-custom{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:2rem;

    height:100%;

    transition:var(--transition);

}
.card-custom:hover{

    transform:translateY(-8px);

    border-color:var(--accent);

}

.site-header{

    position:sticky;

    top:0;

    z-index:1000;

    -webkit-backdrop-filter:blur(14px);
    backdrop-filter:blur(14px);

    background:rgba(18,22,28,.85);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.navbar{


    min-height:90px;


}

.nav-link{


    color:#fff;

    font-weight:500;

    padding:.8rem 1rem !important;

    transition:var(--transition);


}

.nav-link:hover{


    color:var(--accent);


}

.hero-section{

    min-height:calc(100vh - 90px);

    display:flex;

    align-items:center;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:.5rem;

    padding:.7rem 1rem;

    border:1px solid var(--border);

    background:rgba(255,255,255,.03);

    border-radius:999px;

    margin-bottom:1.5rem;

}

.hero-title{

    font-size:clamp(2rem,5vw,4.5rem);

    font-weight:900;

    line-height:1.2;

    margin-bottom:1.5rem;

}

.hero-description{

    color:var(--muted);

    font-size:clamp(1rem,2vw,1.15rem);

    line-height:2;

    margin-bottom:2rem;

}

.hero-actions{

    display:flex;

    gap:1rem;

    flex-wrap:wrap;

    margin-bottom:3rem;

}

.hero-stats{

    display:flex;

    gap:2rem;

    flex-wrap:wrap;

}

.hero-stat{

    display:flex;

    flex-direction:column;

}

.hero-stat strong{

    font-size:2rem;

    color:var(--accent);

}

.hero-stat span{

    color:var(--muted);

}

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    border-radius:24px;

}

.navbar-brand{
    display:flex;
    align-items:center;
}

.navbar-brand img{

    height:48px;

    width:auto;

    max-width:180px;

    object-fit:contain;


}

.services-section{
    background:var(--surface);
}

.service-card{
    text-align:center;
}

.service-icon{

    width:70px;
    height:70px;

    margin:0 auto 1.5rem;

    border-radius:18px;

    background:rgba(232,37,42,.1);

    display:flex;

    align-items:center;

    justify-content:center;

}

.service-icon i{

    font-size:1.7rem;

    color:var(--accent);

}

.service-card h4{

    font-size:1.1rem;

    margin:0;

}

.why-us-section{

    background:var(--bg);

}

.why-card{

    text-align:center;

}

.why-icon{

    width:80px;
    height:80px;

    margin:0 auto 1.5rem;

    border-radius:20px;

    background:rgba(232,37,42,.08);

    display:flex;

    align-items:center;

    justify-content:center;

}

.why-icon i{

    font-size:2rem;

    color:var(--accent);

}

.why-card h4{

    margin-bottom:1rem;

    font-size:1.2rem;

}

.why-card p{

    color:var(--muted);

    line-height:1.9;

    margin:0;

}

.header-actions{


    display:flex;

    align-items:center;

    gap:1rem;


}

.header-phone{


    color:#fff;

    display:flex;

    align-items:center;

    gap:.5rem;

    font-size:.95rem;


}

.header-phone:hover{


    color:var(--accent);


}

.navbar-toggler{


    border:none;

    color:#fff;


}

.navbar-toggler:focus{


    box-shadow:none;


}

.portfolio-section{

    background:var(--surface);

}

.portfolio-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    border:1px solid var(--border);

}

.portfolio-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.4s ease;

}

.portfolio-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.9),
        rgba(0,0,0,.2)
    );

    display:flex;

    flex-direction:column;

    justify-content:end;

    align-items:center;

    gap:1rem;

    opacity:0;

    transition:.3s ease;

    padding:2rem;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.portfolio-card:hover .portfolio-overlay{

    opacity:1;

}

.portfolio-overlay h4{

    color:#fff;

    margin:0;

}

.cta-section{

    padding:120px 0;

}

.cta-box{

    background:linear-gradient(
        135deg,
        var(--accent),
        #ff5a3d
    );

    border-radius:32px;

    padding:4rem;

    overflow:hidden;

    position:relative;

}

.cta-box h2{

    font-size:2.5rem;

    font-weight:800;

    margin-bottom:1rem;

}

.cta-box p{

    font-size:1.1rem;

    line-height:2;

    max-width:700px;

    margin:0;

}

.cta-actions{

    display:flex;

    flex-direction:column;

    gap:1rem;

}

.cta-actions .btn{

    border-radius:14px;

    padding:1rem;
}

.site-footer{

    background:#0f1318;

    border-top:1px solid var(--border);

    padding-top:80px;

}

.footer-logo{

    height:55px;

    width:auto;

    margin-bottom:1.5rem;

}

.footer-description{

    color:var(--muted);

    line-height:2;

}

.site-footer h5{

    margin-bottom:1.5rem;

    font-weight:700;

}

.footer-links li{

    margin-bottom:.8rem;

}

.footer-links a{

    color:var(--muted);

}

.footer-links a:hover{

    color:var(--accent);

}

.footer-contact li{

    margin-bottom:1rem;

    color:var(--muted);

}

.footer-contact i{

    margin-left:.5rem;

    color:var(--accent);

}

.footer-socials{

    display:flex;

    gap:1rem;

    margin-top:1rem;

}

.footer-socials a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--surface);

    color:#fff;

}

.footer-socials a:hover{

    background:var(--accent);

}

.footer-bottom{

    text-align:center;

    padding:1.5rem 0;

}

.footer-bottom p{

    color:var(--muted);

    margin:0;

}

.trust-bar{

    padding:40px 0;

    background:var(--surface);

}

.trust-item{

    display:flex;

    flex-direction:column;

    gap:.5rem;

}

.trust-item strong{

    color:var(--accent);

    font-size:1.5rem;

}

.trust-item span{

    color:var(--muted);

}

.floating-actions{

    position:fixed;

    left:25px;

    bottom:25px;

    display:flex;

    flex-direction:column;

    gap:12px;

    z-index:999;

}

.floating-btn{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:1.3rem;

    transition:.3s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

}

.whatsapp-btn{

    background:#25D366;

}

.phone-btn{

    background:var(--accent);

}

.floating-btn:hover{

    transform:translateY(-4px);

    color:#fff;

}

.nav-link.active{

    color:var(--accent) !important;

}

.stats-section{

    padding:80px 0;

}

.stat-box{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:20px;

    padding:2rem;

}

.stat-box h3{

    color:var(--accent);

    font-size:2.2rem;

    font-weight:800;

}

.stat-box p{

    color:var(--muted);

    margin:0;

}

.process-section{

    background:var(--surface);

}

.step-number{

    width:60px;

    height:60px;

    margin:0 auto 1rem;

    border-radius:50%;

    background:var(--accent);

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}

#scroll-progress{

    position:fixed;

    top:90px;

    right:0;

    height:3px;

    width:0;

    z-index:999;

    background:var(--accent);

}

.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}

.reveal.active{

    opacity:1;

    transform:none;

}

.breadcrumb-section{
    padding:20px 0;
    background:var(--surface);
}

.breadcrumb-section .breadcrumb{
    display:flex;
    gap:8px;
    align-items:center;
    list-style:none;
    margin:0;
    padding:0;
    flex-wrap:wrap;
}

.breadcrumb-section .breadcrumb-item a{
    color:var(--muted);
    text-decoration:none;
    transition:var(--transition);
}

.breadcrumb-section .breadcrumb-item a:hover{
    color:var(--accent);
}

.breadcrumb-section .breadcrumb-item.active{
    color:var(--muted)!important;
}

.breadcrumb-section .breadcrumb-item+.breadcrumb-item::before{
    content:'/';
    color:var(--muted);
    margin-left:8px;
}

.service-card{
    text-decoration:none;
}

.service-card:hover{
    text-decoration:none;
}

.service-card p.text-secondary{
    color:var(--muted);
}

.form-control,
.form-select{
    background:var(--bg);
    border:1px solid var(--border);
    color:var(--text);
    border-radius:12px;
    padding:.75rem 1rem;
}

.form-control:focus,
.form-select:focus{
    background:var(--bg);
    border-color:var(--accent);
    color:var(--text);
    box-shadow:none;
}

.form-select option{
    background:var(--bg);
    color:var(--text);
}

@media(max-width:991px){

    .navbar-collapse{

        margin-top:1rem;

        padding:1rem;

        background:var(--surface);

        border-radius:18px;

    }

    .header-actions{

        margin-top:1rem;

        flex-direction:column;

        align-items:stretch;

    }

    .header-phone{

        justify-content:center;

    }

    .cta-box{

        padding:2rem;

        text-align:center;

    }

    .cta-actions{

        margin-top:2rem;

    }

    .cta-section{
        padding:80px 0;
    }

    .hero-section{
        min-height:auto;
        padding:60px 0;
    }

    section{
        padding:60px 0;
    }

}

@media(max-width:768px){

    .hero-title{
        font-size:clamp(1.8rem,6vw,3rem);
    }

    .hero-stats{
        gap:1.5rem;
    }

    .hero-stat strong{
        font-size:1.5rem;
    }

    .cta-box h2{
        font-size:1.8rem;
    }

    .cta-box p{
        font-size:1rem;
        line-height:1.8;
    }

    .stat-box h3{
        font-size:1.8rem;
    }

    .section-title{
        font-size:clamp(1.6rem,5vw,2.5rem);
    }

    .portfolio-card img{
        height:250px;
    }

    .site-footer{
        padding-top:50px;
    }

    .footer-logo{
        height:45px;
    }

    .footer-bottom{
        padding:1rem 0;
    }

    .floating-actions{
        left:15px;
        bottom:15px;
    }

    .floating-btn{
        width:50px;
        height:50px;
        font-size:1.1rem;
    }

}

@media(max-width:576px){

    section{
        padding:50px 0;
    }

    .hero-title{
        font-size:clamp(1.5rem,7vw,2.5rem);
    }

    .hero-badge{
        font-size:.85rem;
        padding:.5rem .8rem;
    }

    .card-custom{
        padding:1.5rem;
    }

    .cta-box{
        padding:1.5rem;
        border-radius:24px;
    }

    .cta-box h2{
        font-size:1.5rem;
    }

    .cta-section{
        padding:60px 0;
    }

    .portfolio-card img{
        height:200px;
    }

    .stat-box{
        padding:1.25rem;
    }

    .stat-box h3{
        font-size:1.5rem;
    }

    .step-number{
        width:50px;
        height:50px;
        font-size:.9rem;
    }

    .why-icon{
        width:60px;
        height:60px;
    }

    .why-icon i{
        font-size:1.5rem;
    }

    .service-icon{
        width:56px;
        height:56px;
    }

    .service-icon i{
        font-size:1.3rem;
    }

    .trust-item strong{
        font-size:1.2rem;
    }

    .floating-actions{
        left:12px;
        bottom:12px;
        gap:10px;
    }

    .floating-btn{
        width:46px;
        height:46px;
        font-size:1rem;
    }

    .site-footer .row{
        gap:2rem;
    }

    .site-footer .col-lg-2,
    .site-footer .col-lg-3,
    .site-footer .col-lg-4{
        text-align:center;
    }

    .footer-socials{
        justify-content:center;
    }

}
