@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Oswald:wght@200..700&display=swap");
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

:root {
  --themeyellow: #f0db71;
  --black: #000000;
  --deepyellow: #cea940;
  --white: #ffffff;
  --bg-light: #f9f9f9;
  --text-light: #262626;
  --text-dark: #222222;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--themeyellow);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#about,
#service,
#vehicle {
  scroll-margin-top: 100px;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropbtn {
  color: var(--black);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}
.dropdown .dropbtn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.dropdown .dropbtn:hover {
  color: var(--themeyellow);
}
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px) scale(1);
}
.dropdown:hover .dropbtn i {
  transform: rotate(180deg);
}

/* Dropdown container */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 225px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0) scale(0.95);
  transition: all 0.35s ease;
  z-index: 100;
}
.dropdown-content a {
  position: relative;
  color: var(--black) !important;
  padding: 8px 20px;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: background 0.3s ease, padding-left 0.3s ease, color 0.3s ease;
}
.dropdown-content a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 0;
  background: var(--themeyellow);
  transform: translateY(-50%);
  transition: height 0.3s ease;
}
.dropdown-content a:hover {
  background: rgba(255, 206, 33, 0.15);
  padding-left: 26px;
  color: var(--black);
}
.dropdown-content a:hover::before {
  height: 60%;
}

ul {
  padding-left: 0px;
  list-style: none;
}

a {
  text-decoration: none;
}

.commonbtn,
.borderbtn {
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--themeyellow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background 0.3s ease;
}

/* =======================
   COMMON BUTTON
======================= */
.commonbtn {
  color: #fff;
  border-radius: 30px;
  border: unset;
}

.commonbtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.commonbtn:hover::before {
  transform: translateX(100%);
}

.commonbtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* =======================
   BORDER BUTTON
======================= */
.borderbtn {
  background: transparent;
  border: 1px solid var(--themeyellow);
  color: var(--themeyellow);
  font-weight: 600;
}

.borderbtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--themeyellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.borderbtn:hover::before {
  transform: scaleX(1);
}

.borderbtn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 45px;
}

.section-sub-title {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.5019607843);
  font-weight: 600;
}

header {
  /* padding: 5px 0; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background: transparent;
  transform: translateY(0%);
  transition: transform 0.3s ease, background 0.35s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
header .logo {
  width: 140px;
  transition: width 0.3s ease;
}
header .logo img {
  width: 100%;
  padding: 10px;
}
header nav .nav-bottom .nav-menu li {
  padding: 0 15px;
}
header nav .nav-bottom .nav-menu li a {
  text-transform: capitalize;
  color: var(--white);
  transition: 0.2s;
  position: relative;
  text-decoration: none;
  font-size: 14px;
}
header nav .nav-bottom .nav-menu li a:is(:hover, :focus, .active) {
  color: var(--themeyellow);
}
header .bargar-menu {
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
}
header .headerbtn {
  background: rgba(255, 255, 255, 0.2);
  border: unset;
  border: 1px solid var(--themeyellow);
}

/* When scrolling */
header.fixedheader {
  transform: translateY(0);
  background: var(--black);
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
header.fixedheader .logo img {
  width: 120px;
}

#sidebar {
  width: 350px;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: -350px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  z-index: 1000;
}
#sidebar .headerbtn {
  background: rgba(255, 255, 255, 0.2);
  border: unset;
  border: 1px solid var(--themeyellow);
  color: var(--deepyellow);
}
#sidebar.active {
  right: 0;
}
#sidebar .sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px;
  background: var(--black);
}
#sidebar .sidebar-header .sidebar-logo {
  height: 80px;
}
#sidebar .sidebar-header .close-btn {
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--white);
}
#sidebar .sidebar-content {
  padding: 15px;
  flex: 1;
  overflow-y: auto;
}
#sidebar .sidebar-content .description {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #555;
}
#sidebar .sidebar-content ul li {
  width: 100%;
  margin-bottom: 15px;
}
#sidebar .sidebar-content ul li a {
  font-weight: 400;
}
#sidebar .sidebar-content .contact-info h5 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
#sidebar .sidebar-content .contact-info p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}
#sidebar .sidebar-content .contact-info p i {
  margin-right: 8px;
  color: #555;
}
#sidebar .sidebar-content .map {
  margin: 20px 0;
}
#sidebar .sidebar-content .map iframe {
  border-radius: 12px;
  width: 100%;
}
#sidebar .sidebar-content .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}
#sidebar .sidebar-content .social-icons a {
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
#sidebar .sidebar-content .social-icons a:hover {
  color: #f0ad4e;
}

.banner {
  min-height: auto;
  display: flex;
  align-items: center;
  height: auto;
  align-items: stretch;
}
.banner > video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.banner > .container-fluid {
  color: #fff;
  height: 100%;
  overflow: visible;
  margin-top: 100px;
}
.banner > .container-fluid .banner-left {
  padding-top: 70px;
}
.banner > .container-fluid .banner-left h1 {
  font-size: 55px;
  font-weight: 700;
  color: #d4b04a;
}
.banner > .container-fluid .banner-left p {
  font-size: 17.5px;
  font-weight: 600;
}
.banner > .container-fluid .banner-left .button_container {
  display: flex;
  align-items: center;
}
.banner > .container-fluid .banner-left .button_container .reviews {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  font-size: 15px;
}
.banner > .container-fluid .banner-left .button_container .reviews .review_content .fa-solid.fa-star {
  color: var(--themeyellow);
}
.banner > .container-fluid .banner-left .button_container .reviews .review_content span {
  display: inline-block;
  margin-left: 10px;
}
.banner > .container-fluid .banner-left .button_container .reviews .review_content p {
  margin-bottom: unset;
  font-size: 15px;
}
.common-banner {
  position: relative;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url("../images/about-banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.common-banner .banner-title {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "Oswald", sans-serif;
}
.common-banner p {
  font-size: 15px;
  padding: 10px 0;
  color: #fff;
}
.common-banner .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.common-banner .breadcrumb * {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
.common-banner .breadcrumb .breadcrumb-item a:hover {
  color: var(--themeyellow);
}
.common-banner .breadcrumb .breadcrumb-item.active {
  color: #ccc;
}
.common-banner .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
  content: "→";
}

.booking_engine_container .lf-w-full.lf-bg-white.lf-shadow-lg.lf-dropdown {
  background: linear-gradient(180deg, rgba(8, 16, 23, 0) 0%, rgba(8, 16, 23, 0.206) 30%, rgba(8, 16, 23, 0.708) 74%, rgba(8, 16, 23, 0.855) 82%, rgba(8, 16, 23, 0.939) 86.83%) !important;
  border: 1px solid #f0db71;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px) !important;
  box-shadow: 0px 2px 10px 2px rgba(34, 53, 68, 0.48) !important;
  border-radius: 16px;
  overflow: hidden;
}
.booking_engine_container button {
  color: var(--white) !important;
}
.booking_engine_container label {
  color: var(--white) !important;
}
.booking_engine_container input:not(.datepicker-calendar-icon) {
  background: rgba(0, 0, 0, 0.55) !important;
  border: 1px solid rgba(255, 206, 33, 0.25);
  color: var(--white) !important;
  margin-bottom: 10px;
}
.booking_engine_container #differentAddress {
  margin-bottom: 0 !important;
}
.booking_engine_container input {
  color: var(--white) !important;
}
.booking_engine_container .lf-flex.lf-justify-end.lf-items-center.gap-x-3.lf-capitalize.lf-font-semibold.lf-pr-2 button {
  color: var(--themeyellow) !important;
}
.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 {
  border-top: 1px solid rgba(255, 255, 255, 0.253);
  padding: 10px 0px;
  margin-top: 15px;
}
.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button {
  color: var(--themeyellow) !important;
}
.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button .lf-text-sm {
  border: 2px solid var(--themeyellow) !important;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 17px;
  margin-right: 10px;
  padding-left: 2.5px;
  font-size: 12px;
}
.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner button {
  width: 94%;
  background: var(--themeyellow);
  color: var(--black) !important;
  font-weight: 600;
  border-radius: 8px;
}
.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner button:hover {
  background: var(--deepyellow);
}
.booking_engine_container .lf-cursor-pointer.lf-relative button {
  color: var(--black) !important;
}
.booking_engine_container .lf-z-\[9999999\] {
  z-index: 1 !important;
}
.booking_engine_container .lf-top-2\/4 {
  top: 35% !important;
  color: var(--white);
}

.mobile.booking_engine_container {
  background: var(--black);
  padding-top: 50px;
}

.features-section {
  background: linear-gradient(180deg, #000000 0%, #050505 100%);
  padding: 60px 0;
}
.features-section .section-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 25px;
}
.features-section p {
  color: #fff;
  margin-bottom: 0;
}
.features-section .feature-card {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid #979797;
}
.features-section .feature-card:hover {
  border-color: var(--themeyellow);
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}
.features-section .feature-card .feature-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.features-section .feature-card .feature-header .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  border: 1px solid var(--themeyellow);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 206, 33, 0.08);
  transition: all 0.3s ease;
}
.features-section .feature-card .feature-header .icon-box i {
  color: var(--themeyellow);
  font-size: 22px;
}
.features-section .feature-card .feature-header h5 {
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  line-height: 1.2;
}
.features-section .feature-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.features-section.service_single .feature-card {
  text-align: center;
}
.features-section.service_single .feature-card:hover .feature-icon {
  background: var(--themeyellow);
}
.features-section.service_single .feature-card:hover .feature-icon i {
  color: var(--black);
}
.features-section.service_single .feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid var(--themeyellow);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 219, 113, 0.08);
  transition: all 0.3s ease;
}
.features-section.service_single .feature-icon i {
  color: var(--themeyellow);
  font-size: 24px;
  transition: color 0.3s ease;
}
.features-section.service_single .feature-name {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}
.features-section.service_single .feature-card p {
  font-size: 14px;
  padding: 10px 0 0;
}

.mission-section .mission-image img {
  width: 100%;
}
.mission-section .mission-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7490196078);
  margin-top: 15px;
}
.mission-section .borderbtn {
  color: var(--black);
  margin-top: 25px;
}

section.service {
  background: #ebebeb;
  padding: 40px 0px;
}
section.service .container .left p {
  color: #4f4f4f;
  margin-top: 25px;
}
section.service .container .right .service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
section.service .container .right .service-card .airport-img {
  position: relative;
}
section.service .container .right .service-card .airport-img img {
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
section.service .container .right .service-card .swiper-btn {
  position: absolute;
  bottom: 3%;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
}
section.service .container .right .service-card .swiper-btn.prev {
  left: 8px;
}
section.service .container .right .service-card .swiper-btn.next {
  right: 8px;
}
section.service .container .right .service-card .swiper-btn i {
  font-size: 12px;
}
section.service .container .right .service-card .swiper-pagination {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  border-radius: 10px;
}
section.service .container .right .service-card .swiper-pagination-progressbar {
  background: rgba(255, 255, 255, 0.4);
  height: 3px;
  border-radius: 10px;
  overflow: hidden;
}
section.service .container .right .service-card .swiper-pagination-progressbar-fill {
  background: #fff;
  border-radius: 10px;
}
section.service .container .right .service-card .airport-content {
  padding: 14px 16px 18px;
}
section.service .container .right .service-card .airport-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
section.service .container .right .service-card .airport-content h3 a {
  color: #000;
}
section.service .container .right .service-card .airport-content p {
  font-size: 14px;
  font-weight: 400;
  position: relative;
}
section.service .container .right .service-card .airport-content p::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 1px;
  background: var(--black);
  bottom: -10px;
  left: 0px;
}
section.service .container .right .service-card .airport-content ul {
  margin: 20px 0px 0px 0px;
}
section.service .container .right .service-card .airport-content ul li {
  font-size: 14px;
  color: #4f4f4f;
  margin-bottom: 5px;
  font-weight: 400;
  display: flex;
  -moz-column-gap: 7px;
       column-gap: 7px;
}

.video_overlay_wrapper {
  position: relative;
  /* Play Button */
  /* Video Section */
}
.video_overlay_wrapper .overlay_section {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1450980392) 0%, rgba(5, 5, 5, 0.1411764706) 100%), url(../images/overlay-bg.webp);
  padding: 60px 0;
  background-size: cover;
  min-height: 600px;
  position: relative;
  z-index: 2;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.video_overlay_wrapper .overlay_section .section-title {
  color: var(--white);
}
.video_overlay_wrapper .overlay_section .button-actions .commonbtn {
  background: var(--themeyellow);
  color: var(--black);
}
.video_overlay_wrapper .overlay_section .button-actions .borderbtn {
  border-color: var(--white);
  color: white;
}
.video_overlay_wrapper .overlay_section.hide {
  opacity: 0;
  visibility: hidden;
}
.video_overlay_wrapper .playbtn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: var(--themeyellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video_overlay_wrapper .playbtn i {
  font-size: 18px;
  color: var(--black);
}
.video_overlay_wrapper .video_section {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
  z-index: 1;
  height: 80vh;
}
.video_overlay_wrapper .video_section.show {
  opacity: 1;
  visibility: visible;
}
.video_overlay_wrapper .video_section video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.second_overlay {
  min-height: auto;
  background: unset;
  margin-bottom: 20px;
}
.second_overlay .container {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.45098039)), url(../images/second-overlay.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 40px;
  border-radius: 22px;
  background-position: top;
  background-attachment: scroll;
}
.second_overlay .section-title {
  color: var(--white);
}
.second_overlay p {
  color: var(--white);
  margin-top: 15px;
}
.second_overlay .commonbtn {
  background: var(--black) !important;
  color: var(--white) !important;
  border: 1px solid #cea940;
}
.second_overlay .commonbtn i {
  transform: rotate(-45deg);
}

section.fleet {
  background: #dedede;
  padding: 40px 0px;
}
section.fleet .container .vehicle-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #5b5b5b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: #fff;
  /* TOP RIGHT META */
  /* HEADER */
  /* IMAGE */
  /* FEATURES */
  /* PRICING */
}
section.fleet .container .vehicle-card .vehicle-meta {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  z-index: 5;
}
section.fleet .container .vehicle-card .vehicle-meta .meta-item {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 6px;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #fff;
}
section.fleet .container .vehicle-card .vehicle-meta .meta-item i {
  font-size: 12px;
  color: var(--themeyellow);
}
section.fleet .container .vehicle-card .vehicle-meta .meta-item span {
  font-weight: 500;
}
section.fleet .container .vehicle-card .vehicle-header {
  background: #0f1720;
  padding: 12px 0;
  text-align: center;
}
section.fleet .container .vehicle-card .vehicle-header h3 {
  font-size: 20px;
  padding-bottom: 10px;
  font-weight: 400;
  border-bottom: 2px solid #555555;
}
section.fleet .container .vehicle-card .vehicle-header h3 a {
  color: #fff;
}
section.fleet .container .vehicle-card .vehicle-header p {
  font-size: 14px;
  line-height: 1.4;
  color: var(--white);
  margin: 0;
  padding: 5px 10px 0;
}
section.fleet .container .vehicle-card .vehicle-image {
  padding: 0 7px;
}
section.fleet .container .vehicle-card .vehicle-image img {
  width: 100%;
  display: block;
}
section.fleet .container .vehicle-card .vehicle-features {
  display: flex;
  justify-content: center;
  padding: 0 12px;
  -moz-column-gap: 25px;
       column-gap: 25px;
  margin-top: -15px;
  font-size: 14px;
}
section.fleet .container .vehicle-card .feature {
  text-align: center;
  color: #fff;
  font-weight: 400;
}
section.fleet .container .vehicle-card .feature i {
  font-size: 16px;
  margin-bottom: 4px;
  display: block;
}
section.fleet .container .vehicle-card .feature span {
  font-size: 12px;
}
section.fleet .container .vehicle-card .vehicle-pricing {
  padding: 20px 14px 12px;
  background: #5b5b5b;
}
section.fleet .container .vehicle-card .vehicle-pricing .price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-weight: 400;
}
section.fleet .container .vehicle-card .vehicle-pricing .price-row span {
  font-size: 14px;
}
section.fleet .container .vehicle-card .vehicle-pricing .price-row strong {
  font-size: 14px;
  font-weight: 400;
}
section.fleet .container .vehicle-card .vehicle-pricing small {
  display: block;
  font-size: 10px;
  color: #e0e0e0;
  text-align: right;
}
section.fleet .container .vehicle-card .vehicle-pricing .commonbtn {
  margin-top: 10px;
  background: var(--white);
  color: var(--black);
  border-radius: 8px;
}

.mission-split-section {
  background: #ffffff;
  padding: 80px 0px;
  /* LEFT CONTENT */
  /* RIGHT IMAGE */
  /* FLOATING CARDS */
  /* TOP CARD */
  /* BOTTOM CARD */
}
.mission-split-section .borderbtn {
  border-color: var(--black);
  color: var(--black);
}
.mission-split-section .mission-block .section-title {
  margin: 15px 0px;
}
.mission-split-section .mission-block p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7490196078);
  padding-bottom: 10px;
}
.mission-split-section .mission-image-wrapper {
  position: relative;
}
.mission-split-section .mission-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 22px;
}
.mission-split-section .float-card {
  position: absolute;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 220px;
}
.mission-split-section .float-card h6 {
  font-size: 20px;
  font-weight: 700;
  margin: 8px 0px;
}
.mission-split-section .float-card p {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.mission-split-section .top-card {
  top: -50px;
  left: 20px;
  text-align: center;
  padding: 15px;
}
.mission-split-section .top-card img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-bottom: 6px;
}
.mission-split-section .bottom-card {
  max-width: 75%;
  bottom: -20px;
  right: 30px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.mission-split-section .bottom-card h6 {
  margin-top: 0px;
}
.mission-split-section .bottom-card img {
  width: 75px;
}
.mission-split-section .bottom-card i {
  font-size: 18px;
  color: #000;
  margin-top: 2px;
}

section.app-download-section {
  /* RIGHT VISUAL */
  /* DOWNLOAD TEXT */
  /* ARROW */
  /* PATTERNS */
}
section.app-download-section .app-download-wrapper {
  background: linear-gradient(90deg, #020912, #06131f);
  border-radius: 14px;
  padding: 0px 50px;
  position: relative;
}
section.app-download-section .app-download-wrapper .right {
  min-height: 300px;
  height: 100%;
}
section.app-download-section h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}
section.app-download-section p {
  color: #cfcfcf;
  font-size: 14px;
  max-width: 420px;
  margin-bottom: 20px;
}
section.app-download-section .store-buttons {
  display: flex;
  gap: 12px;
}
section.app-download-section .store-buttons img {
  height: 42px;
}
section.app-download-section .mobile-img {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
}
section.app-download-section .download-text {
  position: absolute;
  top: 120px;
  left: -40px;
  z-index: 4;
  color: var(--themeyellow);
}
section.app-download-section .download-arrow {
  position: absolute;
  top: 90px;
  left: -10px;
  z-index: 3;
}
section.app-download-section .pattern {
  position: absolute;
  z-index: 1;
}
section.app-download-section .pattern-1 {
  top: 40px;
  right: -20px;
}
section.app-download-section .pattern-2 {
  bottom: 30px;
  right: 80px;
}

.testimonial-section {
  background: #f7f7f7;
  padding: 40px 0px;
  /* Author */
  /* Pagination */
}
.testimonial-section .testimonial-label {
  font-size: 36px;
  color: #000;
  font-weight: 600;
}
.testimonial-section .testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
}
.testimonial-section .stars {
  color: var(--themeyellow);
  font-size: 14px;
  margin-bottom: 8px;
}
.testimonial-section .testimonial-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.testimonial-section .testimonial-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 14px;
}
.testimonial-section .author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}
.testimonial-section .author img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-section .author strong {
  font-size: 13px;
  display: block;
}
.testimonial-section .author span {
  font-size: 12px;
  color: #999;
}
.testimonial-section .swiper-pagination {
  margin-top: 25px;
  position: static;
}
.testimonial-section .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #d8d8d8;
  opacity: 1;
}
.testimonial-section .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 10px;
  background: var(--deepyellow);
}
.testimonial-section .link {
  display: flex;
  justify-content: center;
  margin: 10px auto;
}
.testimonial-section .link a {
  background-color: #cea940;
  padding: 5px 20px;
  border-radius: 24px;
  transition: all 0.5s ease-in-out;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #000;
}
.testimonial-section .link a img {
  width: 36px;
}
.testimonial-section .link a:hover {
  background-color: #000;
  color: #fff;
}

.app-section {
  background-color: #e3e3e3;
  /* FORM INPUTS */
  /* BUTTON */
  /* RIGHT CONTENT */
  /* APP BUTTONS */
}
.app-section .contact-card {
  background: linear-gradient(45deg, rgba(8, 16, 23, 0.3) 30%, rgba(8, 16, 23, 0.75) 74%, rgba(8, 16, 23, 0.9) 82%, rgba(8, 16, 23, 0.95) 86%, rgba(8, 16, 23, 0) 100%);
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
  box-shadow: 0 2px 10px rgba(34, 53, 68, 0.48);
  border-radius: 12px;
  padding: 2rem;
}
.app-section .contact-card h3 {
  color: var(--white);
  font-size: 28px;
}
.app-section label {
  color: var(--white);
  font-size: 12px;
  margin-bottom: 5px;
}
.app-section .iti.iti--allow-dropdown {
  width: 100%;
}
.app-section .custom-input {
  background: rgba(107, 107, 107, 0.85);
  border: 1px solid rgba(225, 225, 225, 0.25);
  border-radius: 8px;
  color: var(--white);
  padding: 12px 20px;
}
.app-section .custom-input::-moz-placeholder {
  color: #b2b2b2;
}
.app-section .custom-input::placeholder {
  color: #b2b2b2;
}
.app-section .custom-input:focus {
  background: rgba(107, 107, 107, 0.95);
  color: var(--white);
  box-shadow: none;
  border-color: var(--themeyellow);
}
.app-section .theme-btn {
  background-color: var(--themeyellow);
  color: var(--black);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 0;
  border: none;
  transition: 0.3s ease;
}
.app-section .theme-btn:hover {
  background-color: var(--deepyellow);
  color: var(--black);
}
.app-section .app-content > span {
  color: #b58c6a;
  font-weight: 600;
  text-transform: uppercase;
}
.app-section .app-content h2 {
  font-size: 36px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--black);
  margin: 1rem 0px;
}
.app-section .app-content p {
  font-size: 16px;
  line-height: 30px;
  color: var(--black);
  border-bottom: 1px solid #c3c3c3;
  padding-bottom: 10px;
}
.app-section .app-buttons li {
  width: 160px;
}

.fleet-section {
  background: #ffffff;
  /* Mobile select hidden by default */
  /* Desktop filters */
  /* MOBILE VIEW */
}
.fleet-section .fleet-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.fleet-section .fleet-filters button {
  background: transparent;
  border: none;
  font-size: 18px;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  color: var(--black);
}
.fleet-section .fleet-filters button.active {
  background: #000;
  color: #fff;
}
.fleet-section .fleet-nav {
  display: flex;
  gap: 8px;
}
.fleet-section .fleet-nav div {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.fleet-section .fleet-nav .swiper-button-disabled {
  background: #777;
}
.fleet-section .fleet-card {
  background: #f2f2f2;
  border-radius: 14px;
  padding: 18px 20px;
  position: relative;
  height: 100%;
}
.fleet-section .fleet-card h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.fleet-section .fleet-card img {
  width: 100%;
  max-height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 15px 0;
}
.fleet-section .fleet-meta {
  display: flex;
  gap: 15px;
}
.fleet-section .fleet-meta span {
  background: #000;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.fleet-section .fleet-cta {
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fleet-section .fleet-cta span {
  width: 30px;
  height: 30px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  font-size: 15px;
}
.fleet-section .fleet-filter-select {
  display: none;
}
.fleet-section .fleet-filter-select select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  color: #000;
}
.fleet-section .fleet-filters {
  display: flex;
}
@media (max-width: 767px) {
  .fleet-section .fleet-top {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .fleet-section .fleet-filters {
    display: none;
  }
  .fleet-section .fleet-filter-select {
    display: block;
  }
  .fleet-section .fleet-nav {
    justify-content: center;
  }
}

.faq {
  padding: 50px 0;
  background: #fff;
  position: relative;
  background: url("../images/faq-bg.webp") top no-repeat;
}
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/faq-pattern.webp") center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
}
.faq .section-title {
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--deepyellow);
  font-weight: 600;
}

.faq-accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-bg: transparent;
}
.faq-accordion .accordion-item {
  background: #f7f7f7;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  background: transparent;
  padding: 18px 56px 18px 20px;
  font-weight: 500;
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  content: "+";
  background: none;
  font-size: 18px;
  font-weight: 600;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #b18a68;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  background: #b18a68;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-body {
  background: #fafafa;
  padding: 16px 20px;
  color: #646464;
  border-top: 1px dashed #e2e2e2;
}
.faq-accordion .q-label,
.faq-accordion .a-label {
  font-weight: 600;
  margin-right: 6px;
  color: #333;
}

.site-footer {
  background: #2b2b2b;
  color: #bfbfbf;
  font-size: 14px;
  /* TOP */
  /* MIDDLE */
  /* BOTTOM */
}
.site-footer a {
  color: #bfbfbf;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--themeyellow);
}
.site-footer .footer-top {
  padding: 40px 0;
}
.site-footer .footer-top .footer-logo {
  max-width: 180px;
}
.site-footer .footer-top .footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.site-footer .footer-top .footer-contact .contact-item {
  display: flex;
  gap: 10px;
  /* align-items: center; */
}
.site-footer .footer-top .footer-contact .contact-item span {
  color: var(--white);
}
.site-footer .footer-top .footer-contact .contact-item i {
  color: var(--deepyellow);
  font-size: 22px;
  margin-top: 4px;
}
.site-footer .footer-top .footer-contact .contact-item strong {
  color: var(--deepyellow);
  font-weight: 600;
  font-size: 16px;
}
.site-footer .footer-middle {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .footer-middle .footer-about {
  line-height: 1.7;
  margin-bottom: 20px;
}
.site-footer .footer-middle h6 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
}
.site-footer .footer-middle ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-middle ul li {
  margin-bottom: 10px;
}
.site-footer .footer-middle ul li a {
  color: #ffffff;
  font-weight: 400;
}
.site-footer .footer-middle ul li a:hover {
  color: var(--themeyellow);
}
.site-footer .footer-middle .footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.site-footer .footer-middle .footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--themeyellow);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid var(--themeyellow);
  transition: 0.3s;
}
.site-footer .footer-middle .footer-social a:hover {
  color: var(--themeyellow);
  background: transparent;
}
.site-footer .footer-middle .payment-logos img {
  margin-right: 12px;
  max-height: 30px;
}
.site-footer .footer-bottom {
  text-align: center;
  padding: 18px 0;
  background: #242424;
  font-size: 13px;
}

.luxury-section {
  padding: 40px 0;
  background: radial-gradient(circle at right, rgba(255, 200, 100, 0.15), transparent 60%), linear-gradient(90deg, #0c0c0c, #1a1a1a);
  color: var(--white);
}
.luxury-section .commonbtn {
  background: var(--deepyellow);
}
.luxury-section .luxury-eyebrow {
  font-size: 16px;
  letter-spacing: 1.5px;
  color: var(--themeyellow);
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 400;
}
.luxury-section .luxury-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.luxury-section .luxury-title span {
  color: var(--themeyellow);
}
.luxury-section .luxury-desc {
  color: #d1d5dc;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.luxury-section .luxury-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.luxury-section .luxury-features li {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.luxury-section .luxury-features li h6 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--white);
}
.luxury-section .luxury-features li p {
  font-size: 15px;
  color: #99a1af;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}
.luxury-section .icon-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(254, 154, 0, 0.2);
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
}
.luxury-section .icon-dot::after {
  content: "";
  width: 25px;
  height: 25px;
  left: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--themeyellow);
  border-radius: 50%;
}
.luxury-section .luxury-image-wrap {
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}
.luxury-section .luxury-image-wrap img {
  width: 100%;
  display: block;
  border-radius: 18px;
}
.luxury-section .discount-badge {
  position: absolute;
  bottom: 16px;
  right: -15px;
  border: 1px solid var(--themeyellow);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  background: var(--black);
}
.luxury-section .discount-badge strong {
  font-size: 50px;
  display: block;
  font-weight: 700;
  color: var(--themeyellow);
}
.luxury-section .discount-badge span {
  font-size: 18px;
  display: block;
  font-weight: 400;
}

.why-choose {
  padding: 40px 0;
  background: var(--white);
}
.why-choose .wc-title {
  font-size: 36px;
  font-weight: 700;
  color: #4a5565;
  margin-bottom: 14px;
}
.why-choose .wc-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
  max-width: 520px;
  margin-bottom: 36px;
}
.why-choose .wc-features {
  row-gap: 28px;
}
.why-choose .wc-item {
  display: flex;
  gap: 16px;
}
.why-choose .wc-item h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.why-choose .wc-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5565;
  margin: 0;
}
.why-choose .wc-icon {
  width: 44px;
  height: 44px;
  background: #f3f4f6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-choose .wc-icon i {
  font-size: 18px;
  color: #364153;
}
.why-choose .wc-image {
  padding: 20px;
  position: relative;
  height: 100%;
}
.why-choose .wc-image::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 60%;
  background: #f3f4f6;
  border-radius: 20px;
  z-index: 1;
}
.why-choose .wc-image img {
  width: 100%;
  height: 100%;
  box-shadow: 0 30px 35px 7px rgba(0, 0, 0, 0.25);
  display: block;
  border-radius: 20px;
  z-index: 2;
  position: relative;
}

.why-luxury {
  padding: 40px 0;
  background: radial-gradient(circle at top, #0c1220, #02050c);
  color: var(--white);
  /* HEADER */
  /* STATS BAR */
}
.why-luxury .section-tag {
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--deepyellow);
  display: block;
  margin-bottom: 12px;
  font-weight: 400;
}
.why-luxury .section-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 14px;
}
.why-luxury .section-subtitle {
  max-width: 60%;
  margin: 0 auto;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}
.why-luxury .lux-card {
  background: linear-gradient(180deg, #121a2d, #0a1020);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.why-luxury .lux-card h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}
.why-luxury .lux-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #99a1af;
  margin: 0;
  font-weight: 400;
}
.why-luxury .lux-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.why-luxury .lux-card .lux-icon {
  width: 60px;
  height: 60px;
  background: rgba(240, 219, 113, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: var(--themeyellow);
}
.why-luxury .lux-card .lux-icon i {
  font-size: 22px;
}
.why-luxury .lux-stats {
  background: linear-gradient(90deg, rgba(225, 113, 0, 0.2), rgba(123, 51, 6, 0.2));
  border-radius: 18px;
  padding: 36px 20px;
  margin-top: 50px;
  border: 1px solid rgba(254, 154, 0, 0.3019607843);
}
.why-luxury .lux-stats h3 {
  font-size: 32px;
  color: var(--themeyellow);
  margin-bottom: 6px;
  font-weight: 700;
}
.why-luxury .lux-stats span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.dream-section {
  padding: 50px 0;
  background: #f9fafb;
  /* Top image */
  /* No parking sign */
  /* Right image */
  /* Dotted decoration */
  /* RIGHT CONTENT */
  /* CHECKLIST */
  /* BUTTON */
}
.dream-section .img-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.dream-section .img-card img {
  width: 100%;
  display: block;
}
.dream-section .img-1 {
  width: 47%;
  position: absolute;
  z-index: 3;
  top: 10%;
}
.dream-section .no-sign {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 48px;
  height: 48px;
  background: url("img/no-parking.webp") center/contain no-repeat;
}
.dream-section .img-2 {
  width: 47%;
  position: absolute;
  right: 0px;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
.dream-section .dot-box {
  position: absolute;
  left: -40px;
  bottom: 0px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#ddd 2px, transparent 2px);
  background-size: 12px 12px;
  z-index: 1;
}
.dream-section .dream-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: #0b1a33;
  margin-bottom: 20px;
}
.dream-section .dream-text {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
  /* max-width: 520px; */
  margin-bottom: 28px;
}
.dream-section .checklist ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.dream-section .checklist ul li {
  font-size: 15px;
  color: #374151;
  margin-bottom: 12px;
  position: relative;
  padding-left: 26px;
}
.dream-section .checklist ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--themeyellow);
  color: #000;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dream-section .explore-btn {
  background: var(--themeyellow);
  color: #000;
  font-size: 14px;
  padding: 10px 26px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 20px;
}
.dream-section .explore-btn:hover {
  background: var(--deepyellow);
  color: #000;
}

.engineering-section {
  padding: 40px 0;
  background: #f8f9fb;
  /* LEFT CONTENT */
  /* BUTTON */
  /* CARD */
  /* IMAGE */
  /* BODY */
}
.engineering-section .engineering-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: #0b1a33;
  margin-bottom: 15px;
  text-align: center;
}
.engineering-section .engineering-text {
  font-size: 20px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 26px;
}
.engineering-section .explore-dark {
  background: #0b1a33;
  color: var(--white);
  padding: 9px 26px;
  font-size: 14px;
  border-radius: 8px;
  font-weight: 500;
}
.engineering-section .explore-dark:hover {
  background: #020617;
  color: var(--white);
}
.engineering-section .car-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 9px -6px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}
.engineering-section .car-card:hover {
  transform: translateY(-4px);
}
.engineering-section .car-img {
  height: 150px;
  overflow: hidden;
}
.engineering-section .car-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.engineering-section .car-body {
  padding: 20px;
  text-align: center;
}
.engineering-section .car-body h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}
.engineering-section .car-body p {
  font-size: 15px;
  font-weight: 400;
  color: #111827;
}

.service-content-section {
  background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
  /* Content Box */
  /* Badge Tag */
  /* Content Title */
  /* Content Text */
  /* Feature Points */
  /* Image Container */
  /* Service Image */
  /* Image Badge */
}
.service-content-section .content-box {
  padding: 20px 0;
}
.service-content-section .badge-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--themeyellow) 0%, var(--deepyellow) 100%);
  color: var(--black);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(206, 169, 64, 0.35);
}
.service-content-section .badge-tag i {
  font-size: 1rem;
}
.content-box a.borderbtn {
  color: #000;
}
.service-content-section .content-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  position: relative;
  padding-bottom: 20px;
}
.service-content-section .content-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--deepyellow);
  border-radius: 2px;
}
@media (max-width: 991px) {
  .service-content-section .content-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 576px) {
  .service-content-section .content-title {
    font-size: 1.5rem;
  }
}
.service-content-section .content-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}
.service-content-section .feature-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-content-section .feature-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}
.service-content-section .feature-points li i {
  color: var(--deepyellow);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.service-content-section .image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}
.service-content-section .image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}
.service-content-section .image-container:hover .service-image {
  transform: scale(1.05);
}
.service-content-section .image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
}
.service-content-section .service-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-content-section .image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}
.service-content-section .image-badge:hover {
  transform: translateY(-3px);
}
.service-content-section .image-badge i {
  font-size: 1.4rem;
  color: var(--deepyellow);
}
.service-content-section .image-badge div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.service-content-section .image-badge div strong {
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 700;
}
.service-content-section .image-badge div span {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fleet-car-details {
  position: relative;
}
.fleet-car-details .car-details-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.fleet-car-details .car-details-title small {
  font-weight: 500;
  color: #926114;
  font-size: 1.3rem;
}
.fleet-car-details .car-details-desc {
  font-size: 15px;
  line-height: 1.7;
}
.fleet-car-details .car-features-list {
  margin-top: 2rem;
}
.fleet-car-details .car-features-list li {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-bottom: 14px;
  gap: 5px;
  cursor: default;
}
.fleet-car-details .car-features-list li .car-feature-icon {
  color: #926114;
  font-size: 20px;
  min-width: 32px;
}
.fleet-car-details .car-details-image img {
  transition: transform 0.6s ease;
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}
.fleet-car-details .car-details-image:hover img {
  transform: scale(0.9);
}

.fleet-gallery-section .gallery-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--themeyellow);
}
.fleet-gallery-section .gallery-img-wrapper {
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
  transition: transform 0.5s ease;
}
.fleet-gallery-section .gallery-img-wrapper img {
  transition: transform 0.6s ease;
  width: 100%;
  height: auto;
  display: block;
}
.fleet-gallery-section .gallery-img-wrapper:hover img {
  transform: scale(1.08) rotate(-1deg);
}
.fleet-gallery-section .fleet-gallery-item {
  display: block;
  position: relative;
}
.fleet-gallery-section .modal-content .btn-close-white {
  width: 40px;
  height: 40px;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  z-index: 2;
  color: #000;
  font-size: 25px;
}

.service.airport .right .service-card .airport-content p::after {
  display: none;
}

.airport-single {
  background: var(--white);
}
.airport-single .airport-sidebar {
  position: sticky;
  top: 100px;
}
.airport-single .section-title {
  font-size: 25px;
}
.airport-single .borderbtn {
  color: var(--black);
}
.airport-single .sidebar-box {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 25px;
}
.airport-single .airport-menu li {
  padding: 12px 15px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  border-left: 3px solid transparent;
}
.airport-single .airport-menu li:hover {
  background: #eee;
}
.airport-single .airport-menu li.active {
  background: var(--themeyellow);
  color: var(--black);
  border-left-color: var(--deepyellow);
}
.airport-single .icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--themeyellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.airport-single .icon-circle i {
  font-size: 22px;
  color: var(--black);
}
.airport-single p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 15px 0px;
}
.airport-single .checklist {
  border: 1px solid var(--bg-light);
}
.airport-single .checklist p {
  font-weight: 500;
  color: var(--text-dark);
}
.airport-single .checklist p i {
  color: var(--themeyellow);
  margin-right: 8px;
}
.airport-single .features-section {
  background: transparent;
}
.airport-single img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.blog_main .blog-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.blog_main .blog-card:hover {
  transform: translateY(-6px);
}
.blog_main .blog-card .blog-image {
  position: relative;
  padding: 12px;
}
.blog_main .blog-card .blog-image img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.blog_main .blog-card .blog-image .blog-date {
  position: absolute;
  top: 30px;
  left: 30px;
  color: var(--white);
}
.blog_main .blog-card .blog-image .blog-date .day {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.blog_main .blog-card .blog-image .blog-date .month {
  font-size: 14px;
  font-weight: 500;
}
.blog_main .blog-card .blog-content {
  padding: 0px 22px 24px 28px;
}
.blog_main .blog-card .blog-content .category {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 10px;
}
.blog_main .blog-card .blog-content .blog-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 12px;
}
.blog_main .blog-card .blog-content .blog-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog_main .blog-card .blog-content .read-more {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: all 0.3s ease;
}
.blog_main .blog-card .blog-content .read-more i {
  font-size: 16px;
}
.blog_main .blog-card .blog-content .read-more:hover {
  background: var(--themeyellow);
  border-color: var(--themeyellow);
  color: var(--black);
}

/* =============================
   Blog Single Page
============================= */
.blog-single {
  background: var(--bg-light);
}

/* =============================
   Main Article Card
============================= */
.blog-main {
  background: var(--white);
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
  /* =============================
     Header
  ============================= */
  /* =============================
     Content
  ============================= */
}
@media (max-width: 768px) {
  .blog-main {
    padding: 24px;
  }
}
.blog-main .blog-header {
  margin-bottom: 30px;
}
.blog-main .blog-header .blog-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .blog-main .blog-header .blog-title {
    font-size: 28px;
  }
}
.blog-main .blog-header .blog-meta {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
}
.blog-main .blog-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 22px;
}
.blog-main .blog-hero {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 28px;
}
.blog-main .blog-hero img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-main .blog-hero:hover img {
  transform: scale(1.05);
}
.blog-main .blog-hero .blog-date {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 14px;
  text-align: center;
}
.blog-main .blog-hero .blog-date .day {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.blog-main .blog-hero .blog-date .month {
  font-size: 13px;
  opacity: 0.85;
}

.blog-sidebar {
  position: sticky;
  top: 110px;
  /* Sidebar title */
}
.blog-sidebar .sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.blog-sidebar .related-post {
  background: var(--white);
  padding: 14px;
  border-radius: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  cursor: pointer;
}
.blog-sidebar .related-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.blog-sidebar .related-post img {
  width: 78px;
  height: 78px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-sidebar .related-post h6 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 6px;
}
.blog-sidebar .related-post .post-date {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.event_main .event-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.45s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.event_main .event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}
.event_main .event-image {
  position: relative;
  overflow: hidden;
}
.event_main .event-image img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease;
}
.event-card:hover .event_main .event-image img {
  transform: scale(1.08);
}
.event_main .event-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.55));
}
.event_main .event-date {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.event_main .event-date .day {
  font-size: 26px;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.event_main .event-date .month {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}
.event_main .event-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.event_main .event-category {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  background: var(--bg-light);
  color: var(--text-dark);
  margin-bottom: 14px;
}
.event_main .event-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.event_main .event-meta {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.event_main .event-meta i {
  margin-right: 6px;
}
.event_main .event-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 22px;
}
.event_main .event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.event_main .event-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}
.event_main .event-btn {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  background: var(--text-dark);
  color: var(--white);
  transition: all 0.35s ease;
}
.event_main .event-btn:hover {
  background: var(--text-light);
  color: var(--white);
}

.legal_page_container {
  background-color: var(--bg-light);
  padding: 60px 0;
}
.legal_page_container h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--themeyellow);
}
.legal_page_container h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal_page_container h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal_page_container p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}
.legal_page_container p a {
  color: var(--deepyellow);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}
.legal_page_container p a:hover {
  color: var(--black);
}
.legal_page_container ul {
  padding-left: 0;
  margin-bottom: 24px;
}
.legal_page_container ul li {
  list-style: none;
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}
.legal_page_container ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--deepyellow);
  font-size: 18px;
  line-height: 1.5;
}
.legal_page_container a {
  color: var(--deepyellow);
  text-decoration: none;
  transition: all 0.3s ease;
}
.legal_page_container a:hover {
  color: var(--black);
  text-decoration: underline;
}

/* Fleet slider */
.vehicle-slider-wrap {
  position: relative;
  padding: 0 40px;
}
/* Custom arrows */
.vehicle-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-arrow-prev {
  left: -15px;
}

.vehicle-arrow-next {
  right: -15px;
}

.vehicle-arrow i {
  font-size: 16px;
}
.vehicle-pagination .swiper-pagination-bullet {
  background: #fcfcfc;
  opacity: 1;
}

.vehicle-pagination .swiper-pagination-bullet-active {
  background: #000;
}

/* Whatsapp */
.whatsapp-container{
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  box-shadow: 2px 2px 3px #000;
  position:fixed;
  right:10px;
  bottom:10px;
  z-index: 7;
}

/*****************************
    Scroll to top css start
*****************************/
.scrollTop {
  position: fixed;
  right: 10px;
  bottom: 10%;
  padding: 0px;
  opacity: 0;
  z-index: 1;
  transition: all 0.4s ease-in-out 0s;
}
.scrollTop span a {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #cea940;
}

.bottToparrow {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.bottToparrow img {
  padding-bottom: 3px;
  stroke: #cea940;
  fill: transparent;
  stroke-width: 1px;
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite;
}

@keyframes arrow {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.bottToparrow img.bottompath1 {
  animation-delay: 1s;
  -webkit-animation-delay: 1s; /* Safari 和 Chrome */
}

.bottToparrow img.bottompath2 {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s; /* Safari 和 Chrome */
}

.bottToparrow img.bottompath3 {
  animation-delay: 0s;
  -webkit-animation-delay: 0s; /* Safari 和 Chrome */
}

@media (max-width: 1200px) {
  .banner > .container-fluid .banner-left h1 {
    font-size: 40px;
  }
  .dream-section {
    padding: 40px 0px;
  }
  .dream-section .dream_section_left {
    position: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dream-section .dream_section_left .img-card {
    position: unset;
    transform: translateY(0%);
  }
  .site-footer .footer-top .footer-contact {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  header .logo {
    width: 100px;
  }
  .banner {
    min-height: auto;
  }
  .banner > .container-fluid {
    padding: 100px 0;
    margin-top: 0;
  }
  .mission-image-wrapper {
    margin-top: 30px;
  }
  .dropdown .dropbtn {
    justify-content: space-between;
  }
  section.app-download-section .app-download-wrapper {
    padding: 40px 25px;
  }
  section.app-download-section .mobile-img {
    max-height: 360px;
    bottom: 30px;
  }
  section.app-download-section .download-text,
  section.app-download-section .download-arrow,
  section.app-download-section .pattern-1 {
    display: none;
  }
  .video_overlay_wrapper .overlay_section {
    min-height: auto;
  }
  .video_overlay_wrapper .video_section {
    height: auto;
  }
  .second_overlay {
    padding: 20px;
  }
  .second_overlay .container {
    padding: 20px;
  }
  .site-footer .footer-top .footer-contact {
    grid-template-columns: repeat(2, 1fr);
  }
  .luxury-section .discount-badge {
    right: 10px;
  }
  .luxury-section .luxury-title {
    font-size: 36px;
  }
  .why-luxury .section-subtitle {
    margin: unset;
    max-width: 100%;
  }
  .why-luxury .section-title {
    font-size: 40px;
  }
  .why-luxury .lux-card {
    padding: 0px 10px;
  }
  .why-luxury .lux-card h5 {
    font-size: 20px;
  }
  .engineering-section .engineering-title {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .why-choose .wc-title {
    font-size: 35px;
  }
  .app-section .app-content h2 {
    font-size: 25px;
  }
}
@media (max-width: 576px) {
  .common-banner .banner-title {
    font-size: 32px;
  }
  .section-title {
    font-size: 24px;
    margin: 0 !important;
  }
  .section-sub-title {
    font-size: 20px;
    line-height: 30px;
  }
  .banner > .container-fluid .banner-left h1 {
    font-size: 32px;
    line-height: 40px;
  }
  header .logo {
    width: 100px;
  }
  header .book_your_ride {
    font-size: 10px;
  }
  .site-footer .footer-top .footer-contact {
    grid-template-columns: repeat(1, 1fr);
  }
  .mission-split-section .bottom-card img {
    display: none;
  }
  .dream-section .dream-title {
    font-size: 35px;
  }
  .mission-section .mission-text {
    font-size: 14px;
  }
  section.fleet .container .vehicle-card .vehicle-header h3 {
    font-size: 18px;
    text-align: start;
    padding-left: 20px;
  }
  .vehicle-slider-wrap {
    padding: 0 20px;
  }
  .vehicle-arrow {
    width: 30px;
    height: 30px;
  }
}/*# sourceMappingURL=style.css.map */
@media (max-width: 767px) {
  .vehicle-arrow {
    display: none !important;
  }
}