/* =====================================
   HERO
===================================== */

.contact-hero{

    position:relative;

    padding:120px 20px;
text-align:center;

    background-image:
        linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.55)),
        url("../images/contact-hero-bg.png");

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

    color:#fff;

    overflow:hidden;

}
.contact-hero .container{

    position:relative;

    z-index:2;

}

.contact-hero .hero-badge{
    display:inline-block;
    background:#b30000;
    color:#fff;
    padding:12px 25px;
    border-radius:40px;
    font-weight:bold;
    margin-bottom:25px;
}

.contact-hero h1{
    font-size:52px;
    margin-bottom:25px;
}

.contact-hero p{
    max-width:900px;
    margin:auto;
    line-height:1.8;
    font-size:20px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.hero-call,
.hero-viber{

    padding:18px 35px;
    border-radius:10px;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    transition:.3s;

}

.hero-call{

    background:#b30000;
    color:#fff;

}

.hero-call:hover{

    background:#8d0000;

}

.hero-viber{

    background:#7360F2;
    color:#fff;

}

.hero-viber:hover{

    background:#5d49db;

}

/* =====================================
   КОНТАКТНИ КАРТИ
===================================== */

.contact-cards{

    padding:90px 20px;
    background:#fff;

}

.contact-cards h2{

    text-align:center;
    color:#b30000;
    font-size:40px;
    margin-bottom:60px;

}

.contact-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;

}

.contact-card{

    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #eee;

}

.contact-card:hover{

    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.contact-icon{

    font-size:55px;
    margin-bottom:20px;

}

.contact-card h3{

    font-size:28px;
    margin-bottom:15px;
    color:#222;

}

.contact-card p{

    font-size:20px;
    font-weight:bold;
    color:#b30000;
    margin-bottom:10px;

}

.contact-card span{

    display:block;
    color:#666;
    line-height:1.6;
    margin-bottom:20px;

}

.contact-card a{

    display:inline-block;
    padding:12px 25px;
    background:#b30000;
    color:white;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;

}

.contact-card a:hover{

    background:#8d0000;

}

/* =====================================
   РАЙОН НА ОБСЛУЖВАНЕ
===================================== */

.service-area{

    padding:90px 20px;
    background:#f7f8fb;

}

.service-area h2{

    text-align:center;
    font-size:40px;
    color:#b30000;
    margin-bottom:20px;

}

.service-text{

    max-width:900px;
    margin:0 auto 50px;
    text-align:center;
    line-height:1.8;
    font-size:18px;
    color:#555;

}

.service-map{

    max-width:900px;
    margin:auto;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.15);

}

.service-map img{

    width:100%;
    display:block;

}

.service-list{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-top:40px;

}

.service-list span{

    background:white;
    border:1px solid #ddd;
    border-radius:30px;
    padding:12px 18px;
    font-weight:600;
    transition:.3s;

}

.service-list span:hover{

    background:#b30000;
    color:white;
    border-color:#b30000;

}

/* =====================================
   ФИНАЛЕН CTA
===================================== */

.contact-final{

    padding:90px 20px;
    background:#b30000;
    text-align:center;
    color:white;

}

.contact-final h2{

    font-size:42px;
    margin-bottom:20px;

}

.contact-final p{

    font-size:20px;
    margin-bottom:35px;

}

.contact-final .call-btn{

    display:inline-block;
    background:white;
    color:#b30000;
    padding:18px 40px;
    border-radius:10px;
    text-decoration:none;
    font-size:22px;
    font-weight:bold;
    transition:.3s;

}

.contact-final .call-btn:hover{

    transform:scale(1.05);

}

/* =====================================
   МОБИЛНИ УСТРОЙСТВА
===================================== */

@media(max-width:768px){

.contact-hero{

padding:70px 20px;

}

.contact-hero h1{

font-size:36px;

}

.contact-hero p{

font-size:17px;

}

.contact-cards h2,
.service-area h2,
.contact-final h2{

font-size:32px;

}

.hero-buttons{

display:flex;

flex-direction:column;

align-items:center;

gap:15px;

}

.hero-call,
.hero-viber{

width:100%;

max-width:320px;

box-sizing:border-box;

text-align:center;

}

}