html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "DM Sans", sans-serif;
  background-color: #ffffff;
  overflow-x: clip;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
}

.container,
.container-2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.land-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  width: auto;
  max-width: 80%;
  z-index: 1;
  object-fit: cover;
}

.header {
  height: 100px;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  width: 100%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #050b20;
}

.logo i {
  color: #050b20;
}

.navbar-center {
  display: flex;
  gap: 30px;
}

.nav-item {
  text-decoration: none;
  color: #050b20;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-item:hover {
  color: #2997ff;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sign-in {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #050b20;
  font-weight: 500;
}

.sign-in a {
  text-decoration: none;
  color: inherit;
}

.sign-in:hover {
  color: #2997ff;
}

.btn-primary {
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid #050b20;
  background-color: transparent;
  color: #050b20;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #050b20;
  color: #ffffff;
}

.burger-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #050b20;
}

.floating-burger {
  display: none;
}

.hero-content {
  margin-top: 100px;
  max-width: 700px;
}

.hero-sub {
  font-size: 20px;
  font-weight: 200;
}

.hero-title {
  font-size: 32px;
  margin-top: 30px;
}

.hero-actions {
  margin-top: 20px;
}

.view {
  padding: 12px 24px;
  border-radius: 15px;
  border: none;
  color: #fff;
  background-color: #405ff2;
  font-size: 15px;
  font-weight: 100;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(64, 95, 242, 0.12);
  transition: all 0.2s ease;
}

.view:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(64, 95, 242, 0.18);
  filter: brightness(1.03);
}

.contact {
  padding: 12px 24px;
  margin-left: 10px;
  border-radius: 15px;
  border: 1px solid #050b20;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact:hover {
  background-color: #050b20;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(5, 11, 32, 0.12);
}

.browse-model {
  margin-top: 40px;
}

.models {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
}

.models-item {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #050b20;
  font-weight: 600;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.models-item:hover {
  background-color: #eef1fb;
  color: #2997ff;
  border-color: #2997ff;
  transform: translateY(-2px);
}

.main-section {
  margin-top: 150px;
  width: 100%;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-show {
  color: #050b20;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.main-show:hover {
  text-decoration: underline;
  color: #2997ff;
}

.main-brands {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  width: 100%;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.brands-item {
  color: #050b20;
  font-weight: 600;
  margin-top: 10px;
}

.services-title {
  font-size: 30px;
  margin-top: 60px;
}

.services-cards {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #e9e9e9;
  padding: 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.service-title {
  font-weight: 500;
}

.service-button {
  margin-top: auto;
  padding: 12px 24px;
  border-radius: 12px;
  color: #2997ff;
  background-color: transparent;
  border: 1px solid #2997ff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-button:hover {
  background-color: #050b20;
  color: #ffffff;
  border-color: #050b20;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(5, 11, 32, 0.12);
}

.advices-section {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.advise-photo {
  flex: 1;
}

.advise-photo img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.advise-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.advise-header h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #050b20;
  margin-bottom: 15px;
}

.advise-sub-text {
  color: #86868b;
  line-height: 1.6;
  font-size: 16px;
}

.advise-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-box {
  min-width: 25px;
  height: 25px;
  background-color: #eef1fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2997ff;
  font-size: 12px;
}

.list-item p {
  color: #050b20;
  font-weight: 500;
  font-size: 15px;
  margin: 0;
}

.advise-btn {
  padding: 14px 28px;
  background-color: #2997ff;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(41, 151, 255, 0.3);
}

.advise-btn:hover {
  background-color: #050b20;
  transform: translateY(-2px);
}

.amount-reviews {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.number-wrapper {
  display: flex;
  align-items: baseline;
  font-weight: 700;
  color: #050b20;
}

.reviews-title {
  font-size: 38px;
  line-height: 1;
}

.reviews-sub {
  color: #86868b;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 5px;
}

.rev {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.header-cards {
  margin-top: 100px;
}

.view-all a {
  text-decoration: none;
  color: #050b20;
  transition: color 0.3s;
  font-weight: 500;
}

.view-all a:hover {
  color: #2997ff;
}

.menu-cars {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.menu-cars a {
  text-decoration: none;
  color: #86868b;
  font-weight: 500;
}

.menu-cars a:hover {
  color: #050b20;
}

.jeep-cards {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-top: 30px;
}

.jeep-card {
  border: 1px solid #e9e9e9;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    opacity 0.4s ease; /* Добавили opacity */
  cursor: pointer;
  opacity: 1; /* По умолчанию карточка видима */
}

.jeep-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.jeep-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.jeep-card-txt {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jeep-card-txt h3 {
  font-size: 18px;
  color: #050b20;
}

.jeep-card-txt p {
  font-size: 14px;
  color: #86868b;
  line-height: 1.5;
  margin: 0;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 20px;
}

.icons-feat {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 20px;
}

.icons-feat p {
  font-size: 14px;
  color: #050b20;
  font-weight: 500;
  margin: 0;
}

.miles,
.petrol,
.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #86868b;
}

.card-divider {
  width: 90%;
  height: 1px;
  background-color: #e9e9e9;
  margin: 0 auto;
  margin-bottom: 20px;
}

.price-det {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 20px;
  align-items: center;
}

.price-det p {
  font-size: 20px;
  color: #050b20;
  font-weight: bold;
  margin: 0;
}

.price-det a {
  font-size: 14px;
  text-decoration: none;
  color: #2997ff;
  font-weight: 500;
}

.image-wrapper {
  position: relative;
}

.image-wrapper i {
  position: absolute;
  top: 15px;
  right: 20px;
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  color: #050b20;
  transition: color 0.3s;
}

.image-wrapper i:hover {
  color: #2997ff;
}

.ford-span,
.glc-span {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 15px;
  font-weight: 500;
}

.ford-span {
  background-color: #3d923a;
}

.glc-span {
  background-color: #405ff2;
}

.search-section-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 100px;
  padding: 0 30px;
}

.search-section {
  background-color: #050b20;
  color: #ffffff;
  border-radius: 30px;
  width: 100%;
  max-width: 1400px;
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.search-txt-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.search-txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.search-title {
  font-size: 36px;
  line-height: 1.2;
}

.search-sub {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.8;
}

.search-buttons {
  display: flex;
  gap: 15px;
}

.search-cars,
.search-vans {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.search-cars {
  background-color: #2997ff;
  color: white;
}

.search-vans {
  background-color: #222b42;
  color: white;
}

.search-cars:hover,
.search-vans:hover {
  transform: translateY(-4px);
  background-color: #ffffff;
  color: #050b20;
}

.browse-types {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.browse-txt p {
  color: #aeb1b8;
  font-size: 16px;
  margin: 0;
}

.browse-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.browse-btns-item {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.browse-btns-item:hover {
  background-color: #ffffff;
  color: #050b20;
  border-color: #ffffff;
}

.choose-feaut {
  margin-top: 100px;
  margin-bottom: 100px;
}

.choose-header {
  text-align: center;
  margin-bottom: 50px;
}

.choose-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #050b20;
}

.feaut-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.box-1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.box-1 h3 {
  font-size: 20px;
  font-weight: 700;
  color: #050b20;
}

.box-1 img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.box-1 p {
  font-size: 15px;
  color: #86868b;
  line-height: 1.6;
  max-width: 250px;
}

.customers {
  margin-bottom: 100px;
  margin-top: 100px;
}

.customers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.customers-header p {
  font-size: 15px;
  color: #86868b;
}

.customers-header h2 {
  font-size: 36px;
  color: #050b20;
  font-weight: 700;
}

.customer-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.customer-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  flex: 1;
  min-width: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.customer-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.customer-card-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #050b20;
}

.customer-card-header i {
  font-size: 40px;
  color: #050b20;
}

.customer-review p {
  font-size: 16px;
  color: #5d5d66;
  line-height: 1.6;
  margin-bottom: 30px;
}

.customer-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.customer-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #050b20;
  margin-bottom: 4px;
}

.profile-info p {
  font-size: 14px;
  color: #86868b;
}

.team-section {
  margin-top: 100px;
  margin-bottom: 100px;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.team-header h3 {
  font-size: 36px;
  font-weight: 700;
  color: #050b20;
}

.team-header a {
  text-decoration: none;
  color: #050b20;
  font-weight: 500;
  transition: color 0.3s;
}

.team-header a:hover {
  color: #2997ff;
}

.team-grid {
  display: flex;
  gap: 30px;
}

.team-card {
  flex: 1;
  min-width: 0;
}

.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}

.team-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #050b20;
  margin-bottom: 8px;
}

.team-info p {
  font-size: 15px;
  color: #5d5d66;
}

.highlight-blue {
  display: inline-block;
  background-color: #eef1fb;
  color: #2997ff !important;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}

.map-section {
  width: 100%;
  background-image: url("assets/map.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  margin-top: 100px;
}

.get-in {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  max-width: 400px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.get-in h3 {
  font-size: 30px;
  font-weight: 700;
  color: #050b20;
  margin: 0;
}

.contact-desc {
  color: #86868b;
  font-size: 15px;
  margin-top: -10px;
}

.phone-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  border: 1px solid #e9e9e9;
  border-radius: 50px;
  width: fit-content;
  font-weight: 600;
  color: #050b20;
  margin-bottom: 10px;
}

.phone-box i {
  font-size: 20px;
  color: #2997ff;
}

.schedule p {
  font-size: 15px;
  color: #050b20;
  margin-bottom: 10px;
  font-weight: 500;
}

.schedule .closed {
  color: #d93025;
  font-weight: 700;
}

.footer-section {
  background-color: #050b20;
  padding-top: 80px;
}

.footer-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.footer-header h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
}

.footer-header p {
  color: #aeb1b8;
  font-weight: 300;
}

.header-form {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 50px;
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
}

.header-form input {
  outline: none;
  border: none;
  background-color: transparent;
  flex: 1;
  padding: 10px 20px;
  font-size: 16px;
  color: #050b20;
  font-family: inherit;
}

.header-form input::placeholder {
  color: #86868b;
}

.form-btn {
  background-color: #2997ff;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.form-btn:hover {
  background-color: #1e75d1;
}

.footer-body {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 60px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links h2 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.footer-links a {
  text-decoration: none;
  color: #aeb1b8;
  font-weight: 400;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #2997ff;
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-btn {
  background-color: #1b2138;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  border-radius: 12px;
  color: #ffffff !important;
  transition:
    transform 0.2s ease,
    background-color 0.2s;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.store-btn:hover {
  background-color: #262d47;
  transform: translateY(-2px);
}

.store-btn i {
  font-size: 26px;
}

.btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-text span {
  font-size: 10px;
  font-weight: 300;
  opacity: 0.7;
}

.btn-text b {
  font-size: 14px;
  font-weight: 600;
}

.connect-box {
  margin-top: 20px;
}

.socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.socials a {
  background-color: #1b2138;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.socials a i {
  font-size: 16px;
  color: #ffffff;
  transition: color 0.3s;
}

.socials a:hover i {
  color: #2997ff;
}

@media (max-width: 992px) {
  .container,
  .container-2 {
    padding: 0 20px;
  }

  .header {
    padding: 15px 0;
    height: auto;
  }

  .header.scrolled {
    height: auto;
    padding: 10px 0;
  }

  .sign-in,
  .navbar-actions .btn-primary {
    display: none;
  }

  .burger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
  }

  .burger-menu.active {
    position: fixed;
    top: 25px;
    right: 20px;
  }

  .navbar-center {
    position: fixed;
    top: 0;
    right: -100%;
    width: 220px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .navbar-center.open {
    right: 0;
  }

  .nav-item {
    font-size: 18px;
    font-weight: 600;
  }

  .floating-burger {
    display: flex;
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #405ff2;
    color: #ffffff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(64, 95, 242, 0.4);
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px) scale(0.9);
    transition: all 0.3s ease;
  }

  .floating-burger.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
  }

  .floating-burger.active {
    background-color: #050b20;
    box-shadow: 0 10px 25px rgba(5, 11, 32, 0.3);
  }

  .hero-title h1,
  .advise-header h3,
  .choose-header h2,
  .customers-header h2,
  .team-header h3,
  .search-title {
    font-size: 28px !important;
    line-height: 1.3;
  }

  .hero-content {
    margin-top: 40px;
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .view,
  .contact {
    width: 100%;
    margin: 0;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .land-image {
    display: none;
  }

  .models {
    overflow-x: auto;
    padding-bottom: 15px;
    justify-content: flex-start;
  }

  .models-item {
    flex-shrink: 0;
  }

  .main-brands {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .main-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .services-cards,
  .jeep-cards,
  .customer-cards,
  .team-grid {
    flex-direction: column;
  }

  .feaut-box {
    flex-direction: column;
    gap: 40px;
  }

  .box-1 {
    align-items: flex-start;
    text-align: left;
  }

  .box-1 p {
    max-width: 100%;
  }

  .advices-section {
    flex-direction: column;
    gap: 30px;
    margin: 60px 0;
  }

  .advise-photo {
    width: 100%;
  }

  .advise-photo img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .advise-btn {
    width: 100%;
  }

  .amount-reviews {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }

  .rev {
    align-items: flex-start;
  }

  .reviews-title {
    font-size: 26px !important;
  }

  .reviews-sub {
    font-size: 13px;
  }

  .search-section {
    padding: 40px 20px;
  }

  .search-txt-btn {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .search-buttons {
    width: 100%;
    flex-direction: column;
    gap: 15px;
    margin-right: 0;
  }

  .search-cars,
  .search-vans {
    width: 100%;
  }

  .browse-btns {
    justify-content: flex-start;
  }

  .customers-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .team-header {
    flex-direction: row;
    align-items: center;
  }

  .map-section {
    padding: 50px 0;
  }

  .get-in {
    margin: 0;
    max-width: 100%;
    width: 100%;
  }

  .footer-body {
    flex-direction: column;
    gap: 30px;
  }

  .header-form {
    flex-direction: column;
    border-radius: 20px;
    padding: 15px;
    background-color: transparent;
    box-shadow: none;
  }

  .header-form input {
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 10px;
    padding: 15px;
  }

  .form-btn {
    width: 100%;
    border-radius: 12px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    padding: 5px 0;
  }
}

.swiper {
  width: 100%;
  padding-bottom: 60px !important;
  margin-top: 50px;
}

.swiper-slide {
  height: auto;
  display: flex;
}

.customer-card {
  width: 100%;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.swiper-pagination-bullet-active {
  background-color: #2997ff !important;
}

.jeep-card.hidden {
  display: none !important;
  opacity: 0;
}

.browse-btns-item.active {
  background-color: #fff;
  color: #050b20;
  border-color: #ffffff;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(5, 11, 32, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: #86868b;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #d93025;
}

.calc-title {
  font-size: 28px;
  color: #050b20;
  margin-bottom: 25px;
  font-weight: 700;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.calc-group label {
  font-weight: 500;
  color: #050b20;
}

#days-output {
  color: #2997ff;
  font-weight: 700;
}

.calc-select {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #e9e9e9;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  cursor: pointer;
}

.calc-range {
  margin-top: 30px;
  padding-top: 20px;
  border: 1px solid #e9e9e9;
}

.calc-total {
  font-size: 20px;
  font-weight: 500;
  color: #050b20;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#total-price {
  font-size: 32px;
  font-weight: 700;
  color: #2997ff;
}
