body {
  font-family: "WorkSans-Regular";
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
}
.overflow.active {
  overflow: hidden;
}
a {
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: 0.5s;
}
a:hover {
  color: #FF9E0C;
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: all 0.5s;
}
a:focus {
  text-decoration: none;
  outline: none;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  outline: none;
  background:transparent;
  padding: 0;
}
button:focus {
  outline: none;
}
[type=reset], [type=submit], button, html [type=button] {
  cursor: pointer;
}
*,
*:focus,
*:focus-within {
  outline: none;
  outline-color: transparent;
  text-decoration: none;
}
/* fonts */
@font-face {
  font-family: Inter-Bold;
  src: url(../font/Inter-Bold.ttf);
}
@font-face {
  font-family: Inter-Medium;
  src: url(../font/Inter-Medium.ttf);
}
@font-face {
  font-family: Inter-SemiBold;
  src: url(../font/Inter-SemiBold.ttf);
}
@font-face {
  font-family: OpenSans-SemiBold;
  src: url(../font/OpenSans-SemiBold.ttf);
}
@font-face {
  font-family: PlusJakartaSans-Bold;
  src: url(../font/PlusJakartaSans-Bold.ttf);
}
@font-face {
  font-family: PlusJakartaSans-Medium;
  src: url(../font/PlusJakartaSans-Medium.ttf);
}
@font-face {
  font-family: PlusJakartaSans-SemiBold;
  src: url(../font/PlusJakartaSans-SemiBold.ttf);
}
@font-face {
  font-family: WorkSans-Regular;
  src: url(../font/WorkSans-Regular.ttf);
}
@font-face {
  font-family: WorkSans-SemiBold;
  src: url(../font/WorkSans-SemiBold.ttf);
}
@font-face {
  font-family: WorkSans-Bold;
  src: url(../font/WorkSans-Bold.ttf);
}
.container {
  max-width: 1430px;
}
header {
  position: fixed;
  top: 0px;
  padding: 28px 0;
  width: 100%;
  color: #fff;
  background-color: transparent;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  z-index: 1000;
  left: 0;
  right: 0;
}
header.sticky {
  padding: 15px 0;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  background: rgb(255 255 255);
  box-shadow: 0px 20px 20px 0px #00000021;
}
header .flex-header {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}
header .menu ul {
  display: flex;
  align-items: center;
}
header .menu ul li {
  margin: 0 16px;
}
header .menu ul li a {
  font-size: 18px;
  font-family: "Inter-Medium";
  color: #fff;
}
header .menu ul li a:hover {
  color: #FF9E0C;
}
header .phone {
  display: flex;
  align-items: center;
}
header .phone p {
  font-size: 16px;
  color: #fff;
  font-family: "WorkSans-Regular";
  margin: 0 0 0 12px;
  transition: 0.5s;
}
header .phone p a {
  font-family: "WorkSans-SemiBold";
  color: #fff;
  display: block;
}




/* Основная секция-слайдер */
.section-hero-slider {
  position: relative;
  z-index: 2;
  border-radius: 0 0 75.02px 75.02px;
  overflow: hidden;
  width: 100%;
}

/* Каждый слайд получает фон на 100% ширины */
.hero-slide {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 300px 0 100px;
  box-sizing: border-box;
  height: 800px;
}

/* Текст внутри слайда */
.hero-heading {
  width: 55%;
}

.hero-heading span {
  font-size: 28.5px;
  display: inline-block;
  width: 100%;
  line-height: 100%;
  font-family: "Inter-SemiBold";
  font-style: italic;
  color: #FF9E0C;
}

.hero-heading h1 {
  font-family: "OpenSans-SemiBold";
  font-size: 48px;
  color: #fff;
  line-height: 100%;
  margin: 50px 0 110px;
}

.hero-heading h2 {
  font-family: "PlusJakartaSans-Medium";
  font-size: 25.5px;
  color: #fff;
  margin: 0 0 43px 0;
  line-height: 100%;
  width: 100%;
  letter-spacing: -0.89px;
}
section.section-hero-slider .hero-links a {
  display: inline-flex;
}
.hero-links a {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 16px;
  color: #193152;
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(180deg, #FFBD00 0%, #FF9E0C 100%);
  border-radius: 100px;
  text-decoration: none;
}

.hero-links a:last-child {
  background: #FFFFFF;
  margin-left: 20px;
}

.hero-links a img {
  margin-left: 12px;
}

/* Обертка для позиционирования формы поверх слайдов */
.hero-form-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* чтобы прокрутка слайдов работала под формой */
  z-index: 10;
}

.hero-form-wrapper .container {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Включаем клики обратно на самой форме */
.hero-form-wrapper form.form-home {
  pointer-events: auto;
}

.hero-slider .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 15px;
  display: flex !important;
  list-style: none;
  margin: 0;
  gap: 10px;
  z-index: 5;
  box-sizing: border-box;
  justify-content: center;
}

.hero-slider .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background: #fff;
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider .slick-dots li.slick-active button {
  background: #FF9E0C;
  width: 32px;
  border-radius: 6px;
}




.booking-title {
  font-family: "WorkSans-SemiBold";
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 40px 0;
  text-align: center;
  width: 100%;
}
.booking-fields {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
    width: 100%;
}

.booking-input {
    width: 100%;
    height: 38px;
    background-color: #FAFAFA;
    border: 1px solid #FAFAFA;
    border-radius: 12px;
    padding: 9px 16px;
    font-size: 16px;
    color: #000000;
    outline: none;
    box-sizing: border-box;
}

.input-group img {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.date-input {
    color: #000000;
}
.booking-button {
  font-family: "Inter-Bold";
  width: 100%;
  padding: 10px 0;
  background-color: #FF9E0C;
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-button:hover {
    background-color: #e68a00;
}
form.form-home {
  background: #fff;
  border-radius: 20px;
  width: 416px;
  padding: 40px;
  margin-top: 70px;
}
header.sticky .menu ul li a {
   color: #000000;
}
header.sticky .menu ul li a:hover {
  color: #FF9E0C;
}
header.sticky .phone p {
  color: #000;
}
header.sticky .phone p a {
  color: #000;
}
.section-journey {
  padding: 140px 0 223px;
  border-radius: 0 0 75.02px 75.02px;
  background: linear-gradient(180deg, #FFBD00 0%, #FF9C00 100%);
  margin-top: -70px;
}
.section-journey .item {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section-journey .item h4 {
  font-family: "WorkSans-SemiBold";
  font-size: 24px;
  color: #FFFFFF;
  margin: 20px 0 29px 0;
  line-height: 100%;
  display: inline-block;
  width: 100%;
}
.section-journey .item p {
  font-family: "Inter-Medium";
  font-size: 16px;
  color: #fff;
  margin: 0;
  line-height: 24px;
}
.section-journey .col-lg-4.col-md-6 {
  margin-bottom: 30px;
}
.heading-journey {
  font-size: 64px;
  color: #fff;
  line-height: 120%;
  font-family: "Inter-SemiBold";
  font-style: italic;
  margin: 30px 0 0 0;
  display: inline-block;
  width: 100%;
  text-align: center;
  letter-spacing: -3.1px;
}
.big-car {
  position: absolute;
  right: 0;
  left: 0;
  text-align: center;
}
.section-item {
  padding: 220px 0 60px 0;
}
.heading-flex {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
}
.heading-flex h2 {
  font-family: "Inter-SemiBold";
  font-size: 50px;
  margin: 0;
  color: #000;
  line-height: 100%;
}
.heading-flex a {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #000;
  font-family: "Inter-SemiBold";
}
.heading-flex a img {
  margin-left: 8px;
}
.section-item .col-lg-4.col-m-6 {
  margin-bottom: 25px;
}

/* Карточка */
.section-item .item {
  padding: 32px 28px;
  background: #383B4C;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* 1. Заголовки */
.section-item .item .item-header {
  margin-bottom: 12px;
}

.section-item .item .car-category {
  font-size: 26px;
  color: #fff;
  line-height: 1.1;
  font-family: "WorkSans-SemiBold", sans-serif;
  margin: 0 0 6px 0;
}

.section-item .item .car-model {
  font-size: 12px;
  color: #fff;
  font-family: "WorkSans-SemiBold", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* 2. Иконки характеристик (Бабблы) */
.section-item .item .flex-description {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 20px 0;
}

.section-item .item .flex-description .desc-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 13px;
  color: #334155;
  font-family: "Inter-SemiBold", sans-serif;
}

.section-item .item .flex-description .desc-badge img {
  width: 15px;
  height: 15px;
  margin-right: 6px;
  object-fit: contain;
}

.section-item .item .flex-description .desc-badge svg {
  width: 15px;
  height: 15px;
  margin-right: 6px;
  object-fit: contain;
}

/* 3. Обычное изображение автомобиля (Без слайдера) */
.section-item .item .img-block {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.section-item .item .img-block img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 4. Бейдж "Member Rate" */
.section-item .item .badge-member {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background-color: #1E4E79;
  color: #FFFFFF;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-family: "Inter-SemiBold", sans-serif;
  margin-bottom: 20px;
}

/* 5. Нижний блок */
.section-item .item .item-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid #D1D9E0;
  padding-top: 18px;
}

.section-item .item .price-wrapper {
  display: flex;
  flex-direction: column;
}

.section-item .item .price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.section-item .item .price-num {
  font-size: 26px;
  color: #fff;
  font-family: "WorkSans-SemiBold", sans-serif;
  line-height: 1;
}

.section-item .item .price-currency {
  font-size: 15px;
  color: #fff;
  font-family: "WorkSans-SemiBold", sans-serif;
}

.section-item .item .price-period {
  font-size: 13px;
  color: #fff;
  font-family: "Inter-SemiBold", sans-serif;
}

.section-item .item .price-sub {
  font-size: 12px;
  color: #fff;
  margin-top: 4px;
  font-family: "Inter-SemiBold", sans-serif;
}

.section-item .item a.btn-select {
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  background: #FF9E0C;
  border-radius: 8px;
  padding: 10px 22px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.section-item .item a.btn-select:hover {
  background: #E08B00;
}
.section-the-story {
  padding: 120px 0 100px 0;
  position: relative;
  overflow: hidden;
}
.section-the-story .flex-story {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 75px;
}
.section-the-story .flex-story .images-block {
  width: 615px;
  height: 390px;
  overflow: hidden;
  border-radius: 200px;
}
.section-the-story .flex-story .images-block img {
  width: 100%;
}
.section-the-story .flex-story .content-story {
    width: 45%;
}
.section-the-story .flex-story .content-story h3 {
  font-family: "Inter-SemiBold";
  font-size: 39px;
  color: #193152;
  margin: 0 0 20px 0;
  line-height: 42.93px;
}
.section-the-story .flex-story .content-story p {
  font-family: "PlusJakartaSans-Medium";
  margin: 0;
  font-size: 16px;
  color: #000000;
  line-height: 25.6px;
}
.animated-line-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.animated-line-wrapper svg {
    width: 100%;
    height: 100%;
}

.section-the-story .container {
  position: relative;
  z-index: 2;
}
section.section-testimonials.section {
  padding: 120px 0 0 0;
}
.section-testimonials {
  position: relative;
}
.section-testimonials::before {
  content: '';
  background: url(../img/testimonials-right-images.png) no-repeat;
  position: absolute;
  right: 100px;
  top: 0;
  width: 279px;
  height: 297px;
}
.section-testimonials::after {
  content: '';
  background: url(../img/testimonials-left-images.png) no-repeat;
  position: absolute;
  left: 100px;
  top: 100px;
  width: 279px;
  height: 297px;
}
.heading {
  text-align: center;
}
.heading h2 {
  font-size: 38px;
  color: #333333;
  line-height: 130%;
  margin: 0;
  font-weight: bold;
}
.heading span {
  display: inline-block;
  font-size: 14px;
  color: #1572D3;
  background: #1572D31A;
  padding: 16px 32px;
  margin-bottom: 24px;
}
.testimonials .item {
  display: flex;
  /* align-items: center; */
  background: #ffffff;
  box-shadow: 0px 12px 24px 0px rgba(16, 76, 139, 0.16);
  overflow: hidden;
  border-radius: 24px;
  margin: 80px 20px 127px;
}
.testimonials .item .images-block {
  width: 45%;
  height: 438px;
}
.testimonials .item .images-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials .item .block-content {
  width: 55%;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.testimonials .item .block-content h4 {
    font-size: 64px;
    font-weight: 600;
    line-height: 80%;
    margin: 0;
    color: #383838;
    display: flex;
    align-items: baseline;
}
.testimonials .item .block-content h4 span {
    font-size: 24px;
    font-weight: 500;
    margin-left: 15px;
    color: #383838;
}
.testimonials .item .block-content p {
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
    color: #282828;
    margin: 0;
    letter-spacing: 0%;
}
.testimonials .item .block-content h5 {
    font-size: 24px;
    font-weight: 600;
    color: #252525;
    margin: 0 0 8px 0;
}
.testimonials .item .block-content h5 + span {
    font-size: 14px;
    color: #838383;
    display: block;
    font-weight: 400;
}
.testimonials.slick-initialized.slick-slider .slick-list.draggable {
    padding: 0px 300px !important;
}
.testimonials.slick-initialized.slick-slider {
  position: relative;
  z-index: 2;
}
.section-partners .partners {
  padding: 64px 0;
}
.section-partners .partners .item-logo {
  margin: 0 45px;
  display: flex;
  justify-content: center;
}
.partners .slick-track {
  display: flex;
  align-items: center;
}
.partners.slick-initialized.slick-slider .slick-list.draggable {
    padding: 0px 130px !important;
}
.section-facts-numbers {
  background: linear-gradient(180deg, #FFBD00 0%, #FF9E0C 100%);
  padding: 60px 0 170px;
  margin-top: 60px;
  margin-bottom: -70px;
  position: relative;
}
.section-facts-numbers .container {
  position: relative;
  z-index: 2;
}
.section-facts-numbers::after {
  content: '';
  display: block;
  background: url(../img/road-images.png) no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  top: 0;
}
.section-facts-numbers::before {
  content: '';
  display: block;
  background: url(../img/car-images.png) no-repeat;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  bottom: 30px;
  background-position: bottom;
  opacity: 0.4;
  filter: brightness(0.5);
}
.section-facts-numbers .heading h2 {
  color: #fff;
  font-size: 50px;
  font-family: "Inter-SemiBold";
}
.section-facts-numbers .heading p {
  font-size: 16px;
  color: #fff;
  margin: 20px 0 0 0;
}
.section-facts-numbers .flex-item {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  margin-top: 80px;
}
.section-facts-numbers .flex-item .item {
  width: 240px;
  border-radius: 20px;
  padding: 16px;
  background: #fff;
  display: flex;
  align-items: center;
}
.section-facts-numbers .flex-item .item .block-icon {
  background: #FF9C00;
  width: 72px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 16px;
}
.section-facts-numbers .flex-item .item h6 {
  font-family: "Inter-SemiBold";
  font-size: 24px;
  color: #000000;
  line-height: 100%;
  margin: 0 0 8px;
}
.section-facts-numbers .flex-item .item span {
  font-family: "WorkSans-SemiBold";
  color: #00000099;
  font-size: 16px;
}
section.section-banner.about-page {
  background: url(../img/about-banner.jpg) no-repeat;
  width: 100%;
  background-size: cover;
  height: 640px;
}
.section-footer {
  padding: 58px 50px;
  background: #383B4C;
  border-radius: 75.02px 75.02px 0 0;
  position: relative;
  z-index: 2;
}
.section-footer .flex-footer {
  display: flex;
  justify-content: space-between;
}
.section-footer .flex-footer .hesh {
  font-family: "Inter-SemiBold";
  font-style: italic;
  color: #8B97A7;
  font-size: 31.7px;
  line-height: 31.68px;
  display: block;
  margin: 22px 0 26px;
}
.section-footer .flex-footer .hesh:hover {
  color: #FF9E0C;
}
.section-footer .flex-footer .social-networks ul {
  display: flex;
  align-items: center;
}
.section-footer .flex-footer .social-networks ul li {
  margin-right: 20px;
}
.section-footer .flex-footer .social-networks ul li svg path {
  transition: 0.5s;
}
.section-footer .flex-footer .social-networks ul li a:hover svg path {
  fill: #FF9E0C;
}
.section-footer .flex-footer .copy-policy {
  display: flex;
  align-items: center;
  margin-top: 21px;
}
.section-footer .flex-footer .copy-policy p {
  color: #8B97A7;
  margin: 0 12px 0 0;
  font-size: 12px;
}
.section-footer .flex-footer .copy-policy a {
  color: #8B97A7;
  margin: 0 8px 0 0;
  font-size: 12px;
}
.section-footer .flex-footer .copy-policy a:hover {
  color: #FF9E0C;
}
footer .explore h6 {
  font-family: "PlusJakartaSans-SemiBold";
  color: #FFFFFF;
  font-size: 16px;
  margin: 0 0 15px 0;
  line-height: 24px;
}
footer .explore ul li {
  margin-bottom: 14px;
}
footer .explore ul li a {
  font-family: "PlusJakartaSans-Medium";
  color: #8B97A7;
  font-size: 14px;
}
footer .explore ul li a:hover {
    color: #FF9E0C;
}
footer .card-footer-s {
  margin: 39px 0 0 0;
  display: flex;
}
footer .card-footer-s a {
  display: inline-block;
  margin-right: 8px;
}
.maps-footer {
  display: flex;
  align-items: end;
}
.maps-footer iframe {
  width: 230px;
  height: 230px;
  overflow: hidden;
  border-radius: 32px;
}
.maps-footer p {
  font-size: 16px;
  color: #8B97A7;
  line-height: 24px;
  margin: 0 0 20px 30px;
}
.about-page-journey {
  text-align: center;
  position: relative;
}
.about-page-journey h2 {
  font-family: "PlusJakartaSans-SemiBold";
  font-style: italic;
  font-size: 62px;
  color: #000;
  margin: 100px 0;
  letter-spacing: -2.17px;
}
.scroll-icon .ball {
    animation: 2s mouse-scroll infinite ease-in-out
}
.scroll-icon.is-show-sm svg {
    width: 24px;
}
@keyframes mouse-scroll {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    50% {
        opacity: 1
    }

    to {
        transform: translateY(15%);
        opacity: 0
    }
}
section.section-journey.about-page {
    padding: 140px 0 100px;
    margin-bottom: 100px;
}
.section-poster {
  background: url(../img/reklama-images.jpg) no-repeat;
  background-position: bottom;
  background-size: cover;
  overflow: hidden;
  border-radius: 100px;
  padding: 495px 0 150px;
  position: relative;
}
.section-poster::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.section-poster .heading-poster {
  text-align: center;
  position: relative;
  z-index: 2;
}
.section-poster .heading-poster h2 {
  font-family: "PlusJakartaSans-SemiBold";
  font-style: italic;
  color: #FFFFFF;
  font-size: 90px;
  line-height: 99px;
  letter-spacing: -3.15px;
  margin: 0 0 4px 0;
}
.section-poster .heading-poster h3 {
  font-family: "PlusJakartaSans-Medium";
  color: #31F6F3;
  font-size: 30px;
  line-height: 32.95px;
  letter-spacing: -1.05px;
  margin: 0;
}
section.section-blog {
  padding: 150px 0 100px;
}
.heading-blog h2 {
  font-family: "Inter-SemiBold";
  color: #193152;
  font-size: 52px;
  line-height: 57.24px;
  letter-spacing: -1.82px;
  margin: 0;
}

.heading-blog {
  margin-bottom: 70px;
}
.blog-slider {
  position: relative;
  width: 100%;
}
.blog-slick-carousel {
  margin: 0 -15px;
}

.blog-slick-carousel .slick-list {
  overflow: visible;
}

.blog-card {
  padding: 0 15px;
  box-sizing: border-box;
  outline: none;
}

.blog-card-img-wrapper {
  width: 100%;
  height: 290px;
  border-radius: 35px;
  overflow: hidden;
  margin-bottom: 25px;
}

.blog-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img-wrapper img {
  transform: scale(1.05);
}
.blog-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blog-card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 23px;
}
.blog-tag {
  font-family: "PlusJakartaSans-Medium";
  font-size: 14px;
  line-height: 1;
  padding: 12px 21px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tag-orange {
  background-color: #FF9E0C;
  color: #fff;
}

.tag-blue {
  background-color: #193152;
  color: #fff;
}
.blog-card-title {
  margin: 0 0 15px 0;
  font-family: "Inter-SemiBold";
  font-size: 30px;
  line-height: 33px;
  letter-spacing: -0.5px;
}
.blog-card-title a {
  color: #193152;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.blog-card-title a:hover {
  border-color: #193152;
}

.blog-card-date {
  font-family: "PlusJakartaSans-Medium";
  font-size: 14px;
  color: #193152;
  line-height: 1;
}
.blog-slider-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 100px;
  padding-left: 15px;
}

.blog-slider-navigation button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.blog-slick-prev {
  background-color: #F8F8F7;
}

.blog-slick-prev:hover {
  background-color: #FF9E0C;
}

.blog-slick-next {
  background-color: #F8F8F7;
}

.blog-slick-next:hover {
  background-color: #FF9E0C;
}
.blog-slider-navigation button svg path {
  fill: #193152;
}
.section-connect {
  padding: 122px 0 60px;
}
.connect-block span {
  font-family: "Inter-SemiBold";
  font-style: italic;
  color: #193152;
  font-size: 16px;
  padding: 6px 13px;
  line-height: 15.94px;
  background: #FF9E0C;
  display: inline-block;
  border-radius: 8px;
}
.connect-block h2 {
  font-size: 77px;
  color: #193152;
  margin: 14px 0;
  font-family: "Inter-SemiBold";
  font-style: italic;
  line-height: 84.69px;
  letter-spacing: -2.69px;
}
.connect-block h3 {
  font-family: "PlusJakartaSans-Medium";
  color: #FF9E0C;
  font-size: 34px;
  margin: 0;
  line-height: 37.38px;
  letter-spacing: -1.19px;
}





/* --- СЕКЦИЯ КОНТАКТОВ --- */
.section-contact {
  background: #F0F1EF;
  padding: 80px 0 140px;
  border-radius: 75px 75px 0 0;
  overflow: hidden;
  box-sizing: border-box;
}

.contact-tabs {
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: 1.5px solid #D6DADF;
  margin-bottom: 40px;
}

.tab-btn {
  background: none;
  border: none;
  font-family: "PlusJakartaSans-SemiBold", sans-serif;
  font-size: 18px;
  color: #8C939B;
  padding: 0 0 15px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.tab-btn:hover {
  color: #193152;
}

.tab-btn.active {
  color: #193152;
  font-family: "PlusJakartaSans-Bold", sans-serif;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FFA100;
  border-radius: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: stretch;
}

/* Интерактивный блок карты */
.contact-map-wrapper {
  width: 100%;
  height: 440px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.04);
}

#contact-map {
  width: 100%;
  height: 100%;
}

/* Стили балунов карт */
.leaflet-popup-content-wrapper {
  border-radius: 12px;
  padding: 5px;
}

.map-popup-title {
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 14px;
  color: #193152;
  display: block;
  margin-bottom: 4px;
}

.map-popup-address {
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 12px;
  color: #6C7A8B;
  margin: 0;
}

/* Элементы филиалов */
.contact-branches-wrapper {
  display: flex;
  flex-direction: column;
}

.badge-branches {
  align-self: flex-start;
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 12px;
  color: #FFFFFF;
  background-color: #FFA100;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 25px;
  display: inline-block;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.branches-scroll-area {
  max-height: 350px;
  overflow-y: auto;
}

.branches-scroll-area::-webkit-scrollbar {
  width: 4px;
}

.branches-scroll-area::-webkit-scrollbar-track {
  background: #E2E6E9;
  border-radius: 10px;
}

.branches-scroll-area::-webkit-scrollbar-thumb {
  background: #FFA100;
  border-radius: 10px;
}

.branch-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #D6DADF;
}

.branch-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Ваше требование: span.branch-name */
span.branch-name {
  display: block;
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 20px;
  color: #193152;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.branch-contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.branch-link {
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 16px;
  color: #193152;
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s ease;
}

.branch-link:hover {
  opacity: 0.75;
}

.branch-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #193152;
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 13px;
  margin-bottom: 8px;
}

.branch-address {
  font-family: "PlusJakartaSans-Regular", sans-serif;
  font-size: 13px;
  color: #6C7A8B;
  margin: 0;
  line-height: 1.4;
}

.contact-divider {
  border: none;
  border-top: 1.5px solid #FFA100;
  margin: 40px 0 30px;
  opacity: 0.5;
}

.contact-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.contact-footer-text {
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #193152;
  max-width: 600px;
  margin: 0;
}

.contact-footer-text a {
  color: #FFA100;
  text-decoration: underline;
}

.contact-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-socials a {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.contact-socials a:hover {
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}





.section-feedback {
  background: linear-gradient(180deg, #FFBD00 0%, #FF9E0C 100%);
  padding: 120px 0 100px;
  border-radius: 75px 75px 0 0;
  overflow: hidden;
  margin-top: -80px;
}
.feedback-header {
  margin-bottom: 40px;
}

.feedback-title {
  font-family: "Inter-SemiBold";
  font-size: 52px;
  line-height: 57px;
  color: #fff;
  margin: 0 0 12px 0;
  letter-spacing: -1.82px;
}

.feedback-subtitle {
  font-family: "PlusJakartaSans-Medium";
  font-size: 30px;
  line-height: 32.95px;
  letter-spacing: -1.05px;
  color: #fff;
  margin: 0;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 30px;
  width: 100%;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 15px;
  color: #fff;
  margin-bottom: 12px;
}

.form-group input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  font-family: "PlusJakartaSans-Medium";
  font-size: 18px;
  color: #193152;
  padding: 10px 0 12px 0;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  height: 20px;
}

.form-group input:focus {
  border-bottom-color: #FFFFFF;
}
.form-group.form-group-full input {
    height: 60px;
}
.form-group-half {
  grid-column: span 1;
}

.form-group-full {
  grid-column: span 2;
}

.feedback-agreement {
  margin-bottom: 45px;
  width: 100%;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Круглый индикатор чекбокса */
.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  background: #fff;
  border-radius: 100%;
  background-color: transparent;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.25s ease;
}

/* Состояние при клике (активное) */
.custom-checkbox input:checked ~ .checkmark {
  background-color: #193152;
}

.custom-checkbox input:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Текст соглашения */
.agreement-text {
  font-family: "PlusJakartaSans-Medium";
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}

.agreement-text a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}
.feedback-submit-btn {
  background: linear-gradient(180deg, #FFBD00 0%, #FF9E0C 100%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #000;
  border-radius: 100px;
  padding: 16px 38px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.feedback-submit-btn span {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 18px;
  color: #193152;
}


@media (max-width: 768px) {
  .feedback-title {
    font-size: 38px;
    line-height: 44px;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .form-group-half,
  .form-group-full {
    grid-column: span 1;
  }
}


.section-features, .section-promo {
  width: 100%;
  background: #FFFFFF;
  box-sizing: border-box;
}

.section-features {
  padding: 60px 0;
}
.section-promo {
  padding: 60px 0;
}
.section-features .container {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 80px;
}

.features-main-title {
  font-family: "Inter-SemiBold";
  font-size: 50px;
  line-height: 100%;
  color: #000000;
  margin: 0;
  letter-spacing: 0;
}

.features-grid-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 25px;
  row-gap: 25px;
}

.feature-item {
  display: flex;
  flex-direction: column;
}

.feature-item-title {
  font-family: "WorkSans-SemiBold";
  font-size: 28px;
  line-height: 100%;
  color: #000000;
  margin: 0 0 20px 0;
}

.feature-item-text {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin: 0;
}

.section-promo .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}

.promo-content-col {
  display: flex;
  flex-direction: column;
}

.promo-title {
  font-family: "Inter-SemiBold";
  font-size: 50px;
  line-height: 100%;
  color: #000000;
  margin: 0 0 40px 0;
  letter-spacing: 0;
}

.promo-description {
  font-size: 16px;
  line-height: 24px;
  color: #00000099;
  margin: 0 0 40px 0;
}
.promo-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 40px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.check-icon {
  width: 32px;
  height: 32px;
  background-color: #FF9E0C;
  border-radius: 100%;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon::after {
  content: "";
  background: url(../img/check-icon.svg) no-repeat;
  width: 14px;
  height: 10px;
  background-position: center;
  display: inline-block;
}
.checklist-text {
  font-size: 16px;
  line-height: 100%;
  color: #00000099;
  margin: 0;
}
.promo-image-col {
  width: 100%;
  height: 549px;
}
.promo-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .section-features .container,
  .section-promo .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid-col,
  .promo-checklist {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .promo-image-col {
    height: 380px;
    order: -1;
  }

  .features-main-title,
  .promo-title {
    font-size: 36px;
    line-height: 42px;
  }
}
section.section-item.services {
    padding: 60px 0;
}


.section-faq {
  width: 100%;
  padding: 60px 0;
  box-sizing: border-box;
}

.faq-main-title {
  font-family: "Inter-SemiBold";
  font-size: 50px;
  line-height: 100%;
  color: #000000;
  text-align: center;
  margin: 0 0 40px 0;
  letter-spacing: -1px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}

.accordion__item {
  border: 2px solid #ADB5BD;
  border-radius: 20px;
  overflow: hidden;
  background-color: #FFFFFF;
  transition: border-color 0.3s ease;
}

.accordion__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  cursor: pointer;
  user-select: none;
}

.accordion__title-text {
  font-family: "WorkSans-SemiBold";
  font-size: 24px;
  line-height: 100%;
  color: #000000;
  padding-right: 30px;
}

.toggle-button {
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: rotate(180deg);
}

.toggle-button img {
  position: absolute;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.accordion__title.active .toggle-button {
  transform: rotate(0deg);
}
.accordion__content_faq {
  display: none;
  padding: 0 40px 40px 40px;
}

.accordion__content_faq p {
  font-size: 20px;
  line-height: 24px;
  color: #00000099;
  margin: 0;
}
@media (max-width: 768px) {
  .faq-main-title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 40px;
  }

  .accordion__title {
    padding: 24px 25px;
  }

  .accordion__title-text {
    font-size: 17px;
    line-height: 23px;
  }

  .accordion__content_faq {
    padding: 0 25px 25px 25px;
  }
}
section.section-blog.news .blog-slider {
    display: flex;
    flex-wrap: wrap;
    padding: 0 50px;
}
section.section-blog.news {
    padding: 100px 0 60px;
}
section.section-blog.news .blog-slider .blog-card {
  width: 50%;
  margin-bottom: 60px;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
}

.blog-page-numbers {
  display: flex;
  align-items: center;
  gap: 40px;
}

.blog-page-num {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 30px;
  line-height: 1;
  color: #8B97A7;
  cursor: pointer;
  transition: color 0.25s ease;
  user-select: none;
}
.blog-page-num:hover {
  color: #193152;
}

.blog-page-num.active {
  color: #193152;
  cursor: default;
}
.blog-page-prev,
.blog-page-next {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  outline: none;
}
.blog-page-prev {
  background-color: #F8F8F7;
}
.blog-page-prev:hover {
  background-color: #E08E00;
}
.blog-page-next {
  background-color: #F8F8F7;
}
.blog-page-next:hover {
  background-color: #E08E00;
}
.blog-page-prev:active,
.blog-page-next:active {
  transform: scale(0.95);
}

.section-useful-info {
  background: #FFFFFF;
  padding: 100px 0;
  box-sizing: border-box;
  width: 100%;
}
.details-badge {
  display: inline-block;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 16px;
  line-height: 19.2px;
  margin-bottom: 15px;
  color: #FF9E0C;
}

.details-badge::before {
  content: "";
  background: url(../img/vector.svg) no-repeat;
  margin-right: 5px;
  display: inline-block;
  width: 13px;
  height: 13px;
}

.details-info-section {
  margin-bottom: 50px;
}

.details-model-title {
  font-family: "Inter-SemiBold";
  font-size: 45px;
  line-height: 54px;
  color: #96979A;
  margin: 0 0 25px 0;
  letter-spacing: -1px;
}

.details-model-desc {
  font-family: "PlusJakartaSans-Medium";
  font-size: 16px;
  line-height: 27.2px;
  color: #000000;
  max-width: 680px;
  margin: 0;
}

.details-separator {
  border: none;
  border-top: 1px solid #96979A;
  margin: 60px 0;
}

.details-accordion-section {
  width: 100%;
}

.details-accordion-title {
  font-family: "Inter-SemiBold";
  font-size: 45px;
  line-height: 54px;
  color: #96979A;
  margin: 0 0 40px 0;
  letter-spacing: -1px;
}
.useful-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 781px;
}

.accordion-panel {
  background-color: #FF9E0C;
  border-radius: 12px;
  overflow: hidden;
  transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.accordion-panel-header {
  padding: 20px;
  user-select: none;
}
.accordion-panel-header span {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 18px;
  color: #FFFFFF;
}
.accordion-panel-body {
  display: none;
  padding: 0 20px 30px 20px;
}
.accordion-panel-body p {
  font-family: "PlusJakartaSans-Medium";
  font-size: 16px;
  line-height: 27.2px;
  color: #FFFFFF;
  margin: 0;
  opacity: 0.95;
}
.accordion-panel.active {
  background-color: #96979A;
}
@media (max-width: 768px) {
  .section-useful-info {
    padding: 60px 0;
  }
  .details-model-title,
  .details-accordion-title {
    font-size: 32px;
  }
  .accordion-panel-header {
    padding: 20px 22px;
  }
  .accordion-panel-body {
    padding: 0 22px 22px 22px;
  }
}
.section-checkout {
  background-color: #F8F9FA;
  padding: 100px 0;
  box-sizing: border-box;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  align-items: start;
}

.checkout-main-content {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
}

.checkout-main-title {
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 19.9px;
  color: #000000;
  margin: 0 0 30px 0;
  letter-spacing: 0%;
}

.checkout-card {
  border: 1px solid #DEDEDE;
  border-radius: 24px;
  padding: 25px 21px;
  margin-bottom: 40px;
}

.card-inner-title {
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 16px;
  color: #000000;
  margin: 0 0 35px 0;
}

/* Формы */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.form-row:last-of-type {
  margin-bottom: 0;
}

.form-row-three {
  grid-template-columns: 1fr 1fr 1fr;
}

.align-items-end {
  align-items: end;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 14px;
  color: #96979A;
  margin-bottom: 10px;
}

/* Поля ввода и селекты */
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"] {
  width: 100%;
  height: 43px;
  border: 1px solid #96979A;
  border-radius: 8px;
  padding: 0 45px 0 17px;
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 14px;
  color: #1A3152;
  background-color: #FFFFFF;
  outline: none;
  box-sizing: border-box;
}

.form-field input::placeholder {
  color: #C0C8D9;
}

/* Кастомный каплевидный селект */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-wrapper select {
  width: 100%;
  height: 43px;
  border: 1px solid #96979A;
  border-radius: 8px;
  padding: 0 45px 0 17px;
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 14px;
  color: #1A3152;
  background-color: #FFFFFF;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}

.custom-select-wrapper::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 52%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%231A3152' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Обычное текстовое поле */
.form-intro-text {
  font-family: "PlusJakartaSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color:#000000;
  margin: 0 0 15px 0;
}

/* --- СТЕППЕР (ШАГИ) --- */
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num {
  width: 28px;
  height: 28px;
  border: 1px solid #C4CDD5;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 13px;
  color: #8C93A3;
}

.step-label {
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 14px;
  color: #8C93A3;
}

.step-divider {
  height: 1px;
  background-color: #E2E8F0;
  width: 60px;
}

/* Стили активных шагов */
.step-completed .step-num {
  border-color: #96979A;
  color: #96979A;
}
.step-completed .step-label {
  color: #96979A;
  text-decoration: line-through;
}

.step-active .step-num {
  border-color: #FF9E0C;
  background-color: #FF9E0C;
  color: #FFFFFF;
}
.step-active .step-label {
  font-family: "PlusJakartaSans-Bold", sans-serif;
  color: #000000;
}

/* --- КНОПКИ --- */
.btn-orange {
  height: 41px;
  border: none;
  border-radius: 8px;
  background-color: #FF9C00;
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-orange:hover {
  background-color: #FFA100;
}

.btn-send-code {
  padding: 0 40px;
}

.btn-large {
  width: 100%;
  height: 41px;
  border-radius: 8px;
  font-size: 14px;
}

.checkout-separator {
  border: none;
  border-top: 1px solid #E5E9F0;
  margin: 40px 0;
}

/* --- СПОСОБЫ ОПЛАТЫ --- */
.payment-title {
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 16px;
  color: #1A3152;
  margin: 0 0 25px 0;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.payment-card-label {
  cursor: pointer;
  position: relative;
}

.payment-card-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-card-inner {
  border: 1.5px solid #E5E9F0;
  border-radius: 16px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

/* Активное состояние платежки */
.payment-card-label input:checked + .payment-card-inner {
  border-color: #1A3152;
  box-shadow: 0px 4px 15px rgba(26, 49, 82, 0.05);
}

.payment-img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

/* --- ОФЕРТА И СОГЛАШЕНИЕ --- */
.oferta-container {
  border: 1px solid #96979A;
  border-radius: 16px;
  padding: 13px 17px;
  margin-bottom: 30px;
}

.oferta-scroll-box {
  max-height: 180px;
  overflow-y: auto;
  padding-right: 15px;
}

.oferta-scroll-box::-webkit-scrollbar {
  width: 6px;
}

.oferta-scroll-box::-webkit-scrollbar-track {
  background: #E5E9F0;
  border-radius: 8px;
}

.oferta-scroll-box::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 8px;
}

.oferta-scroll-box h4 {
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 14px;
  line-height: 100%;
  color: #96979A;
  margin: 0 0 15px 0;
}

.oferta-scroll-box p {
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 14px;
  line-height: 100%;
  color: #96979A;
  margin: 0 0 15px 0;
}

/* Чекбокс */
.checkout-consent {
  margin-bottom: 40px;
}

.checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.checkout-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-checkmark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background-color: #E2E8F0;
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

.checkout-checkbox input:checked ~ .checkbox-checkmark {
  background-color: #FFA100;
}

.checkout-checkbox input:checked ~ .checkbox-checkmark::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid #FFFFFF;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.checkbox-label-text {
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #8C98A9;
}


/* --- ПРАВАЯ ЧАСТЬ (РЕЗУЛЬТАТЫ) --- */
.checkout-sidebar {
  position: sticky;
  top: 140px;
}

.sidebar-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
}

.sidebar-title {
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 19.5px;
  color: #000000;
  margin: 0 0 30px 0;
}

.sidebar-car-name {
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 14px;
  color: #000000;
}

.sidebar-car-img-wrapper {
  width: 100%;
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

.sidebar-car-img-wrapper img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

.sidebar-separator {
  border: none;
  border-top: 1px solid #02081A1A;
  margin: 30px 0;
}

.sidebar-separator.border-dashed {
  border-top-style: dashed;
}

/* Строки с расчетом */
.sidebar-price-rows {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-row-left {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-main-val {
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 16px;
  color: #000000;
}

.price-usd-val {
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 13px;
  color: #96979A;
}

.price-text-bold {
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 15px;
  color: #000000;
}

.price-desc {
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 14px;
  color: #96979A;
}

/* Итоговые значения */
.sidebar-total {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.total-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.total-main {
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 26px;
  color: #16358B;
}

.total-usd {
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 18px;
  color: #96979A;
}

.total-desc {
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 13px;
  color: #96979A;
}


/* --- Адаптивность --- */
@media (max-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .checkout-main-content,
  .sidebar-card {
    padding: 30px 20px;
  }

  .form-row,
  .form-row-three {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checkout-header-stepper {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  box-sizing: border-box;
  width: 100%;
  margin-top: 60px;
}

/* Элемент шага */
.stepper-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.stepper-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper-text {
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 14px;
  color: #96979A; /* Цвет неактивного текста */
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* Соединительная линия */
.stepper-connector {
  height: 1px;
  background-color: #E2E8F0;
  flex-grow: 1;
  margin: 0 30px;
  min-width: 40px;
}

/* --- Стили для АКТИВНОГО шага --- */
.stepper-item.active .stepper-text {
  font-size: 14px;
  font-family: "PlusJakartaSans-Medium", sans-serif;
  color: #02081A; /* Темный цвет для активного шага */
}

/* Адаптивность под планшеты и мобильные экраны */
@media (max-width: 992px) {
  .checkout-header-stepper {
    padding: 20px 30px;
    gap: 15px;
  }

  .stepper-connector {
    margin: 0 15px;
  }

  .stepper-text {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .checkout-header-stepper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 24px;
    padding: 25px;
  }

  .stepper-connector {
    display: none; /* Скрываем линии на мобилках, выстраивая шаги в аккуратный список */
  }
}
section.section-journey.order .heading-journey {
  font-style: normal;
  font-family: "PlusJakartaSans-Medium", sans-serif;
}
section.section-journey.order {
    height: 620px;
    padding: 140px 0 0 0;
    position: relative;
    z-index: 1;
}
section.section-checkout {
    padding: 0;
    margin-top: -376px;
    margin-bottom: -60px;
    padding-bottom: 100px;
}
section.section-checkout .container {
  position: relative;
  z-index: 2;
  max-width: 1140px;
}
.sidebar-card .flex-description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 40px 0;
}
.sidebar-card .flex-description span {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #00000099;
}
.sidebar-card .flex-description span img {
  margin-right: 8px;
}
section.section-details-car {
    margin-top: -20%;
    position: relative;
    z-index: 2;
}
.contant-details {
  width: 375px;
  background-color: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.contant-details p {
  font-family: "Inter-SemiBold";
  display: flex;
  color: #000000;
  font-size: 28px;
  line-height: 33.6px;
  margin: 0;
}
.contant-details p span {
  color: #000000;
  font-size: 16px;
}
.contant-details ul {
  padding: 24px 0;
  border-bottom: 1px solid #00000080;
}
.contant-details ul li {
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 16px;
  margin-bottom: 24px;
}
.contant-details ul li:last-child {
  margin: 0;
}
.contant-details ul li img {
  margin-right: 14px;
}
.contant-details .book-link {
  text-align: center;
  margin-top: 35px;
}
.book-link a {
  background: #FF9C00;
  border-radius: 8px;
  display: inline-block;
  font-size: 14px;
  color: #FFFFFF;
  padding: 12px 22px;
}
section.section-details-car .container {
    max-width: 1360px;
}
.car-ditails-slider ul.slick-dots {
  position: absolute;
  bottom: 0;
  left: 350px;
  display: flex;
}
.car-ditails-slider ul.slick-dots li {
  margin: 0 8px;
}
.car-ditails-slider ul.slick-dots li button {
  width: 18px;
  height: 18px;
  border-radius: 100px;
  background: #D9D9D9;
  font-size: 0;
  transition: 0.5s;
}
.car-ditails-slider ul.slick-dots li.slick-active button {
  background: #FF9E0C;
}
.car-ditails-slider {
    width: 60%;
}
.flex-block-car {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand-sorter {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #8B97A7;
  padding-bottom: 10px;
  margin-bottom: 60px;
  overflow-x: auto;
  white-space: nowrap;
}

.sorter-title {
  font-family: "WorkSans-Bold", sans-serif;
  font-size: 16px;
  color: #000000;
  margin-right: 30px;
  flex-shrink: 0;
}
.sorter-list {
  display: flex;
  gap: 24px;
}

.sorter-link {
  font-size: 16px;
  color: #5F5F5F;
  cursor: pointer;
  transition: color 0.25s ease;
}

.sorter-link:hover,
.sorter-link.active {
  color: #000000;
  font-weight: bold;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 326px 1fr;
  gap: 50px;
  align-items: start;
}


.catalog-filters {
  background-color: #FAFAFA;
  border-radius: 24px;
  padding: 40px 33px;
}

.filters-main-title {
  font-family: "WorkSans-SemiBold", sans-serif;
  font-size: 16px;
  color: #000000;
  margin: 0 0 30px 0;
  display: inline-block;
}

.filter-accordion {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.filter-group {
  border-bottom: 1px solid transparent;
}

.filter-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.filter-header span {
  font-family: "WorkSans-SemiBold", sans-serif;
  font-size: 16px;
  color: #5F5F5F;
}
.filter-body {
    overflow: hidden;
  padding-top: 18px;
  flex-direction: column;
  gap: 12px;
}
span.filter-arrow {
  margin-left: 10px;
}
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 13.5px;
  color: #4A5568;
  cursor: pointer;
}

/* Блок выбора диапазона цен */
.price-range-inputs {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.price-input-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-btn-minus,
.price-btn-plus {
  user-select: none; /* Предотвращает выделение текста кнопки синим при быстром клике */
}
.price-label {
  font-family: "WorkSans-SemiBold", sans-serif;
  font-size: 16px;
  color: #000000;
}

.price-control {
  display: flex;
  align-items: center;
  gap: 0px;
}

.price-btn-minus,
.price-btn-plus {
  background: none;
  border: none;
  font-size: 16px;
  color: #718096;
  cursor: pointer;
  padding: 0px;
  user-select: none;
}

.price-val-input {
  border: none;
  background: none;
  font-size: 16px;
  color: #1A202C;
  width: 70px;
  text-align: center;
  outline: none;
}
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
}
.spinner {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

@media (max-width: 1024px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}
.container {
    max-width: 1300px;
}
section.section-services-list.section-item {
    padding: 120px 0 0 0;
}
.lear-more-catalog {
  text-align: center;
  margin-top: 80px;
}
.lear-more-catalog a {
  background: linear-gradient(180deg, #FFBD00 0%, #FF9E0C 100%);
  padding: 15px 183px;
  font-family: "WorkSans-SemiBold";
  display: inline-block;
  font-size: 16px;
  color: #fff;
  border-radius: 16px;
}
.flex-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-extra h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin: 0;
  font-family: "PlusJakartaSans-SemiBold";
}
.price-extra p {
  font-family: "PlusJakartaSans-SemiBold";
  color: #FFFFFF;
  font-size: 24px;
  margin: 0 40px 0 0;
}
.price-extra a {
  color: #FFFFFF;
  font-size: 16px;
  font-family: "PlusJakartaSans-SemiBold";
  background: #193152;
  border-radius: 16px;
  display: inline-block;
  padding: 15px 32px;
}
.price-extra {
  display: flex;
  align-items: center;
}
/* --- Секция Дополнительных Услуг --- */
.section-extras {
  width: 100%;
  background-color: #FFFFFF;
  padding: 120px 0 60px;
  box-sizing: border-box;
}

/* Главный заголовок */
.extras-main-title {
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 40px;
  color: #000000;
  margin: 0 0 60px 0;
  letter-spacing: 0px;
}

/* Сетка карточек (3 колонки на десктопе) */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Карточка услуги */
.extra-card {
  border: 1px solid #193152; /* Тонкая серая рамка */
  border-radius: 24px; /* Мягкие скругления */
  padding: 40px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.extra-card:hover {
  border-color: #A3AEBB;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.03);
}

/* Шапка карточки */
.extra-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 25px;
}

/* Фейковый блок под иконку */
.extra-icon-placeholder {
  width: 100px;
  height: 71px;
  background-color: #D2D5DC; /* Приглушенный серый бокс с макета */
  border-radius: 4px;
  margin: 0 auto 25px;
}

/* Заголовок карточки */
.extra-title {
  font-family: "PlusJakartaSans-SemiBold", sans-serif;
  font-size: 24px;
  line-height: 120%;
  color: #000000;
  margin: 0;
  min-height: 52px; /* Позволяет заголовкам в 1 и 2 строки сохранять одинаковый ритм */
}
section.section-journey.about-page.extra {
    margin: -70px 0 0 0;
    position: relative;
}
section.section-extras.bg {
  background: #D9E2EC;
  margin-top: -5%;
  /* position: relative; */
  padding: 180px 0 120px;
}
/* Тело карточки */
.extra-card-body {
  margin-bottom: 20px;
}

.extra-desc {
  font-size: 16px;
  line-height: 100%;
  color: #00000099; /* Приглушенный серый текст */
  margin: 0 0 24px 0;
}

.extra-read-more {
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid #000000;
  line-height: 1.2;
}

.extra-read-more:hover {
  color: #FFA100;
  border-bottom-color: #FFA100;
}

/* Нижняя часть карточки (цена и кнопка) прижаты к низу */
.extra-card-footer {
  margin-top: auto; /* Железно прижимает футер к низу карточки независимо от высоты описания */
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.extra-price {
  font-size: 24px;
  color: #000000;
  line-height: 1;
}

/* Кнопка "Add" */
.btn-extra-add {
  width: 100%;
  background: linear-gradient(180deg, #FFBD00 0%, #FF9E0C 100%);
  border: none;
  border-radius: 100px;
  padding: 14px 0;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 24px;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.15s ease;
  outline: none;
}

.btn-extra-add:active {
  transform: scale(0.98);
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 1024px) {
  .extras-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .extras-grid {
    grid-template-columns: 1fr;
  }

  .extra-card {
    padding: 30px 25px;
  }

  .extra-title {
    min-height: auto;
  }
}
section.section-extras.bg .extra-card {
    border: none;
}



.input-group {
  position: relative;
  width: 100%;
}

.booking-input {
  width: 100%;
  height: 52px;
  background: #F4F6F8;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 0 40px 0 16px;
  font-family: "PlusJakartaSans-Medium", sans-serif;
  font-size: 14px;
  color: #193152;
  outline: none;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease;
}

.booking-input:focus {
  border-color: #FFA100;
  background: #FFFFFF;
}

.booking-select:invalid {
  color: #94A3B8;
}

.input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

.booking-button {
  height: 52px;
  background-color: #FFA100;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 0 28px;
  font-family: "PlusJakartaSans-Bold", sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}

.booking-button:hover {
  background-color: #E08E00;
}

.booking-button:active {
  transform: scale(0.98);
}
.native-date-input {
    width: 100%;
    height: 43px;
    border: 1px solid #96979A;
    border-radius: 8px;
    padding: 0 15px 0 17px;
    font-family: "PlusJakartaSans-Bold", sans-serif;
    font-size: 14px;
    color: #1A3152;
    background-color: #FFFFFF;
    outline: none;
    box-sizing: border-box;
}
.form-row.form-row-three input {
    padding-right: 0;
}
.error-404-section {
    width: 100%;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.error-404-content {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}

.error-badge {
    display: inline-block;
    color: #ff9800;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.error-title {
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    display: inline-block;
    width: 100%;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.error-desc {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 36px;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background-color: #ff9800;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #f1f5f9;
    color: #0f172a;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .error-title {
        font-size: 38px;
    }
    .error-desc {
        font-size: 16px;
    }
    .error-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 1200px) {
  .booking-fields {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .booking-fields {
    grid-template-columns: 1fr;
  }

  .booking-button {
    width: 100%;
  }
}
