img, h1, h2, h3, h4, h5, h6, a, span, li, button{
  user-select: none;
  -webkit-user-drag: none;
  outline: none; 
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  overflow-y: scroll;
  overflow-x: hidden; 
  font-family: 'Manrope', sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 50px
}

.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-switcher .current {
  background: none;
  border: none;
  cursor: pointer;
}

.lang-switcher .current img {
  width: 32px;
  height: 32px;
  display: block;
}

.lang-switcher .options {
  position: absolute;
  top: 110%;
  right: 0;
  margin: 0;
  padding: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.2rem;
  padding-left: 0.5rem;
  padding-right: 1.8rem;
  list-style: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.55);
  border-radius: 0.5rem;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0.3s;
  pointer-events: none;
}

.lang-switcher[aria-expanded="true"] .options {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s;
  pointer-events: auto;
}

.lang-switcher .options li {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem 0.8rem 0.8rem;
  cursor: pointer;
  white-space: nowrap;
}

.lang-switcher .options li + li {
  margin-top: 0.25rem;
}

.lang-switcher .options li img {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
}

body, h1, h2, h3, h4, h5, h6, p, a, span, li, button {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 700    !important;
}

body {
  margin: 0;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
  padding-top: 100px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  position: fixed;
  background-color: #f9f9f9;
  box-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.1);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.container {
  width: 100%;
  max-width: 95rem;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 4.5rem; 
  user-select: none;
  -webkit-user-drag: none; 
  cursor: pointer;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 5rem;
  margin: 0;
  padding-top: 0.5rem;
  padding-right: 12rem;
}

.nav-list a {
  position: relative; 
  font-size: clamp(1.3rem, 1.5vw, 1.25rem);
  color: #0a202e;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
  padding-bottom: .2rem;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0; 
  height: 3px;
  background-color: currentColor;
  transition: width .3s ease-in-out;
}

.nav-list a:hover {
  color: #0a202e;
}

.nav-list a:hover::after {
  left: 0;
  width: 100%;
}

.btn-order {
  position: relative;
  overflow: hidden;
  margin-left: -16.5rem;
  font-size: 1.3rem;
  padding: 1rem 1.5rem;
  background-color: #0a202e;
  color: #f9f9f9;
  border-radius: .75rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color .2s ease-in-out;
  box-shadow: none;/
}

.btn-order::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 100%;
  transform: translate(-25%, -25%);
  transition: width .6s ease, height .6s ease;
}

.btn-order:hover {
  background-color: #0a202e;
  box-shadow: none;
}

.btn-order:hover::before {
  width: 200%;
  height: 200%;
}

.hero {
  position: relative;
  width: 100%;
  padding-top: 35%;
  background: url('img/hero.jpg') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.75);
  z-index: 1;
}

.hero__centerer {
  position: absolute;
  inset: 0;
  margin-right: 30%;
  display: flex;
  justify-content: center;
  align-items: center; 
  z-index: 2;
}

.hero__content {
  max-width: 600px;
  padding: 0 1.5rem; 
  color: #fff;
}

.hero-title {
  margin: 0 0 4rem;
  font-size: 5rem;
  line-height: 1.1;
  white-space: pre;      
  overflow-wrap: normal;
}

.hero-title__line {
  display: block;
  white-space: nowrap; 
}

.hero__content p {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.btn-hero {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: #f3f3f3;
  color: #0a202e;
  border-radius: .75rem;
  font-size: 1.35rem;
  text-decoration: none;
  font-weight: 600;
  transition: 
    background-color 0.2s ease-in-out,
    color            0.2s ease-in-out;
}


.btn-hero:hover {
  background-color: #173c66;
  color: #f3f3f3;
}

.services .container {
  display: block;
  margin-top: -2rem; 
  padding-bottom: 6rem;
}

.services__title {
  font-size: clamp(2rem, 5vw, 5rem);
  text-align: center;
  color: #0a202e;
}

.services__list {
  display: flex;
  justify-content: center;
  gap: 18rem;
  flex-wrap: wrap;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 15.9rem;
  text-align: center;
}

.service__icon {
  height: 8rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
}

.service__name {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-size: 1.5rem;
  color: #0a202e;
  font-weight: 500;
}

.booking-section {
  background-color: #f3f3f3;
  padding: 2rem 0;
}

.booking-section .container {
  display: block; 
}

.booking-section h2 {
  font-size: clamp(2rem, 5vw, 5rem);
  color: #0a202e;
  margin: 0 0 2rem;
  text-align: center;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.booking-form .form-row {
  display: flex;
  gap: 1rem;
}

.booking-form .form-row input,
.booking-form .form-row textarea {
  flex: 1;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-family: 'Manrope', sans-serif;
}

.booking-form .form-row textarea {
  resize: vertical;
  font-family: 'Manrope', sans-serif;
}

.booking-form .btn-order {
  margin: 1rem 0 0 0;
  width: 100%;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.booking-feedback-text {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #666;
  text-align: center;
}

.autopark{
    padding-bottom: 2rem;
    margin-top: -2rem;
}

.autopark .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.autopark__fleet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  justify-content: center;
  padding-top: 3rem;
}

.autopark__car {
  border-radius: 1.1rem;
  max-width: 690px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.autopark__gallery img {
  width: 100%;
  height: auto;
  border-radius: .75rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
  transition: transform .3s ease;
  cursor: pointer;
}

.autopark__title {
  font-size: clamp(2rem, 5vw, 5rem);
  color: #0a202e;
  margin-bottom: 0.5rem;
}

.autopark__desc {
  max-width: 600px;
  width: 100%;
  margin: 1.8rem auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

#lightgallery-fleet a:not(:first-of-type) {
  display: none !important;
}

.autopark__gallery {
  width: 100%;
  max-width: 800px;
}
.autopark__gallery img {
  width: 100%;
  height: auto;
  border-radius: .75rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
  transition: transform .3s ease;
}
.autopark__gallery img:hover {
  transform: scale(1.02);
  cursor: pointer;
}

.lg-backdrop {
  background: rgba(0, 0, 0, 0.85) !important;
}
.lg-thumb-outer .lg-thumb-item {
  border-radius: 0.5rem;
}

.about-us {
  background: #f3f3f3;
  padding: 2rem;
  padding-bottom: 3rem;
}

.about-us .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; 
}

.about-us__title {
  font-size: clamp(2rem, 5vw, 5rem);
  color: #0a202e;
  margin: 0 0 1rem;
}

.about-us__text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
}

.site-footer {
  background-color: #071720;
  color: #fff;
  font-size: 0.9rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__col {
  flex: 1;
}

.footer__col--left {
  text-align: left;
}

.footer__copy {
  margin: 0;
}

.footer__col--center {
  text-align: center; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__logo {
  cursor: default;
  pointer-events: none;
}

.footer__logo img {
  height: 8rem;
}

.footer__col--right {
  text-align: right;
  line-height: 0.7;
  font-size: 1.1rem;
}

.lang-switcher .current {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: row;
}

.lang-code-current {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a202e;
  text-transform: uppercase;
  text-align: center;
}

.footer__messengers {
  padding-top: 0.25rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-left: 21.5rem;
}

.messenger-icon {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  
  .footer__messengers {
    padding-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-left: 0rem;
  }

  .lang-code-current {
    font-size: 1.1rem;
    text-align: center;
    margin-right: -1rem;
    padding-left: 0.5rem;
  }
  
  body {
    overflow-x: hidden;
    padding-top: 85px;
    margin: 0;
  }
  .site-header .container {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .logo img {
    height: 2rem;
    margin: 0;
  }
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    margin: 0;
  }
  .nav-item:not(.lang-item) {
    display: none;
  }
  .lang-item {
    order: 1;
  }
  .lang-switcher .current img {
    width: 32px;
    height: 32px;
    margin: 1rem;
  }
  .btn-order {
    font-size: 1rem;
    padding: 1rem 0.1rem;
    margin-left: 1rem;
    order: 2;
    margin-top: 0;
    text-align: center;
  }
  .hero {
    padding-top: 35%;
    margin: 0;
    padding: 7rem;
  }
  .hero__centerer {
    margin: 0;
    padding: 2rem 1rem;
    display: flex;
  }
  .hero__content {
    margin: 0 auto;
    padding: 0;
  }
  .hero-title {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    text-align: left;
    margin-bottom: 1rem;
  }
  .hero__content p {
    font-size: 0.9rem;
    text-align: left;
    margin: 0;
  }
  .btn-hero {
    display: none;
  }
  .services .container {
    padding: 1.5rem 1rem;
    text-align: center;
    margin: 0 auto;
  }
  .services__list {
    flex-direction: column;
    align-items: center;
    gap: 0rem;
    padding: 0;
    margin: 0;
  }
  .service {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 1rem;
  }
  .service__icon {
    height: 8rem;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
  .service__name {
    font-size: 1.2rem;
  }
  .autopark{
    padding-bottom: 6rem;
    margin-top: 1rem;
}
  .autopark .container {
    text-align: center;
    padding: 0 1rem;
    margin: 0 auto;
    margin-bottom: -5.5rem;
  }
  .autopark__fleet-list {
    flex-direction: column;
    gap: 0rem;
    align-items: center;
  }
    .autopark__title {
    margin-bottom: -1rem;
    margin-top: 1rem;
  }
  .autopark__car {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1.2rem;
  }
  .autopark__desc {
    font-size: 1rem;
    text-align: center;
    margin: 0 auto;
  }
  .autopark__gallery {
    text-align: center;
    margin: 0 auto;
  }
  .autopark__gallery img {
    margin: 0 auto;
  }
  .about-us .container {
    text-align: center;
    padding: 1rem 1rem;
    margin: 0 auto;
    margin-bottom: -2rem;
  }
  .about-us__text {
    font-size: 1rem;
    text-align: center;
    margin: 0 auto;
  }
  .booking-section .container {
    text-align: center;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
  .booking-form {
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .booking-form .form-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .booking-form .form-row input,
  .booking-form .form-row textarea {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .booking-form .btn-order {
    width: 100%;
    max-width: 300px;
    margin: 1rem auto;
    margin-bottom: -1rem;
  }
  .booking-feedback-text {
    text-align: center;
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    margin: 0 auto;
  }
  .footer__col--left,
  .footer__col--center,
  .footer__col--right {
    flex: none;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }
  .footer__col--right {
    text-align: center;
  }
  .footer__logo img {
    padding-top: 1rem;
    margin: 0 auto;
  }
}