@charset "UTF-8";
:root {
  /* ── Core Colors ───────────────── */
  --black: #0a0a0a;
  --charcoal: #2d2d2d;
  --mid: #555555;
  --silver: #888888;
  --border: #e4e4e4;
  --white: #ffffff;
  --white-soft: #f8f9fa;
  /* ── Semantic Colors (USE THESE IN UI) ── */
  --text-primary: var(--black);
  --text-secondary: var(--mid);
  --text-muted: var(--silver);
  --heading-color: #484848;
  --bg-primary: var(--white);
  --bg-soft: var(--white-soft);
  /* ── Typography ───────────────── */
  --ff-ui: "Inter", system-ui, sans-serif;
  --ff-serif: "Poppins", Georgia, serif;
  /* ── Radius ───────────────────── */
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 16px;
  /* ── Motion ───────────────────── */
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slide: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  /* ── Shadows ──────────────────── */
  --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.08);
  --shadow-deep: 0 18px 50px rgba(0, 0, 0, 0.18);
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter_18pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter_18pt-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter_18pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/poppins-regular-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/poppins-bold-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto !important;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--ff-ui);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  line-height: 1.75;
}

ul {
  list-style: none;
  padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.15;
}

em {
  font-style: italic;
  color: var(--black);
}

*:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor__dot {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}
.cursor__ring {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease, border-color 0.3s ease;
}
.cursor.hovered .cursor__ring {
  width: 56px;
  height: 56px;
  top: -28px;
  left: -28px;
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}
.cursor.hovered .cursor__dot {
  transform: scale(0);
  opacity: 0;
}

@media (hover: none) {
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}
.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 15px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t), visibility var(--t), transform var(--t);
  z-index: 998;
  cursor: none;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--charcoal);
}

.section-pad {
  padding: 40px 0px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--black);
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 18px;
  line-height: 1;
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
}
.section-label--light {
  color: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.18);
}
.section-label--light::before {
  background: rgba(255, 255, 255, 0.68);
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 15px;
}
.section-title em {
  color: var(--black);
  font-family: var(--ff-serif);
  font-style: italic;
}
.section-title--light {
  color: var(--white);
}
.section-title--center {
  text-align: center;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

.section-subtitle {
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #666;
  margin-bottom: 22px;
  max-width: 560px;
}
.section-subtitle a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.section-subtitle--light {
  color: rgba(255, 255, 255, 0.58);
}
.section-subtitle--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-subtitle--dropcap::first-letter {
  font-family: var(--ff-serif);
  font-size: 3.2em;
  font-weight: 700;
  line-height: 0.75;
  float: left;
  margin-right: 5px;
  margin-top: 6px;
  color: var(--black);
}
@media (max-width: 992px) {
  .section-subtitle {
    font-size: 14px;
    max-width: 480px;
  }
}
@media (max-width: 576px) {
  .section-subtitle {
    font-size: 13px;
    line-height: 1.6;
    max-width: 100%;
  }
}

.section-head {
  margin-bottom: 48px;
}
.section-head--center {
  text-align: center;
}
.section-head--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .section-head {
    margin-bottom: 36px;
  }
}
@media (max-width: 576px) {
  .section-head {
    margin-bottom: 28px;
  }
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--black);
  margin-bottom: 20px;
}
.section-divider--center {
  margin-left: auto;
  margin-right: auto;
}
.section-divider--light {
  background: rgba(255, 255, 255, 0.22);
}

.commonbtn {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--t);
  position: relative;
  overflow: hidden;
  animation: headerFloat 3s ease-in-out infinite;
}
.commonbtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: headerShine 2.5s linear infinite;
}
.commonbtn:hover i {
  animation: arrowSlide 0.6s ease infinite;
}
.commonbtn span {
  padding: 13px 22px;
  position: relative;
  z-index: 1;
}
.commonbtn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  border-radius: calc(var(--radius-md) - 2px);
  margin: 3px;
  font-size: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease, background var(--t);
}
.commonbtn:hover i {
  transform: translateX(-3px);
}
.commonbtn.dark {
  background: var(--black);
  color: var(--white);
}
.commonbtn.dark i {
  background: var(--white);
  color: var(--black);
}
.commonbtn.dark:hover {
  background: var(--charcoal);
}
.commonbtn.light {
  background: var(--white);
  color: var(--black);
}
.commonbtn.light i {
  background: var(--black);
  color: var(--white);
}
.commonbtn.light:hover {
  background: var(--white-soft);
}
.commonbtn.outline-light {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.42);
  display: flex;
  justify-content: space-between;
}
.commonbtn.outline-light i {
  background: var(--white);
  color: var(--black);
}
.commonbtn.outline-light:hover {
  box-shadow: inset 0 0 0 1.5px var(--white);
}
.commonbtn.outline-dark {
  background: transparent;
  color: var(--black);
  box-shadow: inset 0 0 0 0.5px var(--black);
}
.commonbtn.outline-dark i {
  background: var(--black);
  color: var(--white);
}
.commonbtn.outline-dark:hover {
  background: var(--black);
  color: var(--white);
}
.commonbtn.outline-dark:hover i {
  background: var(--white);
  color: var(--black);
}
.commonbtn.sm span {
  padding: 10px 18px;
}
.commonbtn.sm i {
  width: 38px;
  min-height: 38px;
  font-size: 11px;
  margin: 2px;
}

@keyframes arrowSlide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(12px);
    opacity: 0;
  }
  41% {
    transform: translateX(-12px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes headerFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes headerShine {
  0% {
    left: -120%;
  }
  100% {
    left: 120%;
  }
}
@keyframes arrowMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-3px);
  }
}
.logo img {
  width: 50px;
}

.booking_engine_container .lf-z-\[9999999\] {
  z-index: 1 !important;
}
.booking_engine_container .lf-w-full.lf-bg-white.lf-shadow-lg.lf-dropdown {
  border: 2px solid rgba(0, 0, 0, 0.738);
  background: #ffffff !important;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05), 0 15px 35px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(255, 255, 255, 0.6) inset !important;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.booking_engine_container .lf-w-full.lf-bg-white.lf-shadow-lg.lf-dropdown:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07), 0 20px 45px rgba(0, 0, 0, 0.14), 0 2px 2px rgba(255, 255, 255, 0.7) inset !important;
  transform: translateY(-2px);
}
.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner {
  padding: 10px;
}
.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: 100%;
  background: #000000 !important;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  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-top-2\/4 {
  top: 38% !important;
  color: #000000;
}

.topbar {
  background: var(--black);
  padding: 10px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: margin-top var(--t-slide);
  border-radius: 0px 0px 30px 30px;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--white);
  line-height: 1;
}
.topbar__item:hover {
  color: rgba(255, 255, 255, 0.85);
}
.topbar .brandname {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.topbar .brandname span {
  color: var(--black);
  background: white;
  padding: 5px;
  border-radius: 5px;
  font-size: 14px;
}
.topbar__social {
  width: 30px;
  height: 30px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.topbar__social:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  transition: box-shadow var(--t);
  padding: 15px 0px;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
  border-radius: 0px 0px 30px 30px;
}
.header .navbar {
  padding: 0;
}
.header .navbar > .container-xl {
  min-height: 72px;
  display: flex;
  align-items: center;
}
.header .header_btn {
  position: relative;
  overflow: hidden;
  animation: headerFloat 3s ease-in-out infinite;
}
.header .header_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: headerShine 2.5s linear infinite;
}
.header .header_btn:hover i {
  animation: arrowSlide 0.6s ease infinite;
}
@keyframes arrowSlide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(12px);
    opacity: 0;
  }
  41% {
    transform: translateX(-12px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes headerFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes headerShine {
  0% {
    left: -120%;
  }
  100% {
    left: 120%;
  }
}
@keyframes arrowMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-3px);
  }
}
.header .nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header .nav-phone__icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--black);
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.header .nav-phone:hover .header .nav-phone__icon {
  background: var(--black);
  color: var(--white);
}
.header .nav-phone__label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #aaa;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 3px;
}
.header .nav-phone__number {
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.header .nav-divider {
  width: 1px;
  height: 34px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.header .nav__links .nav__link {
  padding: 6px 12px !important;
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
  color: var(--black);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
.header .nav__links .nav__link:hover, .header .nav__links .nav__link.active {
  color: var(--white) !important;
  background: var(--black);
}
.header .nav__item--dropdown {
  position: relative;
}
.header .nav__item--dropdown:hover .nav__dropdown, .header .nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header .nav__item--dropdown:hover .nav__chevron, .header .nav__item--dropdown:focus-within .nav__chevron {
  transform: rotate(180deg);
}
.header .nav__dropdown-toggle {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.header .nav__chevron {
  font-size: 9px;
  transition: transform var(--t);
  opacity: 0.6;
}
.header .nav__dropdown {
  position: absolute;
  left: -80%;
  top: 100%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-deep);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}
.header .nav__dropdown::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  rotate: 45deg;
}
.header .nav__dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}
.header .nav__dropdown--wide {
  display: flex;
  min-width: 550px;
}
.header .nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--t);
  text-transform: capitalize;
}
.header .nav__dropdown-item:hover {
  background: var(--white-soft);
}
.header .nav__dropdown-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 2px;
}
.header .nav__dropdown-item span {
  display: block;
  font-size: 11px;
  color: var(--silver);
  font-weight: 400;
}
.header .nav__dropdown-item .nav__dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .nav__dropdown-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--white-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--black);
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.header .nav__dropdown-item:hover .nav__dropdown-icon {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.whatsapp-container {
  background-color: #42db87;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  box-shadow: 2px 2px 3px #000;
  position: fixed;
  right: 15px;
  bottom: 20px;
  z-index: 7;
}

.sidebar-trigger {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0, 0, 0, 0.13);
  border-radius: var(--radius-sm);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--t);
}
.sidebar-trigger svg {
  width: 20px;
  height: 20px;
}
.sidebar-trigger svg rect {
  fill: var(--black);
  transition: fill var(--t);
}
.sidebar-trigger:hover, .sidebar-trigger.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.sidebar-trigger:hover svg rect, .sidebar-trigger.active svg rect {
  fill: var(--white);
}

.toggler {
  background: none;
  border: none;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: none;
}
.toggler span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: var(--t);
}

.sidebar {
  width: 340px !important;
  background: var(--black-2, #111111);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.sidebar__header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.sidebar__body {
  padding: 26px 24px;
  overflow-y: auto;
  flex: 1;
}
.sidebar__desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
}
.sidebar__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 22px 0;
}
.sidebar__contact-heading {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.sidebar__contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.sidebar__contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.sidebar__contact-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 3px;
  line-height: 1;
}
.sidebar__contact-val {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
  transition: color var(--t);
}
.sidebar__contact-val:hover {
  color: var(--white);
}
.sidebar__socials {
  display: flex;
  gap: 9px;
}
.sidebar__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.sidebar__socials a:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: none;
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.close-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.offcanvas {
  background: var(--black);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.offcanvas .offcanvas-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
}
.offcanvas .offcanvas-header button {
  border-color: var(--border);
}
.offcanvas .offcanvas-body {
  padding: 16px 24px 32px;
}
.offcanvas .mobile-link {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: color var(--t) !important;
}
.offcanvas .mobile-link:hover, .offcanvas .mobile-link.active {
  color: var(--white) !important;
}
.offcanvas .mobile-accordion__chevron {
  font-size: 10px;
  transition: transform var(--t);
  opacity: 0.5;
}
.offcanvas .mobile-accordion.open .mobile-accordion__chevron {
  transform: rotate(180deg);
}
.offcanvas .mobile-accordion__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}
.offcanvas .mobile-accordion__list > * {
  overflow: hidden;
}
.offcanvas .mobile-accordion__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t), background var(--t);
  border-radius: var(--radius-sm);
}
.offcanvas .mobile-accordion__list a i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  width: 16px;
}
.offcanvas .mobile-accordion__list a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}
.offcanvas .mobile-accordion__inner {
  overflow: hidden;
}
.offcanvas .mobile-accordion.open .mobile-accordion__list {
  grid-template-rows: 1fr;
}

.hero {
  position: relative;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 40px;
}
.hero__overlay,
.hero .hero-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.25) 100%);
  border-radius: 40px;
}
.hero .hero-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__left {
  color: var(--white);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
  padding: 12px 10px 12px 7px;
  border-radius: 10px;
}
.hero__badge-brand {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  line-height: 1;
}
.hero__badge-tag {
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}
.hero__heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  /* max-width: 420px; */
}
.hero__right {
  display: flex;
  justify-content: flex-end;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), transparent);
  animation: scrollPulse 2s ease infinite;
}

.hero.common_banner {
  min-height: 80vh;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.city-banner {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 130px;
  margin: 40px 0px;
  margin-bottom: 0px;
}
.city-banner__skyline {
  flex-shrink: 0;
  width: clamp(200px, 28vw, 380px);
  height: auto;
  display: block;
  opacity: 0.72;
}
.city-banner__skyline--right {
  transform: scaleX(-1);
}
.city-banner__text {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
}
.city-banner__heading {
  font-family: var(--ff-ui);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--heading-color);
  line-height: 1.22;
}

.services {
  padding: 50px 0;
  background: var(--bg-soft);
}
.services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.services__cta {
  margin-top: 40px;
  text-align: center;
}
.services {
  /* ── Card ───────────────────────────────── */
}
.services .service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  will-change: transform;
  /* DEFAULT shadow (light) */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.services .service-card__img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.services .service-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services .service-card__content {
  padding: 18px 18px 20px;
  min-height: 190px;
}
.services .service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.services .service-card__top h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}
.services .service-card__top .arrow {
  font-size: 14px;
  opacity: 0.7;
  transition: transform var(--t);
}
.services .service-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}
.services .service-card__link {
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
}
.services .service-card__link:hover {
  text-decoration: underline;
}
.services .service-card:hover .arrow {
  transform: translate(2px, -2px);
}
.services .service-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.services .service-prev,
.services .service-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.services .service-prev:hover,
.services .service-next:hover {
  background: #333;
}

/* ── Why Choose Us ───────────────────────────────────── */
.why-choose .why-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.why-choose .why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 0, 0, 0.08);
}
.why-choose .why-card:hover .why-card__icon {
  background: var(--black);
  color: var(--white);
}
.why-choose .why-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.why-choose .why-card__icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: var(--white-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 20px;
  transition: all var(--t);
  flex-shrink: 0;
}
.why-choose .why-card__title {
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--heading-color);
  margin-bottom: 0;
}
.why-choose .why-card__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .why-choose .why-card {
    padding: 26px 22px;
  }
  .why-choose .why-card__title {
    font-size: 1.02rem;
  }
  .why-choose .why-card__text {
    font-size: 13px;
    line-height: 1.7;
  }
}
@media (max-width: 576px) {
  .why-choose .why-card {
    padding: 22px 18px;
  }
  .why-choose .why-card__top {
    gap: 12px;
    margin-bottom: 14px;
  }
  .why-choose .why-card__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 18px;
  }
  .why-choose .why-card__title {
    font-size: 0.98rem;
  }
  .why-choose .why-card__text {
    font-size: 12.8px;
    line-height: 1.65;
  }
}

.reviews {
  padding: 50px 0;
}
.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}
.reviews__rating span {
  font-size: 14px;
  color: var(--text-primary);
}
.reviews__stars {
  color: #f4b400;
  font-size: 16px;
  letter-spacing: 2px;
}
.reviews__based {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.reviews__controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}
.reviews__controls button {
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 14px;
  font-size: 13px;
  border-radius: var(--radius-md);
  transition: var(--t);
}
.reviews__controls button:hover {
  background: var(--white);
}
.reviews .section-label::before {
  display: none;
}

/* CARD */
.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  border: 1px solid var(--border);
  transition: 0.3s;
  min-height: 220px;
}
.review-card__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.review-card__user {
  display: flex;
  gap: 10px;
}
.review-card__user h4 {
  font-size: 14px;
  font-weight: 600;
}
.review-card__user span {
  font-size: 12px;
  color: var(--text-muted);
}
.review-card:hover {
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1019607843), 0 1px 3px 0px rgba(0, 0, 0, 0.1019607843);
}
.review-card .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1aa39a;
  color: white;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-card .stars {
  color: #f4b400;
  font-size: 14px;
}
.review-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.review-card .time {
  font-size: 12px;
  color: var(--text-muted);
}

.about {
  padding: 50px 0;
  background: var(--bg-soft);
  overflow-x: hidden;
}
.about .section-label {
  width: -moz-max-content;
  width: max-content;
}
.about .experience-box {
  position: absolute;
  left: 10px;
  bottom: 0px;
  background: var(--white);
  border-radius: 18px;
  padding: 40px 20px;
  width: 31%;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about .experience-box__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--charcoal);
}
.about .experience-box__number {
  font-size: 36px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.about .experience-box__text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.about-box {
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__link {
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.about {
  /* Review Card */
}
.about-review {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 16px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-review .stars {
  color: #f4b400;
  font-size: 14px;
  margin-bottom: 10px;
}
.about-review p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.9;
}
.about-review .author {
  margin-top: 12px;
}
.about-review .author strong {
  display: block;
  font-size: 13px;
}
.about-review .author span {
  font-size: 12px;
  opacity: 0.7;
}
.about {
  /* Video Card */
}
.about-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.about-video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-video .play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.206);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: grid;
  place-content: center;
  border: 2px solid rgba(255, 255, 255, 0.137254902);
}
.about-video .play-btn::before {
  content: "";
  display: block;
  margin-left: 3px;
  width: 0;
  height: 0;
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.app-cta {
  padding: 70px 0;
}
.app-cta__box {
  background: linear-gradient(135deg, #2d2d2d, #000);
  border-radius: 20px;
  padding: 40px 48px;
  color: var(--white);
}
.app-cta__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  margin-bottom: 12px;
}
.app-cta__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  line-height: 1.6;
}
.app-cta__stores {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.app-cta__stores img {
  display: block;
  height: auto;
  border-radius: 6px;
}

.faq {
  padding: 50px 0;
  overflow-x: hidden;
  background: var(--bg-soft);
  /* LEFT */
}
.faq .faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.faq .accordion-button {
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 18px;
  box-shadow: none;
}
.faq .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 18px;
  transform: none;
}
.faq .accordion-button:not(.collapsed)::after {
  content: "−";
}
.faq .accordion-body {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 14px 18px;
  border-top: 1px solid var(--border);
}
.faq {
  /* RIGHT CARD */
}
.faq .faq-card {
  position: relative;
  height: 100%;
}
.faq .faq-card__img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
}
.faq .faq-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.faq .faq-card__overlay {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  align-items: flex-start;
}
.faq .faq-card__overlay h3 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
}
.faq .faq-card__call {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px;
  border: 1px solid var(--border);
  width: 31%;
}
.faq .faq-card__call span {
  display: block;
  margin-bottom: 10px;
}
.faq .faq-card__call .phone i {
  font-size: 40px;
  margin: 10px 0px;
}
.faq .faq-card__call .phone p {
  font-size: 14px;
}

.footer {
  background: #0a0a0a;
  color: var(--white);
  padding: 70px 0 30px;
  border-radius: 20px 20px 0 0;
}
.footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition: var(--t);
  font-weight: 400;
  text-transform: capitalize;
}
.footer a:hover {
  color: var(--white);
}
.footer__logo img {
  max-width: 120px;
}
.footer__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer__links li {
  margin-bottom: 6px;
}
.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}
.footer__social {
  display: flex;
  gap: 5px;
}
.footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.footer__info span {
  font-size: 11px;
  opacity: 0.6;
  display: block;
}
.footer__info p {
  font-size: 13px;
  margin: 0;
}
.footer__copy {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.6;
}

.fleet {
  padding: 50px 0;
}
.fleet .fleet-slider {
  position: relative;
  padding: 0px 15px;
  overflow-x: hidden;
}
.fleet-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1019607843), 0 10px 15px -3px rgba(0, 0, 0, 0.1019607843);
  display: flex;
  flex-direction: column;
}
.fleet-card i {
  margin-right: 5px;
}
.fleet-card .fleet-card__img img {
  height: 230px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fleet-card .fleet-card__img .fleet-img-slider {
  position: relative;
}
.fleet-card .fleet-card__img .fleet-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  z-index: 1;
}
.fleet-card .fleet-card__img .fleet-pagination span {
  width: 4px;
  height: 4px;
  background: var(--white-soft);
}
.fleet-card .fleet-card__img .fleet-pagination .swiper-pagination-bullet-active {
  width: 22px;
}
.fleet-card .fleet-card__img .fleet-img-prev,
.fleet-card .fleet-card__img .fleet-img-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  text-align: center;
  line-height: 28px;
  cursor: pointer;
  z-index: 2;
}
.fleet-card .fleet-card__img .fleet-img-prev {
  left: 8px;
}
.fleet-card .fleet-card__img .fleet-img-next {
  right: 8px;
}
.fleet-card__badge {
  position: absolute;
  top: 242px;
  right: 12px;
  background: #1ecb4f;
  color: var(--white);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 1;
}
.fleet-card__body {
  padding: 18px;
}
.fleet-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
}
.fleet-card .sub {
  font-size: 12px;
  color: var(--silver);
}
.fleet-card__meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #e17100;
  margin: 10px 0;
}
.fleet-card__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 10px;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--mid);
}
.fleet-card__price {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 10px;
}
.fleet-card__price div {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 6px 0;
}
.fleet-card__price span {
  color: var(--silver);
}
.fleet-card__price b {
  font-weight: 600;
}
.fleet-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.fleet-card__actions a {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  border-radius: 8px;
}
.fleet-card__actions .btn-outline {
  border: 1px solid var(--border);
}
.fleet-card__actions .btn-dark {
  background: var(--black);
  color: var(--white);
}
.fleet {
  /* Swiper Controls */
}
.fleet .fleet-prev,
.fleet .fleet-next {
  position: absolute;
  top: 45%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  z-index: 2;
  cursor: pointer;
  text-align: center;
  line-height: 36px;
}
.fleet .fleet-prev {
  left: 0px;
}
.fleet .fleet-next {
  right: 0px;
}
.fleet .fleet-pagination {
  margin-top: 20px;
  text-align: center;
}
.fleet .fleet-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  background: #ccc;
  opacity: 1;
  border-radius: 16px;
  overflow: hidden;
}
.fleet .fleet-pagination .swiper-pagination-bullet-active {
  background: #000;
}

.home-fleet .fleet-card h3 {
  font-size: 18px;
  font-weight: 600;
}
.home-fleet .fleet-card .fleet-card__body {
  min-height: 278px;
}
.home-fleet .fleet-card .fleet-card__desc {
  font-size: 14px;
}

.why-choose {
  padding: 50px 0px;
}
.why-choose__left {
  position: sticky;
  top: 100px;
}
.why-choose__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
}
.why-choose .feature-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.0705882353);
  background: var(--white);
  transition: box-shadow var(--t);
  height: 100%;
}
.why-choose .feature-card:hover {
  box-shadow: var(--shadow-card);
}
.why-choose .feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 16px;
  background: var(--black);
  color: var(--white);
}
.why-choose .feature-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.3;
}
.why-choose .feature-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.content-block {
  overflow-x: hidden;
}
.content-block__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-lg);
}
.content-block__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}
.content-block ul li {
  color: #666;
  margin-bottom: 5px;
}

.about-text-block .container .row h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.empower {
  background: var(--white-soft);
  padding: 50px 0;
  overflow-x: hidden;
}
.empower__video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.empower__video img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.empower__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--black);
  box-shadow: var(--shadow-deep);
  transition: transform var(--t);
  cursor: pointer;
}
.empower__play:hover {
  transform: scale(1.1);
}
.empower__caption {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1019607843), 0 10px 15px -3px rgba(0, 0, 0, 0.1019607843);
}
.empower__caption p {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.4;
}
.empower__caption span {
  font-size: 12px;
  color: var(--silver);
}
.empower__quote {
  border-left: 3px solid #f5c518;
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 0;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1019607843), 0 1px 3px 0px rgba(0, 0, 0, 0.1019607843);
}
.empower__quote p {
  font-size: 14px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}
.empower .empower__features {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.empower .empower__feature {
  flex: 1;
  text-align: center;
  padding: 20px 10px;
  position: relative;
}
.empower .empower__feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 1px;
  height: 60%;
  background: #ddd;
}
.empower {
  /* ICON */
}
.empower .empower__feature i {
  font-size: 22px;
  margin-bottom: 10px;
  color: #000;
}
.empower {
  /* TEXT */
}
.empower .empower__feature p {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  margin: 0;
}

.city-service {
  background: var(--white-soft);
  padding: 50px 0px;
  overflow-x: hidden;
}
.city-service .city-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  border: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.city-service .city-card:hover {
  box-shadow: var(--shadow-card);
}
.city-service .city-card__icon {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
}
.city-service .city-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}
.city-service .city-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 0px;
}
.city-service .city-card__desc b {
  font-weight: 700;
}
.city-service .city-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  transition: background var(--t), color var(--t);
}
.city-service .city-card__link i {
  font-size: 11px;
  margin-left: 10px;
  background: var(--white-soft);
  width: 36px;
  height: 20px;
  display: grid;
  place-content: center;
  border-radius: 50px;
}
.city-service .city-card__link:hover {
  background: var(--black);
  color: var(--white);
}
.city-service .city-card__link:hover i {
  color: var(--black);
}
.city-service .city-card__link:hover {
  border-color: var(--black);
}

.city-service.how_it_work .city-card {
  flex-direction: row;
}

.vehicle-detail {
  padding: 50px 0px;
}
.vehicle-detail__img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.vehicle-detail__img img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.vehicle-detail ul li {
  color: var(--text-muted);
  margin-bottom: 5px;
}
.vehicle-detail__thumb {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.vehicle-detail__sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}
.vehicle-detail .section-subtitle {
  max-width: 100%;
}
.vehicle-detail .vehicle-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  overflow: hidden;
}
.vehicle-detail .vehicle-specs__item {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
}
.vehicle-detail .vehicle-specs__item i {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 4px;
}
.vehicle-detail .vehicle-specs__item strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}
.vehicle-detail .vehicle-specs__item span {
  font-size: 11px;
  color: var(--silver);
}
.vehicle-detail .rate-card {
  position: sticky;
  top: 100px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--bg-soft);
}
.vehicle-detail .rate-card__head {
  margin-bottom: 20px;
}
.vehicle-detail .rate-card__head h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}
.vehicle-detail .rate-card__head p {
  font-size: 12px;
  color: var(--silver);
  margin: 0;
}
.vehicle-detail .rate-card__block {
  padding: 16px 0;
}
.vehicle-detail .rate-card__divider {
  height: 1px;
  background: var(--border);
}
.vehicle-detail .rate-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.vehicle-detail .rate-card__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.vehicle-detail .rate-card__price {
  font-weight: 600;
  color: var(--black);
}
.vehicle-detail .rate-card__sub {
  font-size: 12px;
  color: var(--silver);
  margin-bottom: 12px;
}
.vehicle-detail .rate-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vehicle-detail .rate-card__list li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vehicle-detail .rate-card__list li i {
  color: var(--black);
  font-size: 13px;
  flex-shrink: 0;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
  padding: 24px;
}
.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.gallery-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t);
}
.gallery-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.fleet-showcase {
  padding: 50px 0px;
}
.fleet-showcase .section-head {
  margin-bottom: 30px;
}
.fleet-showcase .fleet-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--t);
  padding: 20px 15px;
  gap: 15px;
}
.fleet-showcase .fleet-card:hover {
  box-shadow: var(--shadow-card);
}
.fleet-showcase .fleet-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.fleet-showcase .fleet-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.fleet-showcase .fleet-card__tagline {
  font-size: 12px;
  color: var(--silver);
  line-height: 1.5;
  margin: 0;
}
/* .fleet-showcase .fleet-card__badges {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
} */
.fleet-showcase .fleet-card__img {
  position: relative;
}
.fleet-showcase .fleet-card__img .fleet-class {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #323338;
  font-size: 12px;
  color: #fff;
  padding: 5px 15px;
  border-radius: 15px;
}
.fleet-showcase .fleet-card__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  height: 180px;
  border-radius: 10px;
}
.fleet-showcase .fleet-card .fleet-badge--electric {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #0f172a;
  color: #fff;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.3px;
  z-index: 2;
}
.fleet-showcase .fleet-card .fleet-badge--electric::before {
  content: "⚡";
  margin-right: 4px;
  font-size: 10px;
}
.fleet-showcase .fleet-card__amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.fleet-showcase .fleet-card__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.fleet-showcase .fleet-card__actions .commonbtn {
  flex: 1;
  justify-content: center;
}
.fleet-showcase .fleet-card__actions .commonbtn span {
  padding: 2px 0px;
}
.fleet-showcase .fleet-badge {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  text-align: center;
  background: var(--bg-soft);
  margin-bottom: 4px;
}
.fleet-showcase .fleet-badge span {
  display: block;
  font-size: 10px;
  color: var(--silver);
  /* margin-bottom: 3px; */
}
.fleet-showcase .fleet-badge strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}
.fleet-showcase .fleet-amenity {
  background: var(--bg-soft);
  padding: 8px 5px;
  text-align: center;
}
.fleet-showcase .fleet-amenity span {
  display: block;
  font-size: 10px;
  color: var(--silver);
}
.fleet-showcase .fleet-amenity strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
}
@media (max-width: 480px) {
  .fleet-showcase .fleet-card__img img {
    height: 140px;
  }
}

.service-why {
  padding: 80px 0;
  background: var(--bg-soft);
}
.service-why .why-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.service-why .why-card img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.service-why .why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
  transition: all 0.4s ease;
}
.service-why .why-card:hover img {
  transform: scale(1.1) rotate(1deg);
  filter: brightness(0.7) contrast(1.2) saturate(1.3);
}
.service-why .why-card:hover::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}
.service-why .why-card:hover .why-content {
  transform: translateY(-6px);
}
.service-why .why-card:hover .why-badge {
  background: rgb(0, 0, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
.service-why .why-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 4px;
  z-index: 2;
  transition: all 0.3s ease;
}
.service-why .why-content {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  color: #fff;
  transition: transform 0.4s ease;
}
.service-why .why-content h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.service-why .why-content p {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 8px;
}
.service-why .why-content a {
  font-size: 12px;
}

.contact {
  padding: 90px 0;
  background: url("../images/map-bg.webp"), linear-gradient(to left, var(--bg-soft), var(--bg-soft));
  background-size: cover;
  background-position: center;
}
.contact__item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
}
.contact__item i {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #e5e5e5;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000;
}
.contact__item p {
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
  color: #333;
}

/* FORM */
.contact-form {
  background: #fff;
  border-radius: 12px;
  border-top-right-radius: 100px;
  padding: 30px;
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.contact-form label {
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
}
.contact-form .iti.iti--allow-dropdown {
  width: 100%;
}
.contact-form .error {
  color: red;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #f3f3f3;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
}
.contact-form textarea {
  min-height: 100px;
  resize: none;
}
.contact-form__bottom {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.contact-form__bottom button {
  background: var(--black);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 13px;
}

.map-section {
  padding: 50px 0px;
}
.map-section .map-wrapper {
  border-radius: 16px;
  padding: 6px;
  background: #dcdcdc;
  overflow: hidden;
}
.map-section .map-wrapper iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 12px;
  display: block;
}

.updates {
  padding: 50px 0;
  background: var(--bg-soft);
}
.updates .updates-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 0 34px 0px rgba(0, 0, 0, 0.2509803922);
}
.updates .updates-card__img img {
  width: 100%;
  height: auto;
  display: block;
}
.updates .updates-card__body {
  padding: 16px;
}
.updates .updates-card .meta {
  font-size: 14px;
  color: #6941c6;
  display: block;
  margin-bottom: 6px;
}
.updates .updates-card h3,
.updates .updates-card h4 {
  font-size: 24px;
  margin: 10px 0px;
}
.updates .updates-card p {
  color: var(--mid);
  margin-bottom: 10px;
}
.updates .updates-card .arrow {
  font-size: 14px;
  margin-left: 6px;
}
.updates .updates-card .tags,
.updates .updates-card .tag {
  font-size: 14px;
  display: inline-block;
}
.updates .updates-card .tags {
  margin-top: 10px;
}
.updates .updates-card .tags a {
  font-size: 14px;
  margin-right: 6px;
  color: #6941c6;
  border-radius: 16px;
  padding: 4px 10px;
}
.updates .updates-card .tags a:nth-child(1) {
  background: #f9f5ff;
}
.updates .updates-card .tags a:nth-child(2) {
  background: #eef4ff;
  color: #3538cd;
}
.updates .updates-card .tags a:nth-child(3) {
  background: #fdf2fa;
  color: #c11574;
}
.updates .updates-card .tag {
  color: #027a48;
  background: #ecfdf3;
  padding: 4px 10px;
  border-radius: 15px;
}
.updates .updates-card {
  /* SMALL CARD LAYOUT */
}
.updates .updates-card--sm {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 10px;
}
.updates .updates-card--sm .updates-card__img {
  width: 50%;
}
.updates .updates-card--sm .updates-card__img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.updates .updates-card--sm .updates-card__body {
  padding: 0;
}
.updates .updates-card--sm h4 {
  font-size: 18px;
  font-weight: 600;
}
.updates .updates-card--sm p {
  margin-bottom: 6px;
}
.updates .updates-card {
  /* LARGE CARD */
}
.updates .updates-card--lg .updates-card__img img {
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blogs {
  padding: 50px 0;
  background: var(--bg-soft);
}

/* CARD */
.blog-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 12px;
  min-height: 448px;
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: 0 0 34px 0px rgba(0, 0, 0, 0.2509803922);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.blog-card__img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.blog-card__body {
  padding: 10px 4px 6px;
}
.blog-card .meta {
  font-size: 14px;
  color: #6941c6;
  display: block;
  margin: 10px 0px;
}
.blog-card h3 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 6px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.blog-card p {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 10px;
}
.blog-card .tags a {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  margin-right: 6px;
  background: #f9f5ff;
  color: #6941c6;
}
.blog-card .tags a:nth-child(2) {
  background: #f8f9fc;
  color: #363f72;
}

/* PAGINATION */
.blog-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.blog-pagination button {
  border: none;
  background: transparent;
  font-size: 13px;
  color: var(--mid);
}
.blog-pagination .numbers {
  display: flex;
  gap: 8px;
}
.blog-pagination .numbers button {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 12px;
  background: transparent;
}
.blog-pagination .numbers button.active {
  background: #eee;
  color: var(--black);
}

.blog-detail {
  padding: 80px 0;
  background: var(--bg-soft);
  position: relative;
}
.blog-detail .row {
  align-items: flex-start;
}
.blog-detail .blog-sidebar {
  position: sticky;
  top: 20px;
}
.blog-detail__card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 22px;
}
.blog-detail .section-title {
  font-size: 32px;
}
.blog-detail__img img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  filter: grayscale(100%);
}
.blog-detail__content h2 {
  font-size: 24px;
  margin: 15px 0;
  font-weight: 700;
}
.blog-detail__content h3 {
  font-size: 20px;
  margin: 10px 0;
  font-weight: 700;
}
.blog-detail__content h4 {
  font-size: 17px;
  margin: 16px 0 6px;
  font-weight: 600;
}
.blog-detail__content p {
  font-size: 15px;
  color: var(--mid);
  padding-bottom: 10px;
  margin-bottom: 0;
}
.blog-detail__content p a {
  font-weight: 600;
}
.blog-detail__content ul {
  padding-left: 16px;
}
.blog-detail__content ul li {
  list-style: disc;
  color: var(--mid);
  margin-bottom: 6px;
}

/* SIDEBAR */
.blog-sidebar__card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 16px;
  margin-bottom: 16px;
}
.blog-sidebar__card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

/* SHARE */
.share-icons {
  display: flex;
  gap: 10px;
}
.share-icons a {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RELATED */
.related-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.related-item img {
  width: 95px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.related-item p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.related-item span {
  font-size: 12px;
  color: var(--mid);
}

.blog-why {
  padding: 50px 0;
  background: var(--black);
}
.blog-why .why-card {
  background: linear-gradient(145deg, #111, #18181b);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
  transition: transform var(--t), box-shadow var(--t);
}
.blog-why .why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}
.blog-why .why-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.blog-why .why-card__icon i {
  font-size: 16px;
  color: var(--white);
}
.blog-why .why-card h3 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 10px;
}
.blog-why .why-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.airport {
  padding: 50px 0;
}
.airport .airport-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.airport .airport-card img {
  width: 100%;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
}
.airport .airport-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.65), rgba(0, 0, 0, 0.1));
}
.airport .airport-card__overlay h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}
.airport .airport-card__overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}
.airport .airport-card__overlay span {
  font-size: 14px;
  color: var(--white);
}
.airport .airport-card {
  /* HOVER (lightweight) */
}
.airport .airport-card:hover img {
  transform: scale(1.04);
}
.airport .airport-card img {
  transition: transform var(--t);
}

.airport-service {
  overflow-x: hidden;
  padding-bottom: 50px;
}
.airport-service__block {
  margin-bottom: 24px;
}
.airport-service__sub {
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 15px;
}
.airport-service__img {
  width: 100%;
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
.airport-service__imgs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.airport-service__img-stack {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
.airport-service__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.airport-service__list li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.airport-service__list li i {
  color: var(--black);
  font-size: 16px;
  flex-shrink: 0;
}

.terminals {
  margin-bottom: 50px;
}
.terminals .terminal-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
}
.terminals .terminal-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.terminals .terminal-card__desc {
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.terminals .terminal-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.terminals .terminal-card__list li {
  color: var(--text-secondary);
}
.terminals .terminal-card__list li::before {
  content: "•";
  margin-right: 6px;
  color: var(--black);
}

.pricing {
  background: var(--white-soft);
  padding: 50px 0px;
}
.pricing__note {
  font-size: 12px;
  color: var(--silver);
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1019607843), 0 1px 3px 0px rgba(0, 0, 0, 0.1019607843);
}
.pricing-card--featured {
  background: var(--black);
  border-color: var(--black);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1019607843), 0 10px 15px -3px rgba(0, 0, 0, 0.1019607843);
}
.pricing-card--featured .pricing-card__name,
.pricing-card--featured .pricing-card__price strong,
.pricing-card--featured .pricing-card__price small,
.pricing-card--featured .pricing-card__list li {
  color: var(--white);
}
.pricing-card--featured .pricing-card__list i {
  color: rgba(255, 255, 255, 0.7);
}
.pricing-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  padding: 5px 14px;
  align-self: center;
}
.pricing-card__name {
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
}
.pricing-card__price {
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 10px;
}
.pricing-card__price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--silver);
  display: block;
  margin-bottom: 4px;
}
.pricing-card__price strong {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--black);
}
.pricing-card__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-card__list li {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card__list li i {
  font-size: 11px;
  color: var(--black);
  flex-shrink: 0;
}
.pricing-card .commonbtn span {
  margin: 0px auto;
}

.trust-bar {
  padding: 50px 0px;
}
.trust-bar .trust-item__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--black);
  margin: 0 auto 20px;
}
.trust-bar .trust-item__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.trust-bar .trust-item__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  margin: 0;
}

.cta-banner {
  background: var(--black);
  padding: 60px 0;
  margin-bottom: 40px;
}
.cta-banner__inner {
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.stats-bar {
  padding: 50px 0px;
}
.stats-bar .stat-card {
  background: var(--white-soft);
  border-radius: var(--radius-md);
  padding: 24px;
}
.stats-bar .stat-card i {
  font-size: 22px;
  color: var(--black);
  margin-bottom: 14px;
  display: block;
}
.stats-bar .stat-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}
.stats-bar .stat-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--silver);
  margin: 0;
}

.why-section {
  background: var(--white-soft);
  overflow-x: hidden;
}

/* LEFT GRID */
.why-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.why-cards-grid > .why-mini-card {
  width: calc(20% - 14px);
}
@media (max-width: 992px) {
  .why-cards-grid > .why-mini-card {
    width: calc(33% - 14px);
  }
}
@media (max-width: 576px) {
  .why-cards-grid > .why-mini-card {
    width: calc(49% - 14px);
  }
  .event-why-cards-grid .why-mini-card {
    width: calc(100%) !important;
  }
}

/* MINI CARD */
.why-mini-card {
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  transition: all var(--t);
}
.why-mini-card i {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.why-mini-card p {
  margin: 0;
  color: var(--black);
}
.why-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.event-why-cards-grid .why-mini-card {
  width: calc(33.33% - 14px);
}

/* RIGHT FEATURE CARD */
.why-feature-v2 {
  position: relative;
  border-radius: var(--radius-lg);
}

/* IMAGE LAYER */
.why-feature-v2__media {
  height: 350px;
  border-radius: 16px;
  overflow-x: hidden;
}
.why-feature-v2__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* CONTENT PANEL */
.why-feature-v2__content {
  position: relative;
  margin-top: -80px;
  margin-left: 20px;
  margin-right: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

/* TITLE */
.why-feature-v2__title {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 10px;
}
.why-feature-v2__title em {
  font-family: var(--ff-serif);
}

/* TEXT */
.why-feature-v2__text {
  color: var(--mid);
}

.airport-list {
  padding: 70px 0;
  background: linear-gradient(135deg, #1a1a1a, #3a3a3a);
}
.airport-list .section-title {
  margin-bottom: 10px;
}
.airport-list .section-subtitle {
  margin-bottom: 40px;
}
.airport-list__wrap {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* CARD */
.airport-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--t);
}
@media (max-width: 576px) {
  .airport-card {
    width: 48%;
  }
}
.airport-card i {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
}
.airport-card span {
  flex: 1;
}
.airport-card:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
.airport-card:hover i {
  background: var(--black);
  color: var(--white);
}

.legal_page {
  padding: 50px 0;
  background: var(--white-soft);
}
.legal_page .legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 2vw, 30px);
  box-shadow: var(--shadow-card);
}
.legal_page h2 {
  font-size: clamp(22px, 1.5vw, 24px);
  font-weight: 500;
  color: var(--black);
}
.legal_page h2:not(:first-child) {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
}
.legal_page h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--black);
}
.legal_page p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal_page ul {
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 0;
}
.legal_page ul li {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}
.legal_page ul li b {
  color: var(--black);
  font-weight: 500;
}

.pwa-install {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, #111, #1f1f1f);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: pwaFloat 3s ease-in-out infinite;
}
.pwa-install i {
  color: #fff;
  font-size: 22px;
  animation: pwaPulse 2s ease infinite;
}
.pwa-install::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent);
  pointer-events: none;
}
.pwa-install:hover {
  transform: translateY(-4px) scale(1.04);
}

@keyframes pwaFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes pwaPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}
.pwa-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99999;
}
.pwa-popup.active {
  opacity: 1;
  visibility: visible;
}
.pwa-popup__box {
  width: 92%;
  max-width: 340px;
  background: #111;
  border-radius: 24px;
  padding: 28px;
  color: #fff;
  text-align: center;
}
.pwa-popup h4 {
  margin-bottom: 10px;
}
.pwa-popup p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}
.pwa-popup__btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.pwa-popup__btns button {
  flex: 1;
  height: 48px;
  border: 0;
  border-radius: 12px;
  font-weight: 600;
}
.pwa-popup__btns button:first-child {
  background: #222;
  color: #fff;
}
.pwa-popup__btns button:last-child {
  background: #fff;
  color: #000;
}

/* =========================================================
   FLEET CATEGORY SECTION
========================================================= */
/* =========================================================
   FLEET CATEGORY
========================================================= */
.fleet-category {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(var(--orange-rgb), 0.08), transparent 28%), #f5f5f5;
}
.fleet-category .container-fluid {
  padding-inline: clamp(18px, 3vw, 42px);
}
.fleet-category .fleet-vehicle-slider {
  display: none;
}
.fleet-category .fleet-vehicle-slider.active {
  display: block;
}
.fleet-category {
  /* =========================================================
      MAIN SLIDER
  ========================================================= */
}
.fleet-category .fleet-category-slider {
  overflow: visible;
}
.fleet-category .fleet-category-slider .swiper-slide {
  height: auto;
}
.fleet-category {
  /* =========================================================
      CARD
  ========================================================= */
}
.fleet-category .fleet-category-card {
  position: relative;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  display: flex;
  flex-direction: column;
}
.fleet-category .fleet-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12), 0 10px 24px rgba(0, 0, 0, 0.05);
}
.fleet-category {
  /* =========================================================
      IMAGE
  ========================================================= */
}
.fleet-category .fleet-category-card__media {
  position: relative;
  overflow: hidden;
}
.fleet-category .fleet-category-card__media .swiper-slide {
  height: 220px;
}
.fleet-category .fleet-category-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s ease;
  display: block;
}
.fleet-category {
  /* =========================================================
      INNER ARROWS
  ========================================================= */
}
.fleet-category .fleet-category-card__nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(15, 15, 15, 0.58);
  backdrop-filter: blur(10px);
  color: var(--white);
  transition: 0.35s ease;
}
.fleet-category .fleet-category-card__nav i {
  font-size: 13px;
}
.fleet-category .fleet-category-card__nav:hover {
  background: var(--theme);
  color: var(--white);
}
.fleet-category .fleet-category-card__nav--prev {
  left: 16px;
}
.fleet-category .fleet-category-card__nav--next {
  right: 16px;
}
.fleet-category {
  /* =========================================================
      PAGINATION
  ========================================================= */
}
.fleet-category .fleet-category-card__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 7px;
}
.fleet-category .fleet-category-card__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  transition: 0.35s ease;
}
.fleet-category .fleet-category-card__pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: var(--white);
}
.fleet-category {
  /* =========================================================
      BODY
  ========================================================= */
}
.fleet-category .fleet-category-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 14px 14px;
}
.fleet-category .fleet-category-card__title {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}
.fleet-category .fleet-category-card__sub {
  display: block;
  margin-bottom: 12px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.fleet-category {
  /* =========================================================
      LABEL
  ========================================================= */
}
.fleet-category .fleet-category-card__label {
  display: block;
  margin-bottom: 10px;
  color: #999;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.fleet-category {
  /* =========================================================
      TABS
  ========================================================= */
}
.fleet-category .fleet-category-card__tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}
.fleet-category .fleet-category-card__tab {
  border: 1px solid #e8e8e8;
  background: #fafafa;
  padding: 8px 14px;
  border-radius: 100px;
  color: var(--black);
  font-size: 12px;
  transition: 0.35s ease;
  cursor: pointer;
}
.fleet-category .fleet-category-card__tab:hover {
  border-color: var(--theme);
  background: rgba(var(--orange-rgb), 0.08);
}
.fleet-category .fleet-category-card__tab.active {
  background: var(--black);
  border-color: var(--theme);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(var(--orange-rgb), 0.25);
}
.fleet-category .fleet-category-card__tab .ev {
  color: #16a34a;
  font-size: 8px;
  padding: 4px;
  background: lab(58.835% -51.0812 35.4288 / 0.15);
  border-radius: 5px;
  margin-left: 5px;
}
.fleet-category {
  /* =========================================================
      META
  ========================================================= */
}
.fleet-category .fleet-category-card__meta {
  display: flex;
  gap: 5px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #ececec;
}
.fleet-category .fleet-category-card__meta-item {
  flex: 1;
  border-radius: 10px;
  background: #fafafa;
  border: 1px solid #ececec;
  padding: 5px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fleet-category .fleet-category-card__meta-item i {
  color: var(--theme);
  font-size: 16px;
  flex-shrink: 0;
}
.fleet-category .fleet-category-card__meta-item .fa-suitcase {
  color: rgb(0, 89, 255) !important;
}
.fleet-category .fleet-category-card__meta-item span {
  color: #555;
  font-size: 12px;
  line-height: 1.4;
}
.fleet-category button.fleet-category-card__meta-item {
  cursor: pointer;
  text-align: left;
}
.fleet-category .fleet-arrow {
  margin-left: auto;
  font-size: 11px !important;
  transition: 0.35s ease;
}
.fleet-category .fleet-more-btn.active .fleet-arrow {
  transform: rotate(180deg);
}
.fleet-category {
  /* =========================================================
      LUGGAGE
  ========================================================= */
}
.fleet-category .fleet-luggage-toggle {
  cursor: pointer;
}
.fleet-category .fleet-luggage-toggle .fleet-luggage-text {
  flex: 1;
  min-width: 0;
}
.fleet-category .fleet-luggage-toggle .fleet-luggage-short,
.fleet-category .fleet-luggage-toggle .fleet-luggage-full {
  color: #555;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}
.fleet-category .fleet-luggage-toggle .fleet-luggage-full {
  display: none;
}
.fleet-category .fleet-luggage-toggle .fleet-arrow {
  margin-left: auto;
  font-size: 11px;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}
.fleet-category .fleet-luggage-toggle.active .fleet-luggage-short {
  display: none;
}
.fleet-category .fleet-luggage-toggle.active .fleet-luggage-full {
  display: block;
}
.fleet-category .fleet-luggage-toggle.active .fleet-arrow {
  transform: rotate(180deg);
}
.fleet-category {
  /* =========================================================
      FEATURES
  ========================================================= */
}
.fleet-category .fleet-category-card__features {
  margin-bottom: 18px;
}
.fleet-category .fleet-feature {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}
.fleet-category .fleet-feature.active {
  display: grid;
}
.fleet-category .fleet-feature span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
  font-size: 10px;
  line-height: 1.5;
}
.fleet-category .fleet-feature i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--orange-rgb), 0.12);
  color: var(--theme);
  font-size: 10px;
  flex-shrink: 0;
}
.fleet-category {
  /* =========================================================
      PRICE
  ========================================================= */
}
.fleet-category .fleet-category-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.fleet-category .fleet-price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgb(255, 255, 255), rgb(249, 249, 249));
  border: 1.5px solid rgba(var(--orange-rgb), 0.22);
  font-size: 12px;
  transition: 0.35s ease;
}
.fleet-category .fleet-price-card:hover {
  transform: translateY(-2px);
  border-color: var(--theme);
}
.fleet-category .fleet-price-card b {
  color: var(--black);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}
.fleet-category .fleet-price-card__left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fleet-category .fleet-price-card__left i {
  width: 30px;
  height: 30px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--orange-rgb), 0.1);
  color: var(--theme);
  font-size: 15px;
  flex-shrink: 0;
}
.fleet-category .fleet-price-card__left strong {
  display: block;
  margin-bottom: 4px;
  color: var(--black);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}
.fleet-category .fleet-price-card__left span {
  display: block;
  color: #8a8a8a;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
}
.fleet-category {
  /* =========================================================
      VAT
  ========================================================= */
}
.fleet-category .fleet-category-card__vat {
  margin-bottom: 14px;
  color: #777;
  font-size: 13px;
  text-align: right;
  font-weight: 500;
}
.fleet-category {
  /* =========================================================
      ACTIONS
  ========================================================= */
}
.fleet-category .fleet-category-card__actions {
  display: flex;
  gap: 14px;
  margin-top: auto;
  margin-bottom: 10px;
  width: 100%;
}
.fleet-category .fleet-category-card__actions a {
  width: 49%;
}
.fleet-category .fleet-category-card__actions a span {
  margin: 0 auto;
}
.fleet-category .fleet-category-card__actions-desktop {
  width: 100%;
}
.fleet-category {
  /* =========================================================
  MOBILE ACTION DESIGN
  ========================================================= */
}
@media (max-width: 767px) {
  .fleet-category .fleet-category-card__mobile-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .fleet-category .fleet-category-card__mobile-bar .fleet-category-card__mobile-price {
    width: 100px;
  }
  .fleet-category .fleet-category-card__mobile-bar .fleet-mobile-label {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    color: lab(48.496% 0 0);
  }
  .fleet-category .fleet-category-card__mobile-bar strong {
    font-size: 24px;
  }
  .fleet-category .fleet-category-card__mobile-bar small {
    font-size: 10px;
    font-weight: 400;
    color: lab(66.128% -0.0000298023 0.0000119209);
  }
  .fleet-category .fleet-category-card__actions-desktop {
    display: none;
    width: 100%;
  }
  .fleet-category .fleet-category-card__actions {
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid lab(96.52% -0.0000298023 0.0000119209);
    position: relative;
    padding-top: 15px;
    /* BUTTONS */
  }
  .fleet-category .fleet-category-card__actions a {
    width: auto;
    flex: 1;
  }
  .fleet-category .fleet-category-card__actions a.commonbtn {
    min-height: 46px;
  }
  .fleet-category .fleet-category-card__actions a.commonbtn span {
    padding: 12px 14px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .fleet-category .fleet-category-card__actions {
    /* PRICE TEXT */
  }
  .fleet-category .fleet-category-card__actions .fleet-mobile-price {
    width: 100%;
    margin-bottom: 14px;
  }
  .fleet-category .fleet-category-card__actions .fleet-mobile-price strong {
    display: block;
    color: var(--black);
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 4px;
  }
  .fleet-category .fleet-category-card__actions .fleet-mobile-price small {
    color: #8a8a8a;
    font-size: 12px;
    font-weight: 500;
  }
  .fleet-category .fleet-category-card__actions {
    flex-wrap: wrap;
  }
}
.fleet-category {
  /* =========================================================
      MAIN NAV
  ========================================================= */
}
.fleet-category .fleet-category-prev,
.fleet-category .fleet-category-next {
  position: absolute;
  top: 42%;
  z-index: 20;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.35s ease;
}
.fleet-category .fleet-category-prev i,
.fleet-category .fleet-category-next i {
  color: var(--black);
  font-size: 18px;
  transition: 0.35s ease;
}
.fleet-category .fleet-category-prev:hover,
.fleet-category .fleet-category-next:hover {
  background: var(--black);
}
.fleet-category .fleet-category-prev:hover i,
.fleet-category .fleet-category-next:hover i {
  color: var(--white);
}
.fleet-category .fleet-category-prev {
  left: 4px;
}
.fleet-category .fleet-category-next {
  right: 4px;
}
.fleet-category {
  /* =========================================================
      RESPONSIVE
  ========================================================= */
}
@media (max-width: 1199px) {
  .fleet-category .fleet-category-card__title {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .fleet-category {
    padding: 90px 0;
  }
  .fleet-category .fleet-category-prev,
  .fleet-category .fleet-category-next {
    top: 102%;
    width: 40px;
    height: 40px;
  }
  .fleet-category .fleet-category-next {
    right: 30%;
  }
  .fleet-category .fleet-category-prev {
    left: 30%;
  }
}
@media (max-width: 767px) {
  .fleet-category .fleet-category-card__body {
    padding: 24px 18px 20px;
    flex: none;
  }
  .fleet-category .fleet-category-card__media .swiper-slide {
    height: 240px;
  }
  .fleet-category .fleet-category-card__meta {
    flex-direction: column;
  }
  .fleet-category .fleet-price-card {
    padding: 15px 16px;
  }
  .fleet-category .fleet-price-card b {
    font-size: 20px;
  }
}

.ascot-options-section {
  background: #f8f8f8;
}
.ascot-options-section .section-head {
  max-width: 850px;
  margin: 0 auto 60px;
}
.ascot-options-section .ascot-option-card {
  position: relative;
  height: 100%;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}
.ascot-options-section .ascot-option-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.ascot-options-section .ascot-option-card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(200, 200, 200, 0.12);
  color: #bcbcbc;
}
.ascot-options-section .ascot-option-card__icon i {
  font-size: 1.4rem;
}
.ascot-options-section .ascot-option-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0px;
}
.ascot-options-section .ascot-option-card__text {
  margin: 0;
  color: #666;
  line-height: 1.8;
}

.ascot-locations-section,
.ascot-raceday-section {
  background: #f8f8f8;
}
.ascot-locations-section .section-head,
.ascot-raceday-section .section-head {
  max-width: 900px;
  margin: 0 auto 60px;
}

.ascot-raceday-section {
  background: #fff;
  padding: 40px 0;
}

/* =========================================================
LOCATIONS SECTION
========================================================= */
.ascot-location-item {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 72px;
  padding: 0 22px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}
.ascot-location-item i {
  color: #c5b665;
  font-size: 16px;
}
.ascot-location-item span {
  font-weight: 600;
  color: #111;
}
.ascot-location-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.ascot-locations-note {
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background: #111;
  color: #fff;
  border-radius: 24px;
}
.ascot-locations-note i {
  font-size: 42px;
  color: #c5b665;
  margin-bottom: 25px;
}
.ascot-locations-note p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
}

/* =========================================================
RACE DAY SECTION
========================================================= */
.ascot-raceday-card {
  position: relative;
  height: 100%;
  padding: 32px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}
.ascot-raceday-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.ascot-raceday-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 700;
  color: #111;
}
.ascot-raceday-card p {
  margin: 0;
  color: #666;
  line-height: 1.8;
}

.ascot-raceday-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: rgba(197, 182, 101, 0.12);
  color: #c5b665;
  font-size: 18px;
  font-weight: 700;
}

/* =========================================================
MOBILE
========================================================= */
@media (max-width: 767px) {
  .ascot-locations-note {
    min-height: auto;
    padding: 28px;
  }
  .ascot-locations-note p {
    font-size: 16px;
  }
  .ascot-raceday-card {
    padding: 24px;
  }
}
@media (max-width: 1500px) {
  .fleet-card .fleet-card__body {
    min-height: 368px;
  }
}
@media (max-width: 991px) {
  .pwa-install {
    display: flex;
  }
  .hero__right {
    justify-content: center;
  }
  .why-choose .why-choose__left {
    position: static;
    margin-bottom: 8px;
  }
  .content-block .content-block__img {
    min-height: 300px;
  }
  .airport-service__img {
    height: 320px;
  }
  .airport-service__img-stack {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .city-banner {
    min-height: 90px;
    background: url(../images/city-skyline.webp);
    background-position: bottom;
    margin-top: 0px;
  }
  .city-banner .city-banner__text {
    padding-top: 60px;
  }
  .city-banner__skyline {
    display: none;
  }
  .city-banner .city-banner__heading {
    font-size: 28px;
    text-shadow: 0px 0px 5px 5px #000;
  }
  .city-banner__heading {
    font-size: clamp(14px, 4.5vw, 22px);
  }
  .gallery-item img {
    height: 180px;
  }
  .rate-card {
    position: static;
  }
  .vehicle-specs {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .fleet-category .fleet-category-card__price-wrap {
    display: none;
  }
  .fleet-category .fleet-feature span:nth-last-child(-n+2) {
    display: none;
  }
  .fleet-category .fleet-category-card__vat {
    display: none;
  }
}
@media (max-width: 575px) {
  .city-banner__skyline {
    width: 70px;
  }
  .city-banner__heading {
    font-size: 13px;
    letter-spacing: 0.02em;
  }
  .faq .faq-card__call {
    width: 190px;
  }
  .why-choose .feature-card {
    padding: 18px;
  }
  .vehicle-specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .vehicle-detail__img img,
  .vehicle-detail__thumb {
    height: 220px;
  }
  .section-pad {
    padding: 30px 0;
  }
  .city-banner {
    margin-bottom: 0px;
  }
}/*# sourceMappingURL=style.css.map */