@charset "UTF-8";
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: Arial;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --text-muted: #6a7282;
  --bg-dark: #323232;
  --border-dark: #ffffff29;
}

::-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;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropbtn {
  color: var(--black);
  cursor: pointer;
  transition: color 0.3s ease;
}
.dropdown .dropbtn i {
  font-size: 12px;
  transition: transform 0.35s ease;
}
.dropdown .dropbtn:hover {
  color: var(--text-muted);
}
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(12px) scale(1);
}
.dropdown:hover .dropbtn i {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0) scale(0.96);
  transform-origin: top;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  z-index: 100;
}
.dropdown-content a {
  position: relative;
  color: var(--black) !important;
  padding: 10px 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(--black);
  transform: translateY(-50%);
  transition: height 0.3s ease;
}
.dropdown-content a:hover {
  background: rgba(0, 0, 0, 0.05);
}
.dropdown-content a:hover::before {
  height: 60%;
}

ul, ol {
  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;
  background: var(--black);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.borderbtn {
  border: 1px solid var(--white);
}

.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);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
}

header {
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: var(--white);
  transition: transform 0.4s ease, background 0.35s ease, padding 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
header .logo {
  width: 180px;
  transition: width 0.3s ease;
}
header nav .nav-bottom .nav-menu li {
  padding: 0 15px;
}
header nav .nav-bottom .nav-menu li a {
  position: relative;
  text-decoration: none;
  color: var(--black);
  font-size: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}
header nav .nav-bottom .nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #000000, #3a3a3a);
  transition: width 0.3s ease;
}
header nav .nav-bottom .nav-menu li a:is(:hover, :focus, .active) {
  transform: translateY(-2px);
}
header nav .nav-bottom .nav-menu li a:is(:hover, :focus, .active)::after {
  width: 100%;
}
header .bargar-menu {
  font-size: 24px;
  cursor: pointer;
  color: var(--black);
}

/* When scrolling */
header.fixedheader {
  position: fixed;
  transform: translateY(0);
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

#sidebar {
  width: 300px;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: -300px;
  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 a:not(.commonbtn, .borderbtn) {
  color: #000;
}
#sidebar.active {
  right: 0;
}
#sidebar .sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
#sidebar .sidebar-header .sidebar-logo {
  height: 40px;
}
#sidebar .sidebar-header .close-btn {
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
}
#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 .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;
}

.lang-dropdown {
  position: relative;
  font-family: inherit;
  outline: none;
}
.lang-dropdown .lang-selected {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border: 2px solid #e5e5e5;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.lang-dropdown .lang-selected:hover {
  border-color: #000000;
}
.lang-dropdown .lang-selected i {
  color: #000000;
  font-size: 16px;
}
.lang-dropdown .lang-selected .lang-value {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}
.lang-dropdown .lang-selected .arrow {
  font-size: 12px;
  transition: transform 0.2s ease;
}
.lang-dropdown.open .lang-selected {
  border-color: #000000;
}
.lang-dropdown.open .arrow {
  transform: rotate(180deg);
}
.lang-dropdown.open .lang-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-dropdown .lang-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  z-index: 10;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  opacity: 0;
  transform: translateY(-5px);
  pointer-events: none;
  transition: all 0.2s ease;
}
.lang-dropdown .lang-options li {
  padding: 10px 16px;
  font-size: 14px;
  color: #000000;
  cursor: pointer;
}
.lang-dropdown .lang-options li:hover {
  background: #f2f2f2;
}

.banner {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)), url(../images/banner.webp);
  background-size: cover;
  background-position: center;
  padding: 80px 0px;
  border-radius: 40px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  margin-top: 74px;
}
.banner > .container-fluid {
  color: #fff;
  height: 100%;
}
.banner > .container-fluid .banner-left h1 {
  font-size: 55px;
  font-weight: 700;
}
.banner > .container-fluid .banner-left p {
  font-size: 15px;
  font-weight: 400;
  color: #d1d5dc;
}
.banner > .container-fluid .banner-left .contact-info {
  padding: 0 12px;
  font-size: 14px;
}
.banner > .container-fluid .banner-left .contact-info a {
  width: auto;
  padding: 0px;
}
.banner > .container-fluid .banner-left .contact-info .topbar-link {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.banner > .container-fluid .banner-left .contact-info .topbar-link i {
  font-size: 13px;
}
.banner > .container-fluid .banner-left .contact-info .topbar-link:hover {
  color: #e0e0e0;
}
.banner > .container-fluid .banner-left .contact-info .whatsapp {
  width: 32px;
  height: 32px;
  background-color: var(--whatsapp);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
}
.banner > .container-fluid .banner-left .contact-info .whatsapp img {
  width: 100%;
}
.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;
}

.booking_engine_container {
  /* One Way / Date / Time row */
  /* Reserve Now Button */
  /* Icons / calendar */
  /* Dropdown fixes */
}
.booking_engine_container .lf-w-full.lf-bg-white.lf-shadow-lg.lf-dropdown {
  background: #ffffff !important;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12) !important;
  overflow: hidden;
  /* padding: 10px 20px; */
}
.booking_engine_container .lf-grid.lf-grid-cols-3.lf-mb-2 {
  background: #f3f4f6;
  border-radius: 15px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.booking_engine_container .lf-flex.lf-rounded-full {
  background: #f3f3f3;
  padding: 6px;
  border-radius: 999px;
}
.booking_engine_container .lf-flex.lf-rounded-full button {
  color: #777 !important;
  font-weight: 500;
  border-radius: 999px;
  padding: 10px 18px;
  background: transparent;
}
.booking_engine_container .lf-flex.lf-rounded-full button.lf-bg-black {
  background: #000000 !important;
  color: #ffffff !important;
}
.booking_engine_container label {
  color: #666666 !important;
  font-size: 14px;
  font-weight: 500;
}
.booking_engine_container input:not(.datepicker-calendar-icon) {
  background: #f7f7f7 !important;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  color: #000000 !important;
  margin-bottom: 14px;
}
.booking_engine_container input:not(.datepicker-calendar-icon)::-moz-placeholder {
  color: #9a9a9a;
}
.booking_engine_container input:not(.datepicker-calendar-icon)::placeholder {
  color: #9a9a9a;
}
.booking_engine_container input:not(.datepicker-calendar-icon):focus {
  outline: none;
  border-color: #000000;
  background: #ffffff;
}
.booking_engine_container #differentAddress {
  margin-bottom: 0 !important;
}
.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 {
  border-top: 1px solid #eaeaea;
  padding: 12px 0;
  margin-top: 10px;
}
.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button {
  color: #000000 !important;
  font-weight: 500;
}
.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button .lf-text-sm {
  border: 1px solid #000000 !important;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 16px;
  font-size: 11px;
  margin-right: 8px;
}
.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button .lf-text-sm::before {
  margin-left: 3px;
}
.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner {
  box-shadow: none !important;
}
.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner button {
  width: 95%;
  background: #000000 !important;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  border-radius: 12px;
}
.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner button:hover {
  background: #111111 !important;
}
.booking_engine_container .lf-cursor-pointer.lf-relative button {
  color: #000000 !important;
}
.booking_engine_container .lf-z-\[9999999\] {
  z-index: 2 !important;
}
.booking_engine_container .lf-top-2\/4 {
  top: 35% !important;
  color: #000000;
}

/* Mobile */
.mobile.booking_engine_container {
  transform: translateY(-40px);
}
.luxury p {
  font-size: 15px;
  color: var(--text-muted);
  padding: 10px 0;
}
.why-choose-us {
  background-color: var(--white);
}
.why-choose-us .section-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 500px;
  margin-left: auto;
}
.why-choose-us .feature-item {
  padding: 24px 16px;
  text-align: center;
  border-radius: 18px;
  background: var(--white);
  transition: all 0.35s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.why-choose-us .feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.why-choose-us .feature-item .icon-box {
  width: 64px;
  height: 64px;
  background-color: var(--black);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.35s ease;
  position: relative;
}
.why-choose-us .feature-item .icon-box::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.35s ease;
  z-index: -1;
}
.why-choose-us .feature-item .icon-box i {
  color: var(--white);
  font-size: 22px;
  transition: transform 0.35s ease;
}
.why-choose-us .feature-item:hover .icon-box {
  transform: scale(1.1) rotate(4deg);
}
.why-choose-us .feature-item:hover .icon-box::after {
  opacity: 1;
}
.why-choose-us .feature-item:hover .icon-box i {
  transform: rotate(-8deg) scale(1.1);
}
.why-choose-us .feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
  transition: color 0.3s ease;
}
.why-choose-us .feature-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.why-choose-us .feature-item:hover h3 {
  color: #000;
}

#service .service-card {
  background-color: #f9f9fb;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  transition: all 0.4s ease;
  position: relative;
}
#service .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.0745098039), rgba(240, 239, 239, 0.1450980392));
  opacity: 0;
  transition: opacity 0.4s ease;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
#service .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
#service .service-card:hover::before {
  opacity: 1;
}
#service .service-card:hover .service-image img {
  transform: scale(1);
}
#service .service-card:hover .service-content {
  transform: translateX(2px);
}
#service .service-card .service-image {
  width: 45%;
  overflow: hidden;
  /* max-height: 247px; */
  position: relative;
}
#service .service-card .service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.4s ease;
}
#service .service-card .service-image img {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
#service .service-card:hover .service-image::after {
  opacity: 1;
}
#service .service-card .service-content {
  width: 55%;
  padding: 28px;
  transition: transform 0.4s ease;
}
#service .service-card .service-content .card-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 10px;
}
#service .service-card .service-content .card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555555;
}

#fleet {
  background: #f4f4f4;
  padding: 40px 0px;
}
#fleet p.text-center {
  font-size: 15px;
  padding: 10px 0;
}
#fleet .vehicle-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 1px solid #cecece;
}
#fleet .vehicle-title {
  font-weight: 500;
  font-size: 18px;
  color: var(--black);
}
#fleet .vehicle-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 220px;
}
#fleet .capacity-box {
  display: flex;
  font-size: 12px;
  background: #e9e9e9;
  padding: 10px 12px;
  border-radius: 6px;
}
#fleet .capacity-box strong {
  font-size: 16px;
  color: var(--black);
  margin-right: 8px;
  margin-top: 4px;
  display: inline-block;
}
#fleet .capacity-box span {
  line-height: 1.2;
  padding: 0px 8px;
  border-right: 1px solid #dfdfdf;
  color: #7b7b7b;
  font-weight: 500;
}
#fleet .capacity-box span:last-child {
  border-right: unset;
}
#fleet .vehicle-image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#fleet .vehicle-features {
  background: #e9e9e9;
  border-radius: 10px;
  padding: 10px 6px;
  font-size: 14px;
  color: #7b7b7b;
  justify-content: center;
}
#fleet .vehicle-features > div {
  font-size: 14px;
  padding: 0px 12px;
  border-right: 1px solid #dfdfdf;
  line-height: 16px;
}
#fleet .vehicle-features > div:last-child {
  border-right: 0px solid transparent;
}
#fleet .vehicle-features strong {
  display: block;
  color: var(--black);
  margin-top: 4px;
  font-weight: 500;
}
#fleet .vehicle-pricing {
  font-size: 14px;
}
#fleet .vehicle-pricing li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}
#fleet .vehicle-pricing li:last-child {
  border-bottom: none;
}
#fleet .vehicle-pricing li span {
  font-size: 14px;
  color: #737373;
  max-width: 70%;
}
#fleet .vehicle-pricing li strong {
  color: var(--black);
  font-weight: 400;
  font-size: 14px;
}
#fleet .vehicle-btn {
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
}
#fleet .vehicle-config{
  background:#f3f3f3;
  border-radius:10px;
  padding:14px;
  text-align:center;
}
#fleet .config-title{
  font-size:14px;
  font-weight:500;
  margin-bottom:8px;
  color:var(--black);
}
#fleet .config-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:6px;
  margin-bottom:8px;
}
#fleet .config-list li{
  background:#fff;
  border:1px solid #e2e2e2;
  padding:4px 10px;
  border-radius:6px;
  font-size:13px;
  color:#555;
}
#fleet .config-note{
  font-size:12px;
  color:#777;
}
.video-hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.video-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/service-bg.webp') center/cover no-repeat;
  z-index: 0;
}
.video-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.video-hero .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
.video-hero .container {
  position: relative;
  z-index: 2;
}
.video-hero .hero-title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.video-hero .hero-subtitle {
  font-size: 15px;
  color: #f4f4f4d6;
  /* max-width: 520px; */
  margin-bottom: 30px;
}
.video-hero .hero-actions .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
}
.video-hero .hero-actions .btn-outline-light {
  border-color: var(--border-dark);
  color: var(--white);
}
.video-hero .hero-actions .btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
}

.contact_faq_section {
  color: var(--white);
  overflow-x: hidden;
}
.contact_faq_section .container{
  background: linear-gradient(180deg,#2a2a2a,#1e1e1e);
  border-radius: 35px;
  padding: 60px;
}
.contact_faq_section .contact-content{
  background:#0b0b0b;
  padding:35px;
  border-radius:20px;
  border:1px solid #2a2a2a;
}
.contact_faq_section .contact-title{
  font-size:36px;
  font-weight:500;
  letter-spacing:0.5px;
}
.contact_faq_section .contact-desc{
  font-size:15px;
  color:#bfbfbf;
}
.contact_faq_section .custom-input{
  background:#050505;
  border:1px solid #2b2b2b;
  border-radius:10px;
  padding:12px 16px;
  transition:0.25s;
  font-size: 12px;
  color: #ffffff;
}
.contact_faq_section .custom-input::placeholder{
  color:#8a8a8a;
}
.contact_faq_section .custom-input:focus{
  border-color:#fff;
  box-shadow:0 0 0 1px #fff;
}
.contact_faq_section .iti.iti--allow-dropdown {
  width: 100%;
}
.contact_faq_section .custom-textarea{
  border-radius: 14px;
  min-height: 100px;
  color: #ffffff;
}
.contact_faq_section input:-webkit-autofill,
.contact_faq_section input:-webkit-autofill:hover,
.contact_faq_section input:-webkit-autofill:focus,
.contact_faq_section textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #050505 inset !important; /* match your bg */
  -webkit-text-fill-color: #ffffff !important; /* keep text white */
  transition: background-color 5000s ease-in-out 0s;
}
.contact_faq_section input,
.contact_faq_section textarea {
  background-color: #050505 !important;
  color: #ffffff;
}
.contact_faq_section .contact-btn{
  background:#fff;
  color:#000;
  border-radius:30px;
  padding:12px 40px;
  font-weight:600;
  transition:0.3s;
}
.contact_faq_section .contact-btn:hover{
  background:#eaeaea;
}
.contact_faq_section .contact-image{
  height:100%;
  border-radius:20px;
  overflow:hidden;
}
.contact_faq_section .contact-image img{
  height:100%;
  width:100%;
  object-fit:cover;
}
.contact_faq_section .contact-image:hover img{
  transform:scale(1.05);
}
.contactForm .grc {
  padding-left: 0;
}
.contactForm .grc .recaptcha-box {
  transform: scale(0.90);
}
.contact_faq_section .faq-section {
  padding: 40px 10px;
}
.contact_faq_section .faq-section .faq-title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}
.contact_faq_section .faq-section .faq-description {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}
.contact_faq_section .faq-section .faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-dark);
}
.contact_faq_section .faq-section .faq-accordion .accordion-item:last-child {
  border-bottom: unset;
}
.contact_faq_section .faq-section .faq-accordion .accordion-button {
  background: transparent;
  color: var(--white);
  padding: 22px 0;
  font-size: 17px;
  font-weight: 500;
  box-shadow: none;
}
.contact_faq_section .faq-section .faq-accordion .accordion-button::after {
  filter: invert(1);
}
.contact_faq_section .faq-section .faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--white);
}
.contact_faq_section .faq-section .faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.contact_faq_section .faq-section .faq-accordion .accordion-body {
  font-size: 14px;
  padding: 0 0 20px 0;
  color: #f4f4f4d6;
  line-height: 1.6;
}
.contact_faq_section .borderLine {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1607843137);
}

.contact_faq_section.contact {
  background: var(--bg-dark);
}

.contact_faq_section.contact.faq .contact-content {
  max-width: 520px;
}
.contact_faq_section.contact.faq .contact-content p {
  font-weight: 400;
  text-align: left;
  color: rgba(255, 255, 255, 0.5019607843);
}

.airports-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.airports-section .airports-header {
  margin-bottom: 20px;
}
.airports-section .airports-header h3 {
  font-size: 24px;
  font-weight: 700;
}
.airports-section .airports-header .see-all {
  color: #181a1f;
  text-decoration: none;
}
.airports-section .airports-header .see-all:hover {
  text-decoration: underline;
}
.airports-section .airport-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.airports-section .airport-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7019607843), transparent);
}
.airports-section .airport-card img {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
}
.airports-section .airport-card span {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-weight: 400;
  color: #fff;
  z-index: 1;
}

.top-routes-section {
  padding: 40px 0;
  background-color: #ffffff;
}
.top-routes-section .routes-image {
  border-radius: 10px;
  overflow: hidden;
}
.top-routes-section .routes-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  border-radius: 10px;
}
.top-routes-section .routes-header {
  margin-bottom: 16px;
}
.top-routes-section .routes-header h2 {
  font-size: 24px;
  font-weight: 700;
}
.top-routes-section .routes-header .see-all {
  color: #181a1f;
  text-decoration: none;
}
.top-routes-section .routes-header .see-all:hover {
  text-decoration: underline;
}
.top-routes-section .routes-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.top-routes-section .route-item {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 10px 14px;
  background-color: #fff;
}
.top-routes-section .route-item .route-main {
  font-weight: 400;
  color: #181a1f;
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-routes-section .route-item .route-main .arrow {
  color: #999;
  font-weight: 400;
}
.top-routes-section .route-item .route-meta {
  font-size: 14px;
  color: #64666b;
  margin-top: 2px;
}

.testimonial-section {
  padding: 30px 0;
  background: #fff;
}
.testimonial-section .testimonial-text-slider h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #46474b;
}
.testimonial-section .testimonial-text-slider .stars {
  color: #f5b301;
  font-size: 18px;
  margin-bottom: 16px;
}
.testimonial-section .testimonial-text-slider p {
  font-size: 15px;
  line-height: 1.8;
  color: #46474b;
  margin-bottom: 20px;
}
.testimonial-section .testimonial-text-slider .author {
  font-size: 16px;
  font-weight: 500;
  color: #1f2022;
}
.testimonial-section .testimonial-image-slider {
  position: relative;
}
.testimonial-section .testimonial-image-slider img {
  width: 100%;
  border-radius: 18px;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-section .testimonial-image-slider .swiper-button-prev,
.testimonial-section .testimonial-image-slider .swiper-button-next {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0px 4px 4px rgba(0, 0, 0, 0.1019607843);
}
.testimonial-section .testimonial-image-slider .swiper-button-prev svg,
.testimonial-section .testimonial-image-slider .swiper-button-next svg {
  width: 10px;
  color: #000000;
  font-weight: 600;
}

.luxury-section {
  padding: 40px 0;
  background: #ffffff;
}
.luxury-section .luxury-card.cta {
  background: linear-gradient(135deg, #000000 0%, #3a3a3a 45%, #bfbfbf 75%, #ffffff 100%);
}
.luxury-section .luxury-card {
  background: #fafafa;
  border-radius: 35px;
  padding: 50px 30px;
}
.luxury-section .cta .luxury-content .section-title {
  color: #f2f2f2;
}
.luxury-section .luxury-content .section-title {
  margin-bottom: 20px;
  color: #000;
}
.luxury-section .luxury-content .features {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
  color: #f2f2f2;
}
.luxury-section .luxury-content .features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.luxury-section .luxury-content .features ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: #6a7282;
  line-height: 1.9;
}
.luxury-section .luxury-content .features ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 25px;
  top: -10px;
}
.luxury-section .luxury-content .commonbtn {
  transition: all 0.3s ease;
  border: 1px solid #ccc;
}
.luxury-section .luxury-content .commonbtn:hover {
  background: #222;
  color: #fff;
}
.luxury-section .luxury-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.site-footer {
  background: #1c1c1c;
  color: var(--text-muted);
  padding: 60px 0 30px;
  font-size: 14px;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
}
.site-footer a {
  color: #ddddddd4;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--white);
}
.site-footer h6 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.site-footer .footer-brand {
  width: 80%;
}
.site-footer .footer-brand .logo {
  color: var(--white);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}
.site-footer .footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 400;
}
.site-footer .footer-contact li {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
}
.site-footer .footer-social {
  display: flex;
  gap: 10px;
}
.site-footer .footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  transition: 0.3s;
}
.site-footer .footer-social a:hover {
  background: var(--white);
  color: var(--black);
}
.site-footer .footer-copy {
  text-align: center;
  font-size: 13px;
  margin-top: 40px;
  color: #99a1af;
}
.site-footer ul.part2 {
  margin-top: 35px;
}

.commonbanner {
  border-radius: 0px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.5882352941), rgba(0, 0, 0, 0.537254902)), url(../images/commonbg.webp);
  background-size: cover;
}
.commonbanner .bd {
  text-align: center;
}
.commonbanner .bd .bd-item a {
  color: var(--white);
  text-decoration: none;
}
.commonbanner .bd .bd-item a:hover {
  text-decoration: underline;
}
.commonbanner .bd .bd-item.active {
  color: rgb(215, 215, 215);
}

.car-search-hero {
  background: url("../images/search-bg.webp") center/cover no-repeat;
  padding: 90px 0 110px;
  position: relative;
  /* Subtitle */
  /* SEARCH CARD */
  /* INPUT ROW */
  /* SEARCH BUTTON */
  /* FILTERS */
  /* FILTER ROW */
  /* CUSTOM SELECT */
}
.car-search-hero .container {
  position: relative;
  z-index: 2;
}
.car-search-hero .hero-subtitle {
  color: #6a7282;
  margin-bottom: 22px;
}
.car-search-hero .search-box {
  background: var(--white, #fff);
  border-radius: 16px;
  padding: 18px 20px;
  max-width: 720px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}
.car-search-hero .search-input-wrap {
  position: relative;
}
.car-search-hero .search-input {
  height: 52px;
  border-radius: 12px;
  padding-right: 60px;
  border: none;
  background: #f4f5f7;
  font-size: 14px;
}
.car-search-hero .search-input:focus {
  box-shadow: none;
  background: #f4f5f7;
}
.car-search-hero .search-input::-moz-placeholder {
  color: #99a1af;
}
.car-search-hero .search-input::placeholder {
  color: #99a1af;
}
.car-search-hero .search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-search-hero .search-filters {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  justify-content: end;
}
.car-search-hero .filter-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-weight: 700;
  padding: 6px 34px 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  border: 1.5px solid #e5e7eb;
  background-color: #fff;
  color: #4a5565;
  cursor: pointer;
  line-height: 1.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%236b7280' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}
.car-search-hero .filter-select:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--primary, #000);
}
.car-search-hero .filter-btn {
  background: #fff;
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
}
.car-search-hero .filter-btn i {
  font-size: 12px;
}

#fleet {
  /* IMAGE */
  /* BODY */
  /* SPECS */
  /* COLORS */
  /* PRICE */
}
#fleet .car-card {
  background: var(--white, #fff);
  border-radius: 24px;
  border: 1px solid var(--border-color, #f3f4f6);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}
#fleet .car-img img {
  width: 100%;
  /* height: 295px; */
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#fleet .car-body {
  padding: 16px 18px 20px;
}
#fleet .car-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}
#fleet .car-subtitle {
  font-size: 13px;
  color: #6a7282;
  font-weight: 400;
  margin-bottom: 12px;
}
#fleet .car-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
#fleet .car-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color, #f3f4f6);
}
#fleet .car-specs li span {
  color: var(--text-muted, #6b7280);
}
#fleet .car-specs li strong {
  font-weight: 700;
}
#fleet .car-specs li:last-child {
  border-bottom: unset;
}
#fleet .car-colors {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted, #6b7280);
}
#fleet .color-dots {
  display: flex;
  gap: 6px;
}
#fleet .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
#fleet .dot.blue {
  background: #1d4ed8;
}
#fleet .dot.black {
  background: #000;
}
#fleet .car-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary, #000);
  /* margin-top: 20px; */
  padding: 10px 0px;
  border-top: 1px solid #f9fafb;
}

#fleet_single_car_details .car-detail {
  /* BACK LINK */
  /* ICON BUTTONS */
  /* BADGE */
  /* TITLE */
  /* META */
  /* PRICE CARD */
  /* INFO BOX */
  /* MAIN SLIDER */
  /* THUMB SLIDER */
}
#fleet_single_car_details .car-detail .back-link {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  font-weight: 700;
}
#fleet_single_car_details .car-detail .icon-btn {
  border: 1px solid #e5e7eb;
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
#fleet_single_car_details .car-detail .premium-badge {
  color: #ff6900;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}
#fleet_single_car_details .car-detail .car-title {
  font-weight: 900;
  font-size: 36px;
  margin-bottom: 8px;
}
#fleet_single_car_details .car-detail .car-meta {
  display: flex;
  gap: 16px;
  color: #6a7282;
}
#fleet_single_car_details .car-detail .price-card {
  background: #f9fafb;
  border-radius: 24px;
  padding: 20px;
  border: 1px solid #f3f4f6;
}
#fleet_single_car_details .car-detail .price-card .price {
  font-size: 36px;
  font-weight: 900;
}
#fleet_single_car_details .car-detail .price-card .price small {
  font-size: 16px;
  color: #6a7282;
  font-weight: 400;
}
#fleet_single_car_details .car-detail .price-card .commonbtn {
  border-radius: 16px;
  font-weight: 700;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.0980392157);
  margin: 20px 0px;
}
#fleet_single_car_details .car-detail .price-card .price-note {
  font-size: 12px;
  text-align: center;
  margin-top: 8px;
  color: #99a1af;
}
#fleet_single_car_details .car-detail .info-box {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
}
#fleet_single_car_details .car-detail .info-box span {
  display: block;
  font-size: 12px;
  color: #6b7280;
}
#fleet_single_car_details .car-detail .info-box strong {
  font-weight: 700;
  font-size: 16px;
}
#fleet_single_car_details .car-detail .car-main-slider img {
  width: 100%;
  height: 375px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
#fleet_single_car_details .car-detail .car-thumb-slider .swiper-slide {
  opacity: 0.5;
  cursor: pointer;
}
#fleet_single_car_details .car-detail .car-thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
  border: 1px solid #ff6900;
  border-radius: 10px;
}
#fleet_single_car_details .car-detail .car-thumb-slider img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.request-hire-section {
  /* LEFT */
  /* RIGHT */
}
.request-hire-section .request-card {
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1), 0 1px 3px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 30px;
}
.request-hire-section .request-card .commonbtn {
  border-radius: 16px;
  font-weight: 900;
}
.request-hire-section .request-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.request-hire-section .request-title .icon {
  background: #fef9c2;
  color: #d08700;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.request-hire-section .request-title h6 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.request-hire-section .form-group label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.request-hire-section .request-input {
  background: #f9fafb;
  border: none;
  border-radius: 12px;
  height: 44px;
  padding: 10px 14px;
}
.request-hire-section .request-input:focus {
  box-shadow: none;
  outline: none;
}
.request-hire-section .request-info {
  background: #f9fafb;
  border-radius: 16px;
  padding: 20px;
}
.request-hire-section .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.request-hire-section .info-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.request-hire-section .info-list li .info-icon {
  font-size: 18px;
  color: #99a1af;
  margin-top: 3px;
}
.request-hire-section .info-list li strong {
  font-size: 14px;
  font-weight: 700;
}
.request-hire-section .info-list li p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}
.request-hire-section .check-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.request-hire-section .check-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 700;
}
.request-hire-section .check-list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* required for solid icons */
  position: absolute;
  left: 0;
  color: #22c55e;
}

.performance-tech {
  /* TITLE */
}
.performance-tech .performance-card {
  background: linear-gradient(135deg, #0b1220, #0f172a);
  border-radius: 20px;
  padding: 28px;
  color: var(--white);
}
.performance-tech .performance-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 22px;
  position: relative;
  font-style: italic;
}
.performance-tech .performance-title span {
  display: block;
  width: 84px;
  height: 2px;
  background: #fdc700;
  margin-top: 6px;
}
.performance-tech .tech-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px;
  height: 100%;
  position: relative;
}
.performance-tech .tech-item i {
  color: #fdc700;
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}
.performance-tech .tech-item small {
  display: block;
  font-size: 12px;
  color: #99a1af;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  font-weight: 700;
}
.performance-tech .tech-item strong {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
}
.performance-tech .about-car h6 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 24px;
  color: #0a0a0a;
}
.performance-tech .about-car p {
  color: #4a5565;
  max-width: 750px;
}
.performance-tech .about-car ul {
  padding-left: 16px;
  margin-top: 10px;
  list-style-type: disc;
}
.performance-tech .about-car ul li {
  font-size: 14px;
  color: #364153;
  margin-bottom: 6px;
  position: relative;
}
.performance-tech .about-car ul li::marker {
  color: #ff6900;
}

.chauffeur-section {
  background: var(--white);
}
.chauffeur-section .section-title {
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.chauffeur-section .section-title span {
  font-style: italic;
  font-weight: 700;
  text-decoration: underline;
}
.chauffeur-section .section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 570px;
  margin-bottom: 20px;
}
.chauffeur-section .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.chauffeur-section .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #364153;
  margin-bottom: 12px;
  font-weight: 400;
}
.chauffeur-section .feature-list li i {
  font-size: 14px;
  margin-top: 4px;
}
.chauffeur-section .commonbtn {
  border-radius: 10px;
  margin-top: 20px;
}

.chauffeur-accordion .accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.chauffeur-accordion .accordion-button {
  background: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 25px 25px;
  box-shadow: none;
  color: var(--bg-dark);
}
.chauffeur-accordion .accordion-button::after {
  background-image: none;
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}
.chauffeur-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}
.chauffeur-accordion .accordion-button:focus {
  box-shadow: none;
}
.chauffeur-accordion .accordion-body {
  font-size: 14px;
  color: var(--text-muted);
  padding: 0 20px 18px;
  font-weight: 400;
}

.stats-section {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 70%), linear-gradient(180deg, #000000 0%, #0c0c0c 100%);
  padding: 70px 0;
}
.stats-section .stat-item {
  position: relative;
  /* subtle divider effect */
}
.stats-section .stat-item h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  font-style: italic;
}
.stats-section .stat-item p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #99a1af;
  margin: 0;
}
.stats-section .stat-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-50%);
}
.stats-section .stat-item:last-child::after {
  display: none;
}

.why-choose-us {
  padding: 40px 0;
  background: var(--white);
}
.why-choose-us .section-header {
  margin-bottom: 30px;
}
.why-choose-us .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
}
.why-choose-us .section-header h2 span {
  font-style: italic;
}
.why-choose-us .section-header .divider {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--black);
  margin-top: 8px;
}
.why-choose-us .why-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}
.why-choose-us .why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.why-choose-us .why-card .why-img {
  height: 220px;
  overflow: hidden;
}
.why-choose-us .why-card .why-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.why-choose-us .why-card .why-content {
  padding: 22px 22px 26px;
}
.why-choose-us .why-card .why-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}
.why-choose-us .why-card .why-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.why-choose-us .why-card .why-content .why-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.why-choose-us .why-card .why-content .why-link i {
  font-size: 12px;
  transition: transform 0.2s ease;
}
.why-choose-us .why-card .why-content .why-link:hover i {
  transform: translateX(4px);
}

.premium-services {
  padding: 40px 0;
  background: var(--white);
}
.premium-services .services-intro h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}
.premium-services .services-intro h2 span {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.premium-services .services-intro p {
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 385px;
}
.premium-services .services-intro .commonbtn {
  border-radius: 10px;
}
.premium-services .service-card {
  background: var(--white);
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 22px 22px 24px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1215686275);
}
.premium-services .service-card i {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 14px;
  display: inline-block;
  width: 48px;
  height: 48px;
  background: #f9fafb;
  border-radius: 16px;
  text-align: center;
  line-height: 48px;
}
.premium-services .service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.premium-services .service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  font-weight: 400;
}
.premium-services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.callback-section {
  padding: 40px 0;
  background: var(--white);
}
.callback-section .callback-wrapper {
  border-radius: 48px;
  overflow: hidden;
  background: linear-gradient(90deg, #000000 0%, #000000 48%, #111111 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.callback-section .callback-form {
  padding: 50px 48px;
  color: var(--white);
}
.callback-section .callback-form h2 {
  font-style: italic;
  font-weight: 600;
  margin-bottom: 8px;
}
.callback-section .callback-form h2 span {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.callback-section .callback-form p {
  color: #99a1af;
  margin-bottom: 26px;
}
.callback-section .callback-form .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 15px 14px;
  font-size: 13px;
  color: var(--white);
}
.callback-section .callback-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4901960784);
}
.callback-section .callback-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4901960784);
}
.callback-section .callback-form .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}
.callback-section .callback-form .commonbtn {
  background: var(--white);
  color: var(--black);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 1.63px;
  border-radius: 14px;
  padding: 15px 0px;
}
.callback-section .callback-image {
  height: 100%;
}
.callback-section .callback-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.vehicle-showcase {
  padding: 50px 0;
  background: var(--white);
  /* When hovering one, compress others */
}
.vehicle-showcase .image-hover-gallery {
  display: flex;
  gap: 14px;
  height: 420px;
  margin-bottom: 26px;
}
.vehicle-showcase .gallery-item {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  transition: flex 0.6s ease;
  cursor: pointer;
}
.vehicle-showcase .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.vehicle-showcase .gallery-item:first-child {
  flex: 4;
}
.vehicle-showcase .gallery-item:hover {
  flex: 4;
}
.vehicle-showcase .commonbtn {
  border-radius: 12px;
}
.vehicle-showcase .image-hover-gallery:hover .gallery-item {
  flex: 0.8;
}
.vehicle-showcase .image-hover-gallery:hover .gallery-item:hover {
  flex: 4;
}
.vehicle-showcase .vehicle-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}
.vehicle-showcase .vehicle-content p {
  line-height: 1.7;
  color: #212529;
  margin-bottom: 12px;
}

.vehicle-features .container {
  padding: 40px 30px;
  background: #fffbf7;
}
.vehicle-features .feature-item {
  color: var(--black);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
  line-height: 1.6;
  font-weight: 400;
}
.vehicle-features .feature-item i {
  font-size: 22px;
  color: var(--black);
  margin-top: 3.5px;
  flex-shrink: 0;
}

.city-transfer {
  padding: 40px 0;
  background: var(--white);
}
.city-transfer .city-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.city-transfer .city-content {
  padding-left: 40px;
}
.city-transfer .city-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--black);
}
.city-transfer .city-content p {
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 530px;
}
#serv-inner .city-transfer .city-content p {
  max-width: 95%;
}

.blog-main {
  padding: 40px 0;
  background: var(--white);
}
.blog-main .section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #292929;
  position: relative;
}
.blog-main .section-label::after {
  position: absolute;
  content: "";
  right: 0px;
  top: 5px;
  height: 1px;
  width: 65%;
  background: #f3f4f6;
}

.featured-post {
  border-radius: 10px;
}
.featured-post .featured-img {
  margin-bottom: 20px;
}
.featured-post .featured-img img {
  width: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-post .featured-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #292929;
}
.featured-post .featured-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6a7282;
  margin-bottom: 16px;
}
.featured-post .post-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: #101828;
}
.featured-post .post-meta .category {
  margin-left: 10px;
}
.featured-post .post-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #99a1af;
  font-weight: 400;
}
.featured-post .post-footer i {
  cursor: pointer;
}

.post-item {
  display: flex;
  gap: 14px;
}
.post-item img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.post-item .post-info h6 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}
.post-item .post-info .meta {
  font-size: 11px;
  font-weight: 400;
  color: #6a7282;
}
.post-item .post-info .meta span {
  text-transform: uppercase;
  margin-left: 5px;
  color: #101828;
}
.post-item .post-info .meta-bottom {
  font-size: 11px;
  color: #99a1af;
  margin-top: 4px;
}
.post-item .post-info .meta-bottom i {
  margin-left: 6px;
  color: #f5b400;
}
.post-item .postNumber {
  font-size: 36px;
  font-weight: 700;
  color: #f3f4f6;
}

.blog-page {
  padding: 40px 0;
  background: #fff;
  font-family: "Times New Roman", Times, serif;
  /* TITLE */
  /* META BAR */
  /* HERO IMAGE */
  /* INTRO */
  /* CONTENT */
  /* PULL QUOTE */
}
.blog-page .article-title {
  font-family: Georgia, serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}
.blog-page .article-meta {
  padding: 16px 0 22px;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 28px;
}
.blog-page .article-meta .author {
  gap: 12px;
}
.blog-page .article-meta .author .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  color: #99a1af;
}
.blog-page .article-meta .author .name {
  font-weight: 700;
}
.blog-page .article-meta .author .name .follow {
  color: #009966;
  font-weight: 400;
  margin-left: 6px;
  cursor: pointer;
  font-size: 14;
}
.blog-page .article-meta .author .info {
  font-size: 14px;
  color: #6a7282;
}
.blog-page .article-meta .share-icons i {
  font-size: 14px;
  color: #555;
  margin-left: 14px;
  cursor: pointer;
}
.blog-page .article-hero {
  margin-bottom: 26px;
}
.blog-page .article-hero img {
  width: 100%;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-page .article-intro {
  font-size: 18px;
  color: #1e2939;
  font-weight: 400;
  margin-bottom: 22px;
}
.blog-page .article-content {
  font-size: 18px;
  color: #1e2939;
  font-weight: 400;
  line-height: 1.8;
}
.blog-page .article-content p {
  margin-bottom: 20px;
}
.blog-page .pull-quote {
  font-style: italic;
  font-size: 24px;
  line-height: 1.6;
  padding-left: 18px;
  border-left: 3px solid #1aa36f;
  margin: 32px 0;
  color: #292929;
  font-weight: 400;
}

.airport-section {
  padding: 40px 0;
  /* IMAGE */
  /* TITLE */
  /* LIST GRID */
  /* ITEM */
}
.airport-section .airport-box {
  background: var(--bg-dark);
  border-radius: 18px;
  padding: 28px;
}
.airport-section .airport-image {
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}
.airport-section .airport-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.airport-section .section-title {
  color: var(--white);
  font-weight: 600;
  text-align: center;
  margin-bottom: 22px;
}
.airport-section .airport-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 14px;
}
.airport-section .airport-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #3b3b3b;
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.25s ease;
}
.airport-section .airport-item i {
  font-size: 16px;
  transform: rotate(-45deg);
}
.airport-section .airport-item:hover {
  background: #444;
}

.airport-feature-section {
  padding: 50px 0;
}
.airport-feature-section .feature-wrapper {
  background: #fffbf7;
  padding: 40px 0px;
}
.airport-feature-section .feature-header {
  max-width: 90%;
  margin: 0 auto 60px;
}
.airport-feature-section .feature-header h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #000;
}
.airport-feature-section .feature-header p {
  line-height: 1.7;
  color: #212529;
}
.airport-feature-section .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.airport-feature-section .feature-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.airport-feature-section .feature-list li i {
  font-size: 18px;
  color: #000;
  margin-top: 3px;
  flex-shrink: 0;
}
.airport-feature-section .feature-list li h6 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
  color: #212529;
}
.airport-feature-section .feature-list li span {
  line-height: 1.6;
  color: #717171;
}
.airport-feature-section .feature-image {
  width: 100%;
}
.airport-feature-section .feature-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 991px) {
  .airport-feature-section .feature-image {
    margin: 0 auto;
  }
  .airport-feature-section .feature-header {
    margin-bottom: 40px;
  }
}

.main-faq-section {
  padding: 40px 0;
  background: var(--white);
  /* LEFT */
  /* ACCORDION RESET */
  /* RESPONSIVE */
}
.main-faq-section .faq-intro h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0c0c0d;
}
.main-faq-section .faq-intro p {
  line-height: 1.7;
  color: var(--text-muted);
}
.main-faq-section .faq-intro p a {
  text-decoration: underline;
}
.main-faq-section .faq-accordion .accordion-item {
  border: none;
  border-top: 1px solid #c3c3c3;
  border-radius: 0px;
}
.main-faq-section .faq-accordion .accordion-button {
  background: transparent;
  box-shadow: none;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 400;
  color: #0c0c0d;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-faq-section .faq-accordion .accordion-button::after {
  display: none;
}
.main-faq-section .faq-accordion .accordion-button .icon {
  font-size: 14px;
  color: var(--black);
  transition: transform 0.3s ease;
}
.main-faq-section .faq-accordion .accordion-button:not(.collapsed) {
  color: var(--black);
}
.main-faq-section .faq-accordion .accordion-button:not(.collapsed) .icon {
  transform: rotate(45deg);
}
.main-faq-section .faq-accordion .accordion-body {
  padding: 0 0 20px;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 991px) {
  .main-faq-section .faq-intro {
    margin-bottom: 30px;
  }
}

.tour_cards_wrapper > p {
  color: #555555;
  margin-top: 15px;
}
.tour_cards_wrapper .tourcategory {
  color: #64748b;
  margin-top: 10px;
  display: inline-block;
}
.tour_cards_wrapper .tourcard {
  transition: 0.3s;
}
.tour_cards_wrapper .tourcard:hover {
  transform: translateY(-6px);
}
.tour_cards_wrapper .tourcard:hover img {
  transform: scale(1.05);
}
.tour_cards_wrapper .tourcard:hover .tourcontent .tourprice {
  transform: scale(1.02);
}
.tour_cards_wrapper .tourcard img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}
.tour_cards_wrapper .tourcard .tourtitle {
  padding-bottom: 10px;
}
.tour_cards_wrapper .tourcard .tourcontent {
  position: relative;
}
.tour_cards_wrapper .tourcard .tourcontent .tourprice {
  position: absolute;
  font-weight: 800;
  font-size: 24px;
  top: 10px;
  right: 0;
  font-family: "Manrope", sans-serif;
  background: #fff;
  transition: 0.3s;
}
.tour_cards_wrapper .tourcard .tourcontent > a {
  background: #000;
  padding: 12px 20px;
  color: #fff;
  border-radius: 4px;
  margin-top: 20px;
  display: inline-block;
  transition: 0.3s;
}
.tour_cards_wrapper .borderbtn {
  background: var(--white);
  border: 1px solid var(--black);
  color: var(--black);
  width: -moz-max-content;
  width: max-content;
  border-radius: 4px;
  transition: 0.3s;
}
.tour_cards_wrapper .borderbtn:hover {
  color: var(--white);
  background: var(--bg-dark);
}

.tour-detail {
  padding: 60px 0;
  background: var(--white);
  /* IMAGE */
  /* META */
  /* DIVIDER */
  /* LOWER NOTE */
  /* TAG BUTTONS */
  /* RESPONSIVE */
}
.tour-detail .tour-image img {
  width: 100%;
  max-height: 430px;
  border-radius: 2px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.tour-detail .tour-meta {
  margin-top: 18px;
  gap: 20px;
}
.tour-detail .tour-meta h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 6px 0 8px;
  color: var(--black);
}
.tour-detail .tour-meta .tour-duration {
  font-size: 14px;
  color: var(--text-muted);
}
.tour-detail .tour-meta .tour-desc {
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 400;
}
.tour-detail .tour-meta .tour-price {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  margin-top: 4px;
}
.tour-detail .tour-divider {
  margin: 28px 0;
  border-color: #e5e5e5;
}
.tour-detail .tour-note {
  font-size: 24px;
  color: var(--black);
  margin-bottom: 15px;
}
.tour-detail .tour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tour-detail .tour-tags span {
  background: var(--black);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: default;
  white-space: nowrap;
  font-weight: 700;
}
@media (max-width: 991px) {
  .tour-detail .tour-meta {
    flex-direction: column;
  }
  .tour-detail .tour-price {
    margin-top: 10px;
  }
}

.gallery-section {
  background: #f5f5f5;
  padding-top: 40px;
}
.gallery-section .swiper-wrapper {
  align-items: center;
}
.gallery-section .gallery-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #000000;
}
.gallery-section .gallery-subtitle {
  max-width: 960px;
  margin: 0 auto 0px;
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
}
.gallery-section .gallery-swiper {
  padding: 80px 0px;
}
.gallery-section .swiper-slide {
  transition: all 0.4s ease;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.gallery-section .swiper-slide img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.3s;
}
.gallery-section .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.85;
}
.gallery-section .slide-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  padding: 16px;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  transition: 0.3s;
}
.gallery-section .swiper-slide-active {
  transform: scale(1.2) translateX(-12px);
  z-index: 2;
  margin: 0px 30px !important;
  box-shadow: 0 0px 45px 0px rgba(0, 0, 0, 0.24);
  opacity: 1;
}
.gallery-section .swiper-slide-active .slide-caption {
  bottom: 0px;
}

.city_cards_wrapper {
  padding: 40px 0px;
  /* FRONT & BACK COMMON */
  /* FRONT */
  /* BACK */
}
.city_cards_wrapper .city_card_text {
  margin: 0px auto 30px;
  color: #6a7282;
  text-align: center;
  max-width: 510px;
}
.city_cards_wrapper .flip-card {
  height: 255px;
  perspective: 1200px;
}
.city_cards_wrapper .flip-card .flip-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
.city_cards_wrapper .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.city_cards_wrapper .flip-card-front,
.city_cards_wrapper .flip-card-back {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  backface-visibility: hidden;
}
.city_cards_wrapper .flip-card-front img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.city_cards_wrapper .flip-card-front .card-overlay {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
.city_cards_wrapper .flip-card-front .card-overlay .badge {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.75);
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.city_cards_wrapper .flip-card-front .card-overlay h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.city_cards_wrapper .flip-card-back {
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
}
.city_cards_wrapper .flip-card-back .icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.city_cards_wrapper .flip-card-back .icon-btn:hover {
  transform: scale(1.1);
}

.journey-section .section-title {
  font-size: 30px;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 10px;
}
.journey-section .section-subtitle {
  color: #6a7282;
  font-weight: 400;
  line-height: 1.6;
}
.journey-section .journey-section-wrapper {
  background: #f9fafb;
  padding: 30px 0px;
  /* Body */
}
.journey-section .journey-section-wrapper .journey-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease;
  border: 1.5px solid #f3f4f6;
}
.journey-section .journey-section-wrapper .journey-card:hover {
  transform: translateY(-4px);
}
.journey-section .journey-section-wrapper .card-img {
  position: relative;
}
.journey-section .journey-section-wrapper .card-img img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.journey-section .journey-section-wrapper .card-img .badge-popular {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #000;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
}
.journey-section .journey-section-wrapper .card-img .rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
}
.journey-section .journey-section-wrapper .card-img .rating i {
  color: #fbbf24;
  margin-right: 3px;
}
.journey-section .journey-section-wrapper .card-body {
  padding: 18px;
}
.journey-section .journey-section-wrapper .card-body h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 8px;
}
.journey-section .journey-section-wrapper .route {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}
.journey-section .journey-section-wrapper .route i {
  margin: 0 4px;
  font-size: 11px;
}
.journey-section .journey-section-wrapper .meta {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 14px;
}
.journey-section .journey-section-wrapper .meta i {
  margin-right: 5px;
}
.journey-section .journey-section-wrapper .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.journey-section .journey-section-wrapper .price-row span {
  font-size: 13px;
}
.journey-section .journey-section-wrapper .price-row span strong {
  font-size: 15px;
}
.journey-section .journey-section-wrapper .price-row .btn {
  border-radius: 10px;
  font-size: 12px;
  padding: 6px 14px;
}

.comfort-section {
  /* Stats */
  /* Image */
}
.comfort-section .comfort-text {
  line-height: 1.7;
  color: #6a7282;
  max-width: 520px;
}
.comfort-section .stats span {
  font-size: 12px;
  letter-spacing: 1px;
  color: #99a1af;
  font-weight: 700;
  text-transform: uppercase;
}
.comfort-section .comfort-image {
  border-radius: 24px;
  overflow: hidden;
}
.comfort-section .comfort-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

.about-city-section {
  background: #ffffff;
}
.about-city-section .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f2f2f2;
  font-size: 13px;
  color: #111;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}
.about-city-section .back-btn i {
  font-size: 12px;
}
.about-city-section .back-btn:hover {
  background: #eaeaea;
  color: #000;
}
.about-city-section .left-content .section-title {
  font-size: 30px;
  margin-bottom: 20px;
}
.about-city-section .left-content .section-heading {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.about-city-section .left-content .section-heading .heading-line {
  width: 3px;
  background: #000;
  border-radius: 2px;
}
.about-city-section .left-content .section-heading h2 {
  font-size: 30px;
  line-height: 1.25;
  margin: 0;
}
.about-city-section .left-content .about-text {
  line-height: 1.7;
  color: #4a5565;
  margin-bottom: 0;
}
.about-city-section .left-content .available-fleet {
  background: #fff;
  /* Card */
  /* Image */
  /* Body */
  /* Meta pills */
  /* Footer */
  /* Button */
}
.about-city-section .left-content .available-fleet .fleet-title {
  margin: 0;
}
.about-city-section .left-content .available-fleet .view-all {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}
.about-city-section .left-content .available-fleet .view-all i {
  font-size: 12px;
}
.about-city-section .left-content .available-fleet .view-all:hover {
  text-decoration: underline;
}
.about-city-section .left-content .available-fleet .fleet-card {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  border: 1.5px solid #f3f4f6;
}
.about-city-section .left-content .available-fleet .fleet-img {
  height: 225px;
}
.about-city-section .left-content .available-fleet .fleet-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-city-section .left-content .available-fleet .fleet-body {
  padding: 22px;
}
.about-city-section .left-content .available-fleet .fleet-body h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}
.about-city-section .left-content .available-fleet .fleet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.about-city-section .left-content .available-fleet .fleet-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  padding: 5px 12px;
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  color: #6a7282;
  background: var(--white);
}
.about-city-section .left-content .available-fleet .fleet-meta span i {
  font-size: 12px;
}
.about-city-section .left-content .available-fleet .fleet-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1.5px solid #e5e7eb;
}
.about-city-section .left-content .available-fleet .price {
  font-size: 24px;
  font-weight: 700;
}
.about-city-section .left-content .available-fleet .price span {
  font-size: 14px;
  color: #6a7282;
  margin-left: 2px;
}
.about-city-section .left-content .available-fleet .select-btn {
  border-radius: 14px;
  box-shadow: 0 4px 6px -4 rgba(0, 0, 0, 0.25);
}
.about-city-section .left-content .available-fleet .select-btn:hover {
  background: #111;
  color: #fff;
}
.about-city-section .left-content .transfer-points .transfer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid #f3f4f6;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.about-city-section .left-content .transfer-points .transfer-item:hover {
  background: #fafafa;
  border-color: #e5e7eb;
}
.about-city-section .left-content .transfer-points .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-city-section .left-content .transfer-points .icon i {
  font-size: 14px;
  color: #d1d5dc;
}
.about-city-section .left-content .transfer-points .content {
  flex: 1;
}
.about-city-section .left-content .transfer-points .content h6 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 2px;
}
.about-city-section .left-content .transfer-points .content p {
  font-size: 12px;
  color: #99a1af;
  margin: 0;
}
.about-city-section .left-content .transfer-points .arrow i {
  font-size: 12px;
  color: #9ca3af;
}
.about-city-section .right-content-form {
  /* Bottom Info Card */
}
.about-city-section .right-content-form .quote-wrapper {
  max-width: 390px;
}
.about-city-section .right-content-form .quote-card {
  background: radial-gradient(120% 120% at 0% 0%, #1a1f1d 0%, #050606 70%);
  border-radius: 24px;
  padding: 22px;
  color: #fff;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.2509803922);
}
.about-city-section .right-content-form .quote-card .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}
.about-city-section .right-content-form .quote-card label {
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
  display: block;
  font-weight: 700;
}
.about-city-section .right-content-form .quote-card .form-group {
  margin-bottom: 14px;
}
.about-city-section .right-content-form .quote-card .input-wrap {
  position: relative;
}
.about-city-section .right-content-form .quote-card .input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #2ecc71;
  font-size: 14px;
}
.about-city-section .right-content-form .quote-card .input-wrap input {
  width: 100%;
  height: 42px;
  padding: 0 14px 0 38px;
  border-radius: 10px;
  background: linear-gradient(180deg, #2a2a2a, #1f1f1f);
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  color: #fff;
  font-size: 14px;
}
.about-city-section .right-content-form .quote-card .input-wrap input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3019607843);
}
.about-city-section .right-content-form .quote-card .input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.3019607843);
}
.about-city-section .right-content-form .quote-card .simple-input {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(180deg, #2a2a2a, #1f1f1f);
  border: 1px solid #373737;
  color: #fff;
  font-size: 13px;
  padding: 0 12px;
}
.about-city-section .right-content-form .quote-card .check-btn {
  width: 100%;
  height: 46px;
  margin-top: 18px;
  background: #373737;
  box-shadow: 0px 4px 6px -4px rgba(255, 255, 255, 0.2), 0px 10px 15px -3px rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  transition: 0.2s;
}
.about-city-section .right-content-form .quote-card .check-btn:hover {
  background: var(--white);
  color: var(--black);
}
.about-city-section .right-content-form .quote-card .secure-text {
  margin-top: 14px;
  font-size: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3019607843);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about-city-section .right-content-form .quote-card .secure-text i {
  margin-right: 6px;
}
.about-city-section .right-content-form .why-card {
  margin-top: 35px;
  background: #f5f5f5;
  border-radius: 14px;
  padding: 18px;
}
.about-city-section .right-content-form .why-card h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.about-city-section .right-content-form .why-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.about-city-section .right-content-form .why-card ul li {
  font-size: 14px;
  color: #000000;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.about-city-section .right-content-form .why-card ul li i {
  color: #000;
  font-size: 14px;
  margin-top: 2px;
}

.destination-hero {
  position: relative;
  height: 420px;
  background: url("../images/london-hero.webp") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.destination-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 45%, #ffffff 100%);
  z-index: 1;
}
.destination-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}
.destination-hero .hero-content {
  padding-bottom: 20px;
}
.destination-hero .hero-content .badge-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.destination-hero .hero-content .badge-wrap .premium {
  background: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.destination-hero .hero-content .badge-wrap .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}
.destination-hero .hero-content .badge-wrap .rating i {
  color: #f5c518;
}
.destination-hero .hero-content .badge-wrap .rating span {
  margin-left: 6px;
  color: #e5e7eb;
}
.destination-hero .hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}
.destination-hero .hero-content p {
  max-width: 520px;
  font-size: 14px;
  color: #e5e7eb;
  line-height: 1.6;
}
.destination-hero .hero-stats {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  padding-bottom: 20px;
}
.destination-hero .hero-stats .stat-card {
  background: #fff;
  color: #000;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.destination-hero .hero-stats .stat-card i {
  font-size: 18px;
  color: #16a34a;
  width: 40px;
  height: 40px;
  background: #ecfdf5;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}
.destination-hero .hero-stats .stat-card small {
  font-size: 10px;
  color: #6b7280;
  letter-spacing: 1px;
}
.destination-hero .hero-stats .stat-card strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.citysingle_cards_wrapper {
  background: #f4f4f4;
}
.citysingle_cards_wrapper .section-title {
  font-weight: 600;
}
.citysingle_cards_wrapper .container > p {
  color: #555555;
}
.citysingle_cards_wrapper .container .tourcard {
  background: #ffffff;
  border-radius: 8px;
  padding: 15px;
}
/* Service single */
#serv-inner .choose-us {
	padding: 60px 0;
	background: #fff;
}
#serv-inner .section-title {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 20px
}
#serv-inner .choose-wrapper {
	display: flex;
	align-items: center;
	gap: 50px
}
#serv-inner .choose-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px
}
#serv-inner .choose-box {
	display: flex;
	gap: 18px;
	background: #fff;
	padding: 22px;
	border-radius: 12px;
	border: 1px solid #e5e5e5;
	transition: .3s
}
#serv-inner .choose-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08)
}
#serv-inner .icon {
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #000;
	color: #fff;
	font-size: 20px;
	flex-shrink: 0
}
#serv-inner .choose-box h3 {
	font-size: 18px;
	margin-bottom: 8px
}
#serv-inner .choose-box p {
	font-size: 14px;
	color: #555;
	line-height: 1.6
}
#serv-inner .choose-right {
	flex: 1
}
#serv-inner .choose-right img {
	width: 100%;
	border-radius: 25px;
	object-fit: cover
}
#serv-inner .benefits-premium {
	padding: 60px 0;
  background: #f4f4f4;
}
#serv-inner .premium-title {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 15px;
	letter-spacing: .5px
}
#serv-inner .premium-desc {
	color: #424141;
	line-height: 1.6;
	font-size: 15px
}
#serv-inner .benefit-premium-card {
	position: relative;
	padding: 40px;
	background: #141414;
	border-radius: 14px;
	height: 100%;
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: .4s ease;
	overflow: hidden
}
#serv-inner .benefit-premium-card:hover {
	transform: translateY(-10px);
	border-color: #ffffff40;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6)
}
#serv-inner .benefit-number {
	font-size: 48px;
	font-weight: 700;
	color: #ffffff2e;
	position: absolute;
	top: 20px;
	right: 25px
}
#serv-inner .benefit-premium-card h3 {
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: 600;
	color: #fff
}
#serv-inner .benefit-premium-card p {
	color: #bdbdbd;
	line-height: 1.8;
	font-size: 15px
}
#serv-inner .book-chauffeur {
	position: relative;
	background: url('../images/service-bg.webp') center/cover no-repeat;
	padding: 60px 20px
}
#serv-inner .book-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.65)
}
#serv-inner .book-chauffeur .container {
	position: relative;
	z-index: 2
}
#serv-inner .booking-glass-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	padding: 40px 50px;
	max-width: 900px;
	margin: auto;
	color: #fff;
	text-align: center
}

#serv-inner .booking-glass-card h2 {
	font-size: 42px;
	line-height: 1.3;
	margin-bottom: 25px;
	font-weight: 600
}
#serv-inner .booking-glass-card p {
	font-size: 15px;
	line-height: 1.7;
	color: #e6e6e6;
	margin-bottom: 15px
}
#serv-inner .booking-actions {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap
}
#serv-inner .btn-primary-book,
#serv-inner .btn-outline-book {
	padding: 15px 34px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: .3s
}
#serv-inner .btn-primary-book {
	background: #fff;
	color: #000
}
#serv-inner .btn-primary-book:hover {
	background: #000;
	color: #fff;
	border: 1px solid #fff
}
#serv-inner .btn-outline-book {
	border: 1px solid #fff;
	color: #fff
}
#serv-inner .btn-outline-book:hover {
	background: #fff;
	color: #000
}
#serv-inner .why-hourly{
  padding:50px 0;
  background:#f4f4f4;
}
#serv-inner .hourly-card{
  background:#fff;
  padding:20px;
  border-radius:14px;
  border:1px solid #ececec;
  height:100%;
  text-align:left;
  transition:.35s ease;
}
#serv-inner .hourly-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  border-color:#000;
}
#serv-inner .hourly-card .icon{
  width:60px;
  height:60px;
  background:#000;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-size:22px;
  margin-bottom:20px;
}
#serv-inner .hourly-card h3{
  font-size:20px;
  margin-bottom:12px;
  font-weight:600;
  color:#111;
}
#serv-inner .hourly-card p{
  font-size:15px;
  line-height:1.8;
  color:#555;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
#scrollTopBtn i {
  transition: transform 0.3s ease;
}
#scrollTopBtn:hover {
  transform: translateY(-4px);
  background: var(--bg-dark);
}
#scrollTopBtn:hover i {
  transform: translateY(-2px);
}
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .destination-hero {
    height: auto;
    padding-top: 120px;
  }
  .destination-hero .hero-stats {
    justify-content: flex-start;
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .section-heading h2 {
    font-size: 22px;
  }
  .about-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .banner > .container-fluid .banner-left h1 {
    font-size: 40px;
  }
  .contact_faq_section .contact-content {
    padding: 25px;
  }
  .contactForm .grc .recaptcha-box {
    transform: scale(0.70);
  }
}
@media (max-width: 1025px) {
  #service .service-card {
    flex-wrap: wrap;
  }
  #service .service-card .service-image {
    width: 100%;
    overflow: hidden;
    max-height: 250px;
  }
  #service .service-card .service-content {
    width: 100%;
  }
  #service .service-card .service-image img.resp {
    object-position: center;
    height: 275px;
  }
}
@media (max-width: 991px) {
  header .logo {
    width: 140px;
  }
  .site-footer .footer-top .footer-contact {
    grid-template-columns: repeat(2, 1fr);
  }
  .callback-section .callback-wrapper {
    border-radius: 18px;
  }
  .callback-section .callback-form {
    padding: 40px 30px;
  }
  .comfort-section .stats {
    gap: 3rem;
  }
  .comfort-section .comfort-text {
    max-width: 100%;
  }
  .vehicle-showcase .image-hover-gallery {
    height: 260px;
  }
  .blog-main {
    padding: 30px 0;
  }
  .city-transfer {
    padding: 60px 0;
  }
  .city-transfer .city-content {
    padding-left: 20px;
  }
  .city-transfer .city-content p, #serv-inner .city-transfer .city-content p {
    max-width: 100%;
  }
  .airport-section .airport-list {
    grid-template-columns: 1fr;
  }
  .airport-section .airport-title {
    text-align: left;
  }
  .blog-page .article-title {
    font-size: 30px;
  }
  .blog-page .article-meta {
    padding: 10px 15px;
  }
  /* Service single */
  #serv-inner .choose-wrapper {
		flex-direction: column
	}
	#serv-inner .booking-glass-card {
		padding: 30px 20px
	}
	#serv-inner .booking-glass-card h2 {
		font-size: 32px
	}
	#serv-inner .booking-glass-card p {
		font-size: 16px
	}
  #service .service-card {
    flex-wrap: wrap;
  }
  #service .service-card .service-image {
    width: 100%;
    overflow: hidden;
    max-height: 200px;
  }
  #service .service-card .service-content {
    width: 100%;
  }
  .contactForm .grc {
    padding-left: 12px;
  }
  .contactForm .grc .recaptcha-box {
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .stats-section {
    padding: 50px 0;
  }
  .stats-section .stat-item {
    margin-bottom: 30px;
  }
  .stats-section .stat-item::after {
    display: none;
  }
  .stats-section .stat-item h3 {
    font-size: 32px;
  }
  .callback-section {
    padding: 30px 0;
  }
  .callback-section .callback-image {
    height: 260px;
  }
  .premium-services {
    padding: 40px 0;
  }
  .premium-services .services-intro p {
    max-width: 100%;
  }
  .why-choose-us {
    padding: 40px 0;
  }
  .why-choose-us .section-header h2 {
    font-size: 26px;
  }
  .tour_cards_wrapper {
    background: #f6f6f6;
  }
  .gallery-section .swiper-slide img {
    height: 280px;
  }
  .vehicle-showcase .image-hover-gallery {
    flex-direction: column;
    height: auto;
  }
  .vehicle-showcase .image-hover-gallery .gallery-item {
    height: 200px;
  }
  .city-transfer {
    padding: 40px 0;
  }
  .city-transfer .city-content {
    padding-left: 0;
    margin-top: 25px;
  }
  .vehicle-features {
    padding: 30px 0;
  }
  .vehicle-features .feature-item {
    font-size: 12.5px;
  }
  /* Service single */
  #serv-inner .city-transfer .city-content {
    margin-top: 0;
  }
  #serv-inner .benefits-premium, #serv-inner .choose-us {
    padding: 40px 0;
  }
  #serv-inner .premium-title {
		font-size: 30px
	}
	#serv-inner .benefit-premium-card {
		padding: 30px
	}
  #serv-inner .hourly-card{
    text-align:center;
  }
  #serv-inner .hourly-card .icon{
    margin:auto;
    margin-bottom:18px;
  }
  .contact_faq_section .contact-content{
    padding: 20px;
  }
  .contact_faq_section .contact-title{
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 24px;
  }
  .section-sub-title {
    font-size: 20px;
    line-height: 30px;
  }
  .banner > .container-fluid .banner-left h1 {
    font-size: 20px;
    line-height: 30px;
  }
  header .book_your_ride {
    font-size: 10px;
  }
  .why-choose-us .feature-item h3 {
    font-size: 13px;
  }
  .why-choose-us .feature-item p {
    font-size: 11px;
  }
  .luxury-section .luxury-content .features {
    gap: 10px;
  }
  .site-footer .footer-top .footer-contact {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact_faq_section .container {
    border-radius: 0px;
    padding: 30px 0px;
  }
  #fleet .vehicle-features strong {
    font-size: 13px;
  }
  .gallery-section .swiper-slide-active {
    transform: unset;
    margin: 0px 20px 0px 0px !important;
  }
  .city_cards_wrapper .city_card_text {
    padding: 0px 15px;
  }
  /* Service single */
  #serv-inner .book-chauffeur {
		padding: 40px 10px
	}
	#serv-inner .booking-glass-card {
		padding: 25px 15px;
		border-radius: 14px
	}
	#serv-inner .booking-glass-card h2 {
		font-size: 22px;
		line-height: 1.4
	}
	#serv-inner .booking-glass-card p {
		font-size: 15px;
		line-height: 1.8
	}
	#serv-inner .booking-actions {
		flex-direction: column;
		align-items: center;
		gap: 12px
	}
	#serv-inner .btn-primary-book,
	#serv-inner .btn-outline-book {
		width: 100%;
		max-width: 280px;
		text-align: center
	}
    #serv-inner .section-title {
		font-size: 28px
	}

	#serv-inner .choose-box {
		flex-direction: column;
		align-items: flex-start
	}
	#serv-inner .icon {
		margin-bottom: 10px
	}
  .luxury-section .luxury-card {
    padding: 30px 20px;
  }
  .site-footer ul.part2 {
    margin-top: 0;
  }
  #fleet .vehicle-features > div {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */