:root {
  --primary-color: #1EE092;
  --accent-color: #FF9E04;
  --secondary-color: var(--color-white);
  --color-white: #F0E4D6;
  --color-dark-blue: #030745;
  --color-light-blue: #5F76B8;
  --color-blue: #5F76B8;
  --container-width: 1100px;
  --container-padding: 80px;
  --background-color: linear-gradient(0deg, var(--primary, #032165) 0%, #02074F 100%);
  --font-os: "Open Sans", sans-serif;
  --font-fd: "Fixel Display", sans-serif;
  --font-rb: "Roboto", sans-serif;
  --font-rw: "Raleway", sans-serif;
  --font-rb: "Rubik", sans-serif;
}

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

body {
  font-family: var(--font-os);
  background: var(--background-color);
  color: var(--color-white);
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

/* Loading Animation */
body {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

.btn-action {
  background: #1EE092;
  color: #000;
  padding: 19px 24px;
  border-radius: 90px;
  border: none;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 224, 146, 0.4);
}

.btn-phone {
  font-size: 20px;
  font-family: var(--font-fd);
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  padding: 16px 32px;
  border-radius: 60px;
  display: inline-block;
}
.btn-phone:hover {
  box-shadow: 0 8px 20px rgba(30, 224, 146, 0.4);
  transform: translateY(-5px);
}

@media (min-width: 768px) {
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
}
/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top-btn:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 158, 4, 0.4);
}

a {
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
}
a.nav-link:hover, a.nav-link.active {
  color: var(--accent-color);
}

.container-custom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}
.container-custom._hero {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-style._big-title {
  font-family: var(--font-fd);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-color);
  text-transform: uppercase;
}
.text-style._big {
  font-size: 40px;
  font-family: var(--font-fd);
  font-weight: 700;
  line-height: 1;
  color: var(--accent-color);
}
.text-style._dark-blue {
  color: var(--color-dark-blue) !important;
  font-size: 24px;
  font-family: var(--font-fd);
  font-weight: 700;
  line-height: 1;
}
.text-style._yellow {
  color: var(--accent-color) !important;
  font-size: 24px;
  font-family: var(--font-fd);
  font-weight: 700;
  line-height: 1;
}
.text-style._big-white {
  font-size: 64px;
  font-family: var(--font-fd);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  text-transform: uppercase;
}
.text-style._primary {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
}
.text-style._secondary {
  font-weight: 400;
  color: var(--color-blue);
}
.text-style._yellow {
  color: var(--accent-color);
}

.block-style {
  background: rgba(210, 218, 242, 0.2);
  padding: 24px;
  border-radius: 16px;
}
.block-style._dark {
  background: var(--color-dark-blue);
}

.table.table-bordered {
  border-collapse: collapse;
  width: 100%;
  background: transparent !important;
  border: none !important;
  border-top: 1px solid var(--color-blue) !important;
}
.table.table-bordered td {
  color: var(--color-white) !important;
  padding: 12px 16px;
  border: none !important;
  background: transparent !important;
}
.table.table-bordered td:last-child {
  color: var(--color-blue) !important;
}
.table.table-bordered tbody tr {
  background: transparent !important;
  border-bottom: 1px solid var(--color-blue) !important;
}
.table.table-bordered tbody tr:last-child {
  border-bottom: none !important;
}
.table.table-bordered:first-of-type {
  background: transparent !important;
}
.table.table-bordered:first-of-type tbody tr {
  background: transparent !important;
}
.table.table-bordered:first-of-type tbody tr:nth-child(even) {
  background: var(--color-dark-blue) !important;
}
.table.table-bordered:first-of-type tbody tr:nth-child(even) td {
  background: var(--color-dark-blue) !important;
}
.table.table-bordered:first-of-type tbody tr:nth-child(odd) {
  background: transparent !important;
}
.table.table-bordered:first-of-type tbody tr:nth-child(odd) td {
  background: transparent !important;
}
.table.table-bordered:nth-of-type(2) {
  background: transparent !important;
}
.table.table-bordered:nth-of-type(2) tbody tr {
  background: transparent !important;
}
.table.table-bordered:nth-of-type(2) tbody tr td {
  background: transparent !important;
}

.table.table-simple {
  border-collapse: collapse;
  width: 100%;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--color-blue) !important;
}
.table.table-simple td {
  color: var(--color-white) !important;
  padding: 12px 16px;
  border: none !important;
  background: transparent !important;
}
.table.table-simple td:first-child {
  padding-left: 40px;
}
.table.table-simple td:last-child {
  color: var(--color-blue) !important;
}
.table.table-simple tbody tr {
  background: transparent !important;
}
.table.table-simple tbody tr td {
  background: transparent !important;
}

.card {
  border: none !important;
  background: #ffffff !important;
  border-radius: 16px;
  overflow: hidden;
}
.card .card-header {
  background: var(--accent-color) !important;
  border: none !important;
  padding: 16px;
}
.card .card-body {
  background: transparent !important;
  border: none !important;
}

label {
  font-size: 14px;
  color: var(--color-white);
  margin-bottom: 8px;
  display: block;
}

input[type=text],
input[type=tel],
input[type=email],
textarea,
.form-control {
  background: var(--color-light-blue) !important;
  border: none !important;
  color: var(--color-white) !important;
  padding: 12px 16px;
  border-radius: 8px;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
textarea::placeholder,
.form-control::placeholder {
  color: var(--color-dark-blue) !important;
  opacity: 1;
}
input[type=text]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
  color: var(--color-dark-blue) !important;
}
input[type=text]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
textarea::-ms-input-placeholder,
.form-control::-ms-input-placeholder {
  color: var(--color-dark-blue) !important;
}

.invalid-feedback {
  color: var(--color-light-blue) !important;
  font-size: 14px;
}

.carousel .carousel-indicators button {
  background-color: var(--color-blue);
  opacity: 0.5;
}
.carousel .carousel-indicators button.active {
  opacity: 1;
}
.carousel .carousel-control-prev-icon,
.carousel .carousel-control-next-icon {
  background-color: var(--color-blue);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.carousel .carousel-item {
  padding: 40px 0;
}

.ratio iframe {
  border-radius: 16px;
}

.step-line {
  position: absolute;
  left: 24px;
  top: 50px;
  bottom: 50px;
  width: 2px;
  background: var(--accent-color);
  margin-left: -60px;
  z-index: 0;
}

.step-block {
  position: relative;
  margin-bottom: 1.5rem;
  z-index: 1;
}
.step-block:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--color-dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-left: -60px;
  margin-top: 10px;
  z-index: 2;
}

.z-index-1 {
  position: relative;
  z-index: 1;
}

.header {
  position: relative;
  z-index: 100;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--color-white);
  border-radius: 3px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-dark-blue);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.mobile-menu-close:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.mobile-nav .mobile-nav-link {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px 20px;
}
.mobile-nav .mobile-nav-link:hover, .mobile-nav .mobile-nav-link.active {
  color: var(--accent-color);
  transform: scale(1.1);
}

.desktop-nav {
  display: flex;
}

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }
  .container-custom._hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .desktop-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .logo {
    width: 100px !important;
  }
  .text-style._big-title {
    font-size: 36px;
    line-height: 1.1;
  }
  .text-style._big {
    font-size: 28px;
  }
  .text-style._big-white {
    font-size: 36px;
  }
  .text-style._primary {
    font-size: 16px;
  }
  .scroll-top-btn {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
  }
  .btn-action {
    padding: 15px 20px;
    font-size: 14px;
  }
  .btn-phone {
    font-size: 18px;
    padding: 12px 24px;
  }
  .step-line {
    display: none;
  }
  .step-number {
    position: relative;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 15px;
  }
  .step-block {
    padding-left: 0;
  }
  .table.table-simple td:first-child {
    padding-left: 16px;
  }
  .card {
    width: 100% !important;
  }
}
@media (max-width: 480px) {
  :root {
    --container-padding: 15px;
  }
  .text-style._big-title {
    font-size: 28px;
  }
  .text-style._big {
    font-size: 24px;
  }
  .text-style._big-white {
    font-size: 28px;
  }
  .btn-action {
    padding: 12px 18px;
    font-size: 12px;
  }
  .btn-phone {
    font-size: 16px;
    padding: 10px 20px;
  }
  .hero-car-img {
    display: none;
  }
  .hero-description {
    width: 100% !important;
  }
  .features-row {
    flex-direction: column;
  }
  .steps-container {
    width: 100% !important;
  }
  .card-profit {
    width: 100% !important;
  }
  .trust-section {
    width: 100%;
  }
  .trust-row {
    flex-direction: column;
  }
  .benefits-section {
    width: 100%;
  }
  .benefits-row {
    flex-direction: column;
  }
  .form-container {
    overflow: hidden;
  }
  .form-car-img {
    display: none;
  }
  .form-description {
    width: 100% !important;
  }
  .form-row {
    flex-direction: column;
  }
  .form-submit {
    width: 100% !important;
  }
  .car-gallery {
    flex-direction: column;
  }
  .taxi-rent-row {
    flex-direction: column;
  }
  .services-list {
    flex-direction: column;
  }
  .services-row {
    flex-direction: column;
  }
  .why-us-row {
    flex-direction: column;
  }
  .footer {
    padding: 60px 0 !important;
  }
  .footer-content {
    text-align: center;
  }
}
#phoneOrderModal {
  backdrop-filter: blur(3px);
}
#phoneOrderModal .modal-content {
  background: var(--color-dark-blue);
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
#phoneOrderModal .modal-header {
  border-bottom: none;
}
#phoneOrderModal .modal-header .modal-title {
  color: var(--accent-color);
}
#phoneOrderModal .modal-header .btn-close {
  filter: invert(1);
}
#phoneOrderModal .modal-body .form-label {
  color: var(--color-white);
  font-weight: 600;
}
#phoneOrderModal .modal-body .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(30, 224, 146, 0.3);
  color: var(--color-white);
  transition: all 0.3s ease;
}
#phoneOrderModal .modal-body .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 224, 146, 0.2);
  color: var(--color-white);
}
#phoneOrderModal .modal-body .form-control::placeholder {
  color: rgba(240, 228, 214, 0.5);
}
#phoneOrderModal .modal-body .form-control.is-invalid {
  border-color: #ff4444;
}
#phoneOrderModal .modal-body .form-control.is-valid {
  border-color: var(--primary-color);
}
#phoneOrderModal .modal-body .alert {
  border-radius: 8px;
}
#phoneOrderModal .modal-body .alert.alert-success {
  background: rgba(30, 224, 146, 0.2);
  border: 1px solid var(--primary-color);
  color: var(--color-white);
}
#phoneOrderModal .modal-body .alert.alert-danger {
  background: rgba(255, 68, 68, 0.2);
  border: 1px solid #ff4444;
  color: var(--color-white);
}

/*# sourceMappingURL=styles.css.map */
