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


body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
}


header {
    /*background: #1f2933;*/
    background: #f3f9ff;
    color: #1f2933;
    font-weight: bold;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 10;
}


.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}


nav a {
    color: #1f2933;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}
nav a:hover {
    opacity: 0.8;
    border-bottom-color: #1f2933;
}


.burger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}


h2 {
    margin-bottom: 20px;
}


.hero {
    padding: 0;
}

.main-slider {
    width: 100%;
    height: 35vh;
    min-height: 200px;
}

.swiper-slide {
    height: 100%;
}

.slide-content {
    display: flex;
    height: 100%;
}

/* ТЕКСТ */
.slide-text {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0f172a;
    color: #fff;
}

.slide-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.slide-text p {
    font-size: 18px;
    max-width: 400px;
}

/* КАРТИНКА */
.slide-image {
    width: 50%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Стрелки поверх */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
}

/* Точки */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .main-slider {
        height: auto;
    }

    .slide-content {
        flex-direction: column;
    }

    .slide-text,
    .slide-image {
        width: 100%;
    }

    .slide-text {
        padding: 40px 20px;
        text-align: center;
    }

    .slide-text h2 {
        font-size: 26px;
    }

    .slide-text p {
        font-size: 16px;
        margin: 0 auto;
    }

    .slide-image {
        height: 250px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        /*background: #1f2933;*/
        background: #f3f9ff;
        padding: 15px;
    }


    nav ul {
        flex-direction: column;
        gap: 10px;
    }


    nav.active {
        display: block;
    }


    .burger {
        display: block;
    }
}


.contacts {
    background: #f8fafc;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contacts h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.contact-phones {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.phone-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.phone-label {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    text-decoration: none;
    color: #1f2933;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.phone-link:hover {
    opacity: 0.8;
    /*border-bottom-color: #1f2933;*/
}

.call-icon {
    font-size: 20px;
}
.contact-address {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    font-size: 18px;
    color: #1f2933;
}

@media (max-width: 768px) {
    .contact-phones {
        flex-direction: column;
        gap: 20px;
    }
    .phone-item {
        align-items: center;
    }
}


.footer {
    background: #0f172a;
    color: #ffffff;
    padding: 40px 20px 20px;
    font-size: 14px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer a:hover {
    opacity: 0.8;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-section h3 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.fleet {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.fleet-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.fleet-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.fleet-row.reverse {
    flex-direction: row-reverse;
}

.fleet-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.fleet-image img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.fleet-text {
    flex: 1;
}

.fleet-text h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.fleet-text p {
    font-size: 20px;
    line-height: 1.6;
}

.about h2{
    font-size: 32px;
}

.about p{
    font-size: 18px;
}

@media (max-width: 900px) {
    .fleet-row {
        flex-direction: column;
        text-align: center;
    }

    .fleet-row.reverse {
        flex-direction: column;
    }

    .fleet-image img {
        max-width: 100%;
        height: auto;
    }
}





#about {
    background: #f7f9fc;
    padding: 80px 20px;
    margin-top: 60px;
}

.about {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-title {
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

.about-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #2c5aa0;
    margin: 15px auto 0;
    border-radius: 2px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #e0e6ef;
}

.about-content p:hover {
    border-left-color: #2c5aa0;
    transition: 0.3s ease;
}

/* Адаптивность */
@media (max-width: 900px) {
    .about {
        padding: 30px 20px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-content p {
        font-size: 17px;
        padding-left: 15px;
    }
}
