/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #f7fafc;
}
p {
    margin: 0 0 20px;
    text-align: justify;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
}
ol, ul {
    padding-left: 3rem;
    margin: 10px 0;
}
blockquote {
    background: #e9f6ff;
    padding: 5px;
    margin: 20px 0 10px 10px;
    border-left: 5px solid #206fac;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    line-height: 22px;
    letter-spacing: .5px;
}
.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
header {
    background: #1a202c;
    color: #e2e8f0;
    padding: 15px 0;
    border-bottom: 3px solid #f6ad55;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo {
    font-size: 30px;
    font-weight: 700;
}
.logo img {
    max-height: 55px;
}
.header-contacts {
    display: flex;
    align-items: center;
    gap: 25px;
}
.header-contacts a {
    color: #e2e8f0;
    transition: color 0.3s;
}
.header-contacts a:hover {
    color: #f6ad55;
}
.header-contacts .phone {
    font-size: 1.2rem;
    font-weight: 700;
}
.header-contacts .phone i {
    color: #f6ad55;
    margin-right: 8px;
}
.header-contacts .messenger {
    font-size: 1.2rem;
    font-weight: 700;
    display: -ms-flexbox;
    display: flex;
}
.header-contacts .messenger img {
    margin-right: 8px;
    vertical-align: middle;
}
.header-contacts .email i {
    margin-right: 6px;
    color: #f6ad55;
}

/* ===== CAR_ITEM ===== */
.car_item {
    display: flex;
    justify-content: space-between;
    background: #fff;
    background-color: rgb(255, 255, 255);
    margin-top: 25px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(168, 172, 185, .3);
}
.car_item:nth-child(1), .checkout_plate:nth-child(1) {
    animation-delay: .4s;
}

.car_item-image {
    max-width: 25%;
    padding: 15px;
}
.car_item_desc {
    width: 100%;
    margin: 0px 10px 0px 10px;
    max-width: 60%;
    padding: 15px;
}
.car_item-price {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 20%;
    align-items: flex-end;
    justify-content: flex-end;
    border-left: 1px solid #eeecec;
    background: linear-gradient(to top, #ebeff2, #dae4eb 63%);
    padding: 15px;
}

.car_item-image img {
    max-width: 200px;
    margin-top: 5px;
}
.car_brands {
    font-size: 12px;
    color: #797d95;
    font-weight: 400;
    padding: 10px;
}

.car_item-headings {
    display: flex;
    justify-content: flex-start;
}
.car_item-name {
    font-size: 1.1em;
    font-weight: 500;
}
.car_item-description {
    font-size: 15px;
    padding: 10px 0px;
    color: #797d95;
}
.car_item-tooltips {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    padding: 0px 0px 10px 0px;
}
.tool {
    margin-right: 15px;
    color: #797d95;
    font-size: 16px;
    position: relative;
    line-height: 25px;
}
.tool:hover {
    opacity: 1;
    cursor: pointer;
}
.tool img{
    margin-right: 3px;
}
.tool.tool-user img {
    width: 25px;
    height: 25px;
}
.tool img {
    fill: currentColor;
    vertical-align: top;
    opacity: .6;
}
.tooltip {
    position: absolute;
    left: 40%;
    bottom: 30px;
    opacity: 0;
    margin-bottom: 1em;
    padding: 5px 10px;
    background-color: #000;
    font-size: .65em;
    line-height: normal;
    text-align: left;
    white-space: nowrap;
    transform: translate(-50%, 1em);
    transition: all .15s ease-in-out;
    z-index: 9;
    background: rgba(74, 83, 119, .65);
    color: #fff;
    border-radius: 5px;
}
.tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border: .5em solid transparent;
    border-top-color: transparent;
    border-top-color: rgba(74, 83, 119, 0.65);
    transform: translate(-50%, 0);
}
.tool:hover .tooltip {
    opacity: 1;
    z-index: 9999;
}

.car_item-advantages {
	display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    list-style: none;
}
.car_item-advantages li {
    font-size: 14px;
    margin-right: 10px;
    display: -ms-flexbox;
    display: flex;
}
.car_item-advantages img {
    margin-right: 10px;
    max-width: 16px;
    max-height: 16px;
    top: 3px;
    position: relative;
}

.price_header {
    font-size: 16px;
    color: #797d95;
}
.price {
    display: inline-block;
    font-size: 20px;
    padding: 7px 15px;
    background: #f2f4f8;
    font-weight: 500;
    border-radius: 5px;
    color: var(--textColorDark);
}
.price_btn:hover {
    opacity: 1;
    transition: 0.1s ease;
    background: #3576bf;
}
.comfort .price {
    background: none;
    color: #8cbb25;
    font-weight: 900;
}
.car_price-old {
    display: inline-block;
    width: auto;
    text-align: right;
    text-decoration: line-through;
    font-size: .95em;
    margin-top: 5px;
    font-weight: 400;
    background: #f2f4f8;
    padding: 7px 15px;
}
.price_btn {
    display: inline-block;
    color: #fff;
    padding: 10px 25px 10px 25px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 5px;
    transition: .1s ease;
    background: #4385d0;
    letter-spacing: .5px;
    position: relative;
}
.price_btn i{
    margin-left: 10px;
    right: 10px;
    position: relative;
}
.price_btn i:hover {
    right: 5px;
    transition: 0.1s ease;
}

.tip {
    border-top-right-radius: 20px;
    text-align: center;
    display: inline-block;
    padding: 6px 15px;
    margin-left: 15px;
    font-weight: 600;
    font-size: .7em;
    color: #fff;
    position: absolute;
    left: -22px;
    top: 3px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}
.standart .tip {
    background: linear-gradient(90deg, #3ab2c5 0, #1178a1 100%) 0 0 no-repeat padding-box;
}
.comfort .tip {
    color: #fff;
    background: linear-gradient(90deg, #5aa527 0, #6d990c 100%) 0 0 no-repeat padding-box;
}
.tip::before {
    content: '';
    width: 100%;
    height: 250%;
    position: absolute;
    top: 0;
    right: -20%;
    opacity: 0.15;
    background: linear-gradient(to left, transparent 0%, #fff 40%, #fff 60%, transparent 100%);
    transform: rotate(115deg);
}
img.wp-smiley, img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

.content_desc {
    margin: 20px 0;
}

/* Route page styles */
.route-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px 0 25px;
    flex-wrap: wrap;
    color: #404b5d;
}
.route-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.route-stat img {
    width: 32px;
    height: 32px;
}
.route-stat__value {
    font-size: 1.2rem;
    font-weight: 600;
}
.btn-zakaz .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 40px;
    background: #f6ad55;
    color: #1a202c;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-zakaz .btn:hover {
    background: #ed8936;
    transform: translateY(-2px);
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}
.tariff-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}
.tariff-card.featured {
    border-color: #f6ad55;
    box-shadow: 0 4px 20px rgba(246, 173, 85, 0.2);
}
.tariff-card__body {
    padding: 15px 20px;
}
.tariff-card__name {
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.tariff-card__desc {
    color: #4a5568;
    font-size: 0.95rem;
}
.tariff-card__image-wrap {
    height: 150px;
    overflow: hidden;
}
.tariff-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tariff-card__bottom {
    padding: 15px 20px 20px;
}
.tariff-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}
.tariff-card__features li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: #2d3748;
}
.tariff-card__features li::before {
    content: "✓ ";
    color: #f6ad55;
    font-weight: bold;
}
.tariff-price a {
    display: block;
    text-align: center;
    background: #f6ad55;
    padding: 10px;
    border-radius: 6px;
    color: #1a202c;
    font-weight: 700;
    transition: 0.3s;
}
.tariff-price a:hover {
    background: #ed8936;
}

.seo-text {
    line-height: 1.8;
    color: #2d3748;
}
.seo-text p {
    margin: 12px 0;
}
.rout-desc {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #edf2f7;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 15px 0;
}
.rout-desc div {
    background: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: #2d3748;
}

.route-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}
.route-links__item {
    background: #edf2f7;
    padding: 8px 16px;
    border-radius: 20px;
    color: #2b6cb0;
    transition: 0.3s;
}
.route-links__item:hover {
    background: #f6ad55;
    color: #fff;
}

.map-container {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0 30px;
    background: #e9ecf0;
}

.routes-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.routes-list li {
    background: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}
.routes-list li:hover {
    border-color: #f6ad55;
}
.routes-list a {
    color: #2b6cb0;
    font-weight: 500;
}
.routes-list a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .route-stats {
        flex-direction: column;
        gap: 15px;
    }
    .poezkapar {
        grid-template-columns: 1fr;
    }
    .tariffs-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 300px;
    }
}

/* ===== FOOTER ===== */
footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 40px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.footer-col h4 {
    color: #f6ad55;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.footer-col p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.footer-col nav a {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e0;
    transition: color 0.3s;
}
.footer-col nav a:hover {
    color: #f6ad55;
}
.socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
.socials a {
    color: #cbd5e0;
    font-size: 1.3rem;
    transition: color 0.3s;
}
.socials a:hover {
    color: #f6ad55;
}
.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #a0aec0;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-container {
    background: #edf2f7;
    padding: 12px 0;
    font-size: 0.95rem;
}
.breadcrumb {
display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 14px;
	color: #666666;
	flex-wrap: wrap;
}

.breadcrumb li {
	list-style: none;
}

.breadcrumb li:not(:last-child) {
    padding-right: 10px;
    position: relative;
}

.breadcrumb li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: url(/img/right-arrow.png) 0 0 no-repeat;
    background-size: contain;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: #fff;
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.hero h1 span {
    color: #f6ad55;
}
.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

#search-form {
    background: #424d60;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}

#search-form .search-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: flex-end;
    max-width: 820px;
    margin: 0 auto;
}
#search-form .field {
    position: relative;
    flex: 1 1 250px;
    text-align: left;
}
#search-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #fff;
}
#search-form label i {
    color: #f6ad55;
    margin-right: 6px;
}
#search-form input[type="text"] {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
    color: #2d3748;
    transition: box-shadow 0.3s;
}
#search-form input[type="text"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(246, 173, 85, 0.5);
}
#search-form button {
    padding: 14px 40px;
    background: #f6ad55;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a202c;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
#search-form button:hover {
    background: #ed8936;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.3);
}
#search-form button i {
    font-size: 1.1rem;
}

/* Autocomplete */
.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 220px;
    overflow-y: auto;
    display: none;
    z-index: 100;
    color: #2d3748;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.autocomplete-list div {
    padding: 12px 18px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}
.autocomplete-list div:hover {
    background: #f7fafc;
}

/* ===== ADVANTAGES ===== */
.advantages, .route_desc {
    padding: 70px 0;
    background: #fff;
}
.advantages h2, .popular-routes h2, .testimonials h2, .faq h2, 
.partners h2, .blog h2, .testimonials-mini h2, .route_desc h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
}
.advantages h2::after, .popular-routes h2::after, .testimonials h2::after,
.faq h2::after, .partners h2::after, .blog h2::after, .route_desc h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #f6ad55;
    margin: 12px auto 0;
    border-radius: 2px;
}
.popular-routes h3 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.advantage-item {
    background: #f7fafc;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}
.advantage-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-bottom-color: #f6ad55;
}
.advantage-icon {
    font-size: 2.5rem;
    color: #f6ad55;
    margin-bottom: 15px;
}
.advantage-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a202c;
}
.advantage-item p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* ===== SERVICES ===== */
.services {
    padding: 70px 0;
    background: #fff;
}
.services .section__title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
}
.services .section__subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #4a5568;
    font-size: 1.1rem;
}
.services .section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #f6ad55;
    margin: 12px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #f7fafc;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-bottom-color: #f6ad55;
    background: #fff;
}

.service-icon {
    font-size: 3rem;
    color: #f6ad55;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a202c;
}

.service-desc {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

/* ===== ROUTES ===== */
.popular-routes, .similar-routes {
    padding: 70px 0;
    background: #f7fafc;
}
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}
.route-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 4px solid #f6ad55;
}
.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.route-title {
    font-weight: 600;
    font-size: 1.05rem;
}
.route-distance {
    color: #718096;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.route-arrow {
    color: #f6ad55;
    font-size: 1.1rem;
    transition: transform 0.3s;
}
.route-card:hover .route-arrow {
    transform: translateX(4px);
}
.no-routes {
    text-align: center;
    color: #718096;
    padding: 30px 0;
}

/* ===== TESTIMONIALS (карусель) ===== */
.testimonials {
    padding: 70px 0;
    background: #fff;
}
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-item {
    flex: 0 0 100%;
    padding: 0 20px;
    text-align: center;
}
.testimonial-stars {
    color: #f6ad55;
    margin-bottom: 12px;
    font-size: 1.2rem;
}
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #2d3748;
    max-width: 700px;
    margin: 0 auto 15px;
}
.testimonial-author {
    font-weight: 600;
    color: #4a5568;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 1.2rem;
    color: #2d3748;
    transition: all 0.3s;
    z-index: 2;
}
.carousel-btn:hover {
    background: #f6ad55;
    color: #fff;
}
.carousel-btn.prev {
    left: 10px;
}
.carousel-btn.next {
    right: 10px;
}

/* ===== TESTIMONIALS MINI (route page) ===== */
.testimonials-mini {
    padding: 60px 0;
    background: #f7fafc;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.testimonials-grid .testimonial-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
}
.testimonials-grid .testimonial-item p {
    font-style: italic;
    color: #2d3748;
}
.testimonials-grid .testimonial-author {
    margin-top: 10px;
    font-style: normal;
}

/* ===== FAQ ===== */
.faq {
    padding: 70px 0;
    background: #f7fafc;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.faq-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1a202c;
    transition: background 0.3s;
}
.faq-question:hover {
    background: #f7fafc;
}
.faq-question i {
    transition: transform 0.3s;
    color: #f6ad55;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 25px 20px;
    color: #4a5568;
    display: none;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    display: block;
}

/* ===== PARTNERS ===== */
.partners {
    padding: 60px 0;
    background: #fff;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    align-items: center;
}
.partner-logo {
    background: #f7fafc;
    padding: 25px 15px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    color: #4a5568;
    border: 1px solid #edf2f7;
    transition: all 0.3s;
}
.partner-logo:hover {
    border-color: #f6ad55;
    transform: scale(1.03);
}
.partner-logo i {
    font-size: 2rem;
    color: #f6ad55;
    display: block;
    margin-bottom: 8px;
}

/* ===== BLOG ===== */
.blog {
    padding: 70px 0;
    background: #f7fafc;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.blog-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #1a202c;
}
.blog-date {
    font-size: 0.85rem;
    color: #a0aec0;
    display: block;
    margin-bottom: 12px;
}
.blog-card p {
    color: #4a5568;
    margin-bottom: 15px;
}
.blog-link {
    color: #f6ad55;
    font-weight: 600;
    transition: color 0.3s;
}
.blog-link:hover {
    color: #ed8936;
}

/* ===== CTA ===== */
.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: #fff;
    text-align: center;
}
.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.cta p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 25px;
}
.cta-btn {
    display: inline-block;
    margin-bottom: 15px;
    padding: 16px 45px;
    background: #f6ad55;
    color: #1a202c;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s;
}
.cta-btn:hover {
    background: #ed8936;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.3);
}
.cta-btn i {
    margin-right: 10px;
}
.cta-btn img {
    width: 21px;
    height: 21px;
    margin-right: 10px;
    top: 3px;
    position: relative;
}

/* ===== ROUTE PAGE ===== */
.route-info {
    padding: 50px 0 40px;
    background: #fff;
}
.route-info h1 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: #1a202c;
}
.route-details {
    background: #f7fafc;
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.route-details p {
    font-size: 1.1rem;
}
.route-details i {
    color: #f6ad55;
    margin-right: 8px;
    width: 20px;
}
.route-description {
    margin: 25px 0 30px;
    padding: 25px 30px;
    background: #f7fafc;
    border-left: 4px solid #f6ad55;
    border-radius: 4px;
    color: #4a5568;
    line-height: 1.8;
}
.order-block {
    margin-top: 30px;
    padding: 35px 40px;
    background: #f7fafc;
    border-radius: 12px;
}
.order-block h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
}
.order-form .form-group {
    margin-bottom: 18px;
}
.order-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
}
.order-form label i {
    color: #f6ad55;
    margin-right: 6px;
}
.order-form input {
    width: 100%;
    max-width: 400px;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.order-form input:focus {
    outline: none;
    border-color: #f6ad55;
    box-shadow: 0 0 0 3px rgba(246, 173, 85, 0.2);
}
.order-form button {
    padding: 14px 40px;
    background: #f6ad55;
    border: none;
    border-radius: 8px;
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.order-form button:hover {
    background: #ed8936;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.3);
}

/* === Popular routes page === */
.filter-form {
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.filter-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}
.filter-fields .field {
    flex: 1 1 200px;
}
.filter-fields label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}
.filter-fields select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
}
.filter-fields .btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.btn--accent {
    background: #f6ad55;
    color: #1a202c;
}
.btn--outline {
    background: transparent;
    border: 1px solid #ccc;
    color: #2d3748;
}
.btn--outline:hover {
    background: #f0f0f0;
}

.routes-list-popular {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 70px 0;
}
.route-item {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: 0.2s;
}
.route-item:hover {
    border-color: #f6ad55;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.route-item__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    text-decoration: none;
    color: #2d3748;
}
.route-item__title {
    font-weight: 600;
    flex: 1 1 200px;
}
.route-item__distance,
.route-item__duration {
    color: #4a5568;
    font-size: 0.9rem;
}
.route-item__views {
    font-size: 0.9rem;
    color: #718096;
    background: #edf2f7;
    padding: 2px 10px;
    border-radius: 12px;
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}
.pagination a {
    display: inline-block;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #2d3748;
    transition: 0.2s;
}
.pagination a:hover {
    background: #f6ad55;
    border-color: #f6ad55;
    color: #fff;
}
.pagination .active {
    background: #f6ad55;
    border-color: #f6ad55;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .filter-fields {
        flex-direction: column;
        align-items: stretch;
    }
    .route-item__link {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.blog-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card__content {
    padding: 20px;
}
.blog-card__content h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.blog-card__content h2 a {
    color: #1a202c;
    transition: color 0.2s;
}
.blog-card__content h2 a:hover {
    color: #f6ad55;
}
.blog-card__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #718096;
}
.blog-card__meta i {
    margin-right: 4px;
}
.blog-card__content p {
    color: #4a5568;
    margin-bottom: 15px;
}
.blog-card__link {
    color: #f6ad55;
    font-weight: 600;
}
.blog-card__link:hover {
    color: #ed8936;
}
.blog-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

/* Article page */
.article-full {
    margin: 0 auto;
}
.article-full__title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.article-full__meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    color: #718096;
    font-size: 0.95rem;
}
.article-full__meta i {
    margin-right: 6px;
}
.article-full__image {
    margin-bottom: 25px;
}
.article-full__image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}
.article-full__content {
    line-height: 1.8;
    color: #2d3748;
}
.article-full__content h3 {
    margin: 25px 0 10px;
    color: #1a202c;
}
.article-full__content p {
    margin-bottom: 15px;
}
.article-full__content ul, .article-full__content ol {
    margin: 10px 0 20px 20px;
}

.recent-articles {
    list-style: none;
    padding: 0;
}
.recent-articles li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}
.recent-articles li:last-child {
    border-bottom: none;
}
.recent-articles a {
    color: #2b6cb0;
    transition: color 0.2s;
}
.recent-articles a:hover {
    color: #f6ad55;
}

/* ===== 404 PAGE ===== */
.page-404 {
    padding: 60px 0 80px;
    background: #f7fafc;
    text-align: center;
}
.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: #f6ad55;
    line-height: 1;
    margin-bottom: 10px;
}
.page-404 h1 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 15px;
}
.error-text {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 10px;
}
.page-404 .search-block {
    max-width: 700px;
    margin: 30px auto 40px;
}
.page-404 .search-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.page-404 .field {
    flex: 1 1 200px;
    position: relative;
}
.page-404 .field input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}
.page-404 .search-fields button {
    padding: 12px 30px;
    background: #f6ad55;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    color: #1a202c;
    cursor: pointer;
    transition: background 0.3s;
}
.page-404 .search-fields button:hover {
    background: #ed8936;
}
.popular-routes-404 {
    margin-top: 40px;
}
.popular-routes-404 h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }
    .page-404 h1 {
        font-size: 1.8rem;
    }
    .page-404 .search-fields {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .article-full__title {
        font-size: 1.8rem;
    }
    .article-sidebar {
        max-width: 100%;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 12px;
    }
    .header-contacts {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .hero {
        padding: 50px 0 45px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    #search-form .search-fields {
        flex-direction: column;
        align-items: stretch;
    }
    #search-form .field {
        flex: 1 1 auto;
    }
    #search-form button {
        justify-content: center;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .routes-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .socials {
        justify-content: center;
    }
    .route-details {
        flex-direction: column;
        gap: 10px;
    }
    .order-block {
        padding: 25px 20px;
    }
    .order-form input {
        max-width: 100%;
    }
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .carousel-btn.prev {
        left: 0;
    }
    .carousel-btn.next {
        right: 0;
    }
    .testimonial-text {
        font-size: 1rem;
    }
    .price_header {
        text-align: right;
    }
}

@media (max-width: 680px) {
    .car_item {
        flex-wrap: wrap;
    }
    .car_item-image {
        max-width: 30%;
    }
	.car_item_desc {
        margin: 0px 5px 0px 10px;
        max-width: 60%;
    }
	.car_item-price {
        max-width: 100%;
        align-items: center;
        justify-content: space-evenly;
        border-left: none;
        margin-top: 20px;
        border-top: 1px solid #eae7e7;
    }
    .car_item-advantages {
    flex-wrap: wrap;
	}
	.car_item-advantages li {
    width: 100%;
	}
	.partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services {
        padding: 50px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-card {
        padding: 25px 15px;
    }
    .service-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
	.logo {
    font-size: 25px;
    font-weight: 700;
}
    .routes-grid {
        grid-template-columns: 1fr;
    }
    .partners-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .car_item-image {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .car_item_desc {
        max-width: 100%;
    }
    .car_item-headings, .car_item-headings {
        justify-content: center;
    }
    .car_item-tooltips, .car_item-advantages {
        justify-content: center;
    }
    .price_btn {
        padding: 12px 35px 12px 35px;
        font-size: 18px;
        margin-top: 20px;
    }
}