*{
box-sizing:border-box;
margin:0;
padding:0;
font-family:Arial, Helvetica, sans-serif;
}


body{
color:white;
padding-top:0px;
}



/* ================= HEADER ================= */


header {
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    background: rgba(5, 12, 18, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


.logo {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo span {
    color: #00bcd4;
}



nav{

position:absolute;

left:50%;

transform:translateX(-50%);

display:flex;

gap:35px;

align-items:center;

}



nav a{

color:white;

text-decoration:none;

}




/* ================= DROPDOWN ================= */


nav{
position:absolute;
left:50%;
transform:translateX(-50%);
display:flex;
align-items:center;
gap:35px;
}





.dropdown-content{

display:none;

position:absolute;

top:35px;

left:50%;

transform:translateX(-50%);

background:#101923;

width:180px;

border-radius:15px;

padding:10px;

}


.dropdown:hover .dropdown-content{

display:block;

}


.dropdown-content a{

display:block;

padding:12px;

color:white;

}


.dropdown-content a:hover{

background:#00bcd4;

border-radius:10px;

}





/* ================= HERO ================= */


.hero{

height:50vh;

min-height:660px;

position:relative;

background:
linear-gradient(
90deg,
rgba(0,0,0,.45),
rgba(0,0,0,.15)
),

url("img/hero.jpg");


background-size:cover;

background-position:center 85%;

display:flex;

align-items:center;

padding-left:8%;

}



.hero-content{

max-width:650px;

}



.small-title{

color:#00cfff;

font-size:20px;

letter-spacing:2px;

margin-bottom:20px;

}



.hero h1{

font-size:58px;

line-height:1.1;

margin-bottom:20px;

}



.hero p{

font-size:20px;

line-height:1.5;

}




.buttons{

margin-top:30px;

}



.btn{

display:inline-block;

padding:15px 30px;

background:#00bcd4;

color:white;

border-radius:30px;

text-decoration:none;

margin-right:15px;

}



.second{

background:white;

color:#111;

}





/* ================= FEATURES ================= */




.feature-card {

background:transparent;

padding:0;

text-align:center;

border:none;

}



.feature-card:last-child{

border-right:none;

}



.feature-icon{

font-size:30px;

margin-bottom:8px;

}



.feature-card h3{

color:#00d9ff;

font-size:16px;

margin-bottom:5px;

}



.feature-card p{

font-size:13px;

color:white;

margin:0;

opacity:.9;

}




/* ================= SECTIONS ================= */


section{

padding:70px 8%;

}

.features{
padding:25px 35px;
}

h2{

font-size:38px;

margin-bottom:35px;

}




/* ================= ROUTES ================= */


.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}



.card{

background:#161f29;

padding:30px;

border-radius:20px;

}



.route-card{

transition:.3s;

}



.route-card:hover{

transform:translateY(-8px);

}



.route-card a{

color:#00cfff;

text-decoration:none;

}




/* ================= CARS ================= */


.car-list{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}



.car{

background:#161f29;

padding:25px;

border-radius:20px;

}



.car img{

width:100%;

height:220px;

object-fit:cover;

border-radius:15px;

margin-bottom:20px;

}



.car h3{

font-size:24px;

margin-bottom:10px;

}



.cars-text{

color:#cbd5df;

font-size:18px;

margin-bottom:30px;

}





/* ================= FOOTER ================= */


footer{

background:#05080b;

text-align:center;

padding:40px;

}





/* ================= MOBILE ================= */


@media(max-width:900px){


nav{

display:none;

}


.features{

grid-template-columns:1fr 1fr;

}


}



@media(max-width:600px){


.features{

grid-template-columns:1fr;

}


.hero h1{

font-size:40px;

}


}

.routes{

background:#071017;

}


.cards{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}



.route-card{

height:260px;

position:relative;

overflow:hidden;

border-radius:18px;

background:#111;

}



.route-card img{

width:100%;

height:100%;

object-fit:cover;

}



.route-info{

position:absolute;

bottom:0;

left:0;

width:100%;


padding:25px;


background:
linear-gradient(
transparent,
rgba(0,0,0,.85)
);

}



.route-info h3{

font-size:25px;

margin-bottom:10px;

}



.route-info p{

color:#ddd;

margin-bottom:15px;

}



.route-info a{

color:#00d9ff;

text-decoration:none;

font-weight:bold;

}




@media(max-width:900px){

.cards{

grid-template-columns:1fr;

}

}
.buttons{
display:flex;
gap:18px;
margin-top:30px;
}



.btn-order{

display:flex;
align-items:center;
gap:10px;

padding:16px 35px;

background:#00c8e8;

border-radius:8px;

color:white;

text-decoration:none;

font-size:16px;

transition:.3s;

box-shadow:0 5px 25px rgba(0,200,232,.3);

}



.btn-order:hover{

background:#00e5ff;

transform:translateY(-3px);

}



.btn-wa{


display:flex;
align-items:center;
gap:10px;

padding:16px 35px;

border-radius:8px;

border:1px solid rgba(255,255,255,.5);

color:white;

text-decoration:none;

background:rgba(0,0,0,.25);

backdrop-filter:blur(8px);

}



.btn-wa:hover{

background:rgba(255,255,255,.15);

}
/* ===== НОВЫЙ СТИЛЬ БЛОКОВ ===== */


.routes,
.cars{

background:#f5f7f9;

color:#111;

padding:70px 8%;

}



.routes h2,
.cars h2{

text-align:center;

color:#111;

font-size:32px;

margin-bottom:35px;

}



/* ===== КАРТОЧКИ МАРШРУТОВ ===== */


.routes .cards{

grid-template-columns:repeat(4,1fr);

gap:20px;

max-width:1300px;

margin:auto;

}



.route-card{

height:150px;

background:white;

border-radius:14px;

overflow:hidden;

position:relative;

padding:0;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}



.route-card img{

height:100%;

width:100%;

object-fit:cover;

}



.route-info{

position:absolute;

bottom:0;

left:0;

width:100%;

padding:18px;


background:
linear-gradient(
transparent,
rgba(0,0,0,.75)
);

}



.route-info h3{

font-size:18px;

color:white;

}



.route-info p{

font-size:13px;

color:#eee;

}



.route-info a{

display:none;

}





/* ===== АВТОПАРК ===== */


.car-list{

grid-template-columns:repeat(4,1fr);

gap:20px;

max-width:1300px;

margin:auto;

}


.car{

background:white;

border-radius:14px;

padding:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

color:#111;

}



.car img{

height:150px;

object-fit:contain;

background:#f1f1f1;

border-radius:10px;

}



.car h3{

font-size:18px;

color:#111;

}



.car p{

font-size:14px;

color:#666;

}





@media(max-width:1000px){

.routes .cards,
.car-list{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:600px){

.routes .cards,
.car-list{

grid-template-columns:1fr;

}

}
/* ================= НОВЫЕ КАРТОЧКИ КАК В МАКЕТЕ ================= */


.routes,
.cars {

    background:#f5f6f8;
    color:#111;
    padding:70px 8%;

}



.routes h2,
.cars h2 {

    text-align:center;
    color:#111;
    font-size:32px;
    margin-bottom:35px;

}




/* ===== НАПРАВЛЕНИЯ ===== */


.routes .cards {

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;

}



.route-card {

    height:150px;

    padding:0;

    overflow:hidden;

    position:relative;

    border-radius:12px;

    background:#111;

}



.route-card img {

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

}



.route-card::after {

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    transparent,
    rgba(0,0,0,.75)
    );

}



.route-info {

    position:absolute;

    bottom:0;
    left:0;

    z-index:2;

    padding:18px;

    color:white;

}



.route-info h3 {

    font-size:20px;
    margin-bottom:6px;

}



.route-info p {

    font-size:14px;
    color:#ddd;

}



.route-info a {

    display:none;

}





/* ===== АВТОПАРК ===== */


.cars {

    background:white;

}



.car-list {

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}



.car {

    background:white;

    border-radius:10px;

    padding:15px;

    box-shadow:
    0 5px 20px rgba(0,0,0,.08);

}



.car img {

    width:100%;

    height:150px;

    object-fit:contain;

    background:#f0f0f0;

    border-radius:10px;

}



.car h3 {

    color:#111;

    font-size:20px;

    margin-top:15px;

}



.car p {

    color:#555;

    font-size:14px;

}




/* адаптив */

@media(max-width:1000px){


.routes .cards,
.car-list {

grid-template-columns:repeat(2,1fr);

}


}



@media(max-width:600px){


.routes .cards,
.car-list {

grid-template-columns:1fr;

}


}
/* ===== волна под заголовками ===== */


.routes h2,
.cars h2 {

    position:relative;
    display:inline-block;

    left:50%;
    transform:translateX(-50%);

}


.routes h2::after,
.cars h2::after {


    content:"";

    display:block;

    width:45px;
    height:10px;

    margin:8px auto 0;


    background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='15' viewBox='0 0 60 15'%3E%3Cpath d='M0 8 C10 0 20 15 30 8 C40 0 50 15 60 8' fill='none' stroke='%2300bcd4' stroke-width='3'/%3E%3C/svg%3E")
    center/contain no-repeat;

}

.contacts{

display:flex;

align-items:center;

gap:20px;

font-size:14px;

color:white;

}


.contacts div:last-child{

background:#00cfff;

padding:8px 18px;

border-radius:20px;

}
/* ===== ПАНЕЛЬ ПРЕИМУЩЕСТВ КАК В МАКЕТЕ ===== */


.features{

display:grid;

grid-template-columns:repeat(4,1fr);

position:relative;


background:rgba(7,16,23,.45);

backdrop-filter:blur(12px);

padding:25px 35px;


border-top:1px solid rgba(255,255,255,.08);

border-bottom:1px solid rgba(255,255,255,.08);

}



.feature-card{

background:transparent;

text-align:center;


border-right:1px solid rgba(255,255,255,.25);


}



.feature-card:last-child{

border-right:none;

}




.feature-icon{

font-size:34px;

margin-bottom:12px;

}




.feature-card h3{

font-size:19px;

color:#00d9ff;

margin-bottom:8px;

font-weight:600;

}




.feature-card p{

font-size:14px;

color:#fff;

opacity:.9;

line-height:1.4;

}





.feature-card:hover{

transform:translateY(-5px);

transition:.3s;

}
/* фикс панели преимуществ */

.features{

position:relative;

margin-top:-55px;

z-index:10;

background:rgba(10,20,30,.55);

backdrop-filter:blur(14px);

border-radius:0;

}
/* ===== компактная панель преимуществ ===== */



/* ===== панель поверх hero без полосы ===== */


.hero{

padding-bottom:80px;

}


.features{

position:relative;

z-index:20;

width:84%;

margin:-112px auto 0;

border-radius:18px;
padding: 1px 25px; 
background:rgba(7,16,23,.55);
box-shadow:
0 15px 40px rgba(0,0,0,.35);

}


/* убираем фон под панелью */

.routes{

margin-top:0;

}
