@charset "UTF-8";
:root {
  /* ── Brand Colors ───────────────── */
  --orange: #fb6600;
  --orange-hover: #e05a00;
  --orange-light: #fff3eb;
  --orange-glow: rgba(251, 102, 0, 0.18);
  /* ── Core Neutrals ───────────────── */
  --black: #4c4c4c;
  --charcoal: #3a3a3a;
  --mid: #6e6e6e;
  --silver: #9a9a9a;
  --border: #e4e4e4;
  --border-soft: #f0f0f0;
  --white: #ffffff;
  --white-soft: #f9f7f5;
  --accent: var(--orange);
  --accent-hover: var(--orange-hover);
  --accent-subtle: var(--orange-light);
  --text-primary: var(--black);
  --text-secondary: var(--mid);
  --text-muted: var(--silver);
  --text-on-accent: var(--white);
  --heading-color: #3a3a3a;
  --bg-primary: var(--white);
  --bg-soft: var(--white-soft);
  --bg-accent-section: var(--orange-light);
  /* ── 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.07);
  --shadow-deep: 0 18px 50px rgba(0, 0, 0, 0.14);
  --shadow-accent: 0 6px 20px var(--orange-glow);
}

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

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 {
  color: var(--accent);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 15px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  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: pointer;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--accent-hover);
}

.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(--accent);
  border: 1.5px solid rgba(251, 102, 0, 0.22);
  border-radius: 999px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 18px;
  line-height: 1;
  background: var(--accent-subtle);
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.section-label--light {
  color: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
}
.section-label--light::before {
  background: rgba(255, 255, 255, 0.68);
}

.section-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  color: var(--black);
  margin-bottom: 16px;
}
.section-title em {
  color: var(--accent);
  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: 30px;
    line-height: 1.2;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 24px;
    line-height: 1.25;
  }
}

.section-subtitle {
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 15px;
  max-width: 560px;
}
.section-subtitle a {
  color: var(--accent);
  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(--accent);
}
@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(--accent);
  margin-bottom: 20px;
}
.section-divider--center {
  margin-left: auto;
  margin-right: auto;
}
.section-divider--light {
  background: rgba(255, 255, 255, 0.22);
}

.commonbtn {
  position: relative;
  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: 50px;
  border: none;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}
.commonbtn:active {
  transform: scale(0.97);
}
.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: 50%;
  margin: 3px;
  font-size: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform var(--t), background var(--t);
}
.commonbtn:hover i {
  transform: translateX(3px);
}
.commonbtn .ripple-wave {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  pointer-events: none;
  z-index: 0;
  animation: ripple-anim 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.commonbtn.dark {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(251, 102, 0, 0.3);
}
.commonbtn.dark i {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}
.commonbtn.dark .ripple-wave {
  background: rgba(255, 255, 255, 0.28);
}
.commonbtn.dark:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(251, 102, 0, 0.4);
}
.commonbtn.light {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}
.commonbtn.light i {
  background: var(--accent-subtle);
  color: var(--accent);
}
.commonbtn.light .ripple-wave {
  background: rgba(251, 102, 0, 0.12);
}
.commonbtn.light:hover {
  background: var(--accent-subtle);
  box-shadow: 0 4px 16px rgba(251, 102, 0, 0.15);
}
.commonbtn.light:hover i {
  background: rgba(251, 102, 0, 0.18);
}
.commonbtn.ghost {
  background: var(--accent-subtle);
  color: var(--accent);
}
.commonbtn.ghost i {
  background: rgba(251, 102, 0, 0.14);
  color: var(--accent);
}
.commonbtn.ghost .ripple-wave {
  background: rgba(251, 102, 0, 0.15);
}
.commonbtn.ghost:hover {
  background: rgba(251, 102, 0, 0.14);
}
.commonbtn.outline-dark {
  background: transparent;
  color: var(--accent);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}
.commonbtn.outline-dark i {
  background: var(--accent-subtle);
  color: var(--accent);
}
.commonbtn.outline-dark .ripple-wave {
  background: rgba(251, 102, 0, 0.12);
}
.commonbtn.outline-dark:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--accent), 0 4px 14px rgba(251, 102, 0, 0.28);
}
.commonbtn.outline-dark:hover i {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.commonbtn.outline-light {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.4);
}
.commonbtn.outline-light i {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.commonbtn.outline-light .ripple-wave {
  background: rgba(255, 255, 255, 0.2);
}
.commonbtn.outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.75);
}
.commonbtn.sm span {
  padding: 9px 25px;
}
.commonbtn.sm i {
  width: 36px;
  min-height: 36px;
  font-size: 12px;
  margin: 2px;
}
.commonbtn.pill {
  border-radius: 999px;
}
.commonbtn.pill i {
  border-radius: 999px;
}
.commonbtn.icon-only {
  width: 44px;
  height: 44px;
  justify-content: center;
  padding: 0;
}
.commonbtn.icon-only span {
  display: none;
}
.commonbtn.icon-only i {
  width: 38px;
  min-height: 38px;
  margin: 3px;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.logo img {
  width: 150px;
}

.booking_engine_container .lf-w-full.lf-bg-white.lf-shadow-lg.lf-dropdown {
  background: var(--white) !important;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card) !important;
  overflow: hidden;
  /* padding: 10px; */
}
.booking_engine_container .lf-grid.lf-grid-cols-3.lf-mb-2 {
  background: var(--white-soft);
  border-radius: 15px 15px 0 0;
}
.booking_engine_container .lf-flex.lf-rounded-full {
  background: var(--white-soft);
  padding: 6px;
  border-radius: 999px;
}
.booking_engine_container .lf-flex.lf-rounded-full button {
  color: var(--black) !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: var(--accent) !important;
  color: var(--white) !important;
}
.booking_engine_container label {
  color: var(--black) !important;
  font-size: 14px;
  font-weight: 500;
}
.booking_engine_container input:not(.datepicker-calendar-icon) {
  background: var(--white-soft) !important;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--black) !important;
  margin-bottom: 14px;
}
.booking_engine_container input:not(.datepicker-calendar-icon)::-moz-placeholder {
  color: var(--silver);
}
.booking_engine_container input:not(.datepicker-calendar-icon)::placeholder {
  color: var(--silver);
}
.booking_engine_container input:not(.datepicker-calendar-icon):focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white) !important;
}
.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 var(--border);
  padding: 12px 0;
  margin-top: 10px;
}
.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button {
  color: var(--black) !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 var(--accent) !important;
  color: var(--accent);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 16px;
  font-size: 11px;
  margin-right: 8px;
}
.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button .lf-text-sm::before {
  margin-left: 3px;
}
.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner {
  box-shadow: none !important;
}
.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner button {
  width: 95%;
  background: var(--accent) !important;
  color: var(--white) !important;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  border-radius: var(--radius-md);
}
.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner button:hover {
  background: var(--accent-hover) !important;
}
.booking_engine_container .lf-cursor-pointer.lf-relative button {
  color: var(--black) !important;
}
.booking_engine_container .lf-top-2\/4 {
  top: 38% !important;
  color: var(--black);
}

.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  transition: box-shadow var(--t);
  padding: 5px 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 .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(--accent);
  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;
  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(--accent) !important;
  border-bottom: 1px solid var(--accent);
}
.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-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--t);
}
.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;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.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;
  color: var(--black);
  cursor: none;
  flex-shrink: 0;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.sidebar-trigger:hover, .sidebar-trigger.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--black);
}

.toggler {
  background: none;
  border: 1px solid #fb6600;
  border-radius: 4px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: none;
}
.toggler span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--accent);
  transition: var(--t);
}

.sidebar {
  width: 340px !important;
  background: var(--black, #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(--charcoal);
  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 - 67px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0px 20px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 40px;
  background: radial-gradient(circle at 20% 30%, rgba(251, 102, 0, 0.18), transparent 40%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
}
.hero__overlay,
.hero .hero-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.75) 10%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%), linear-gradient(to right, rgba(251, 102, 0, 0.08), transparent);
  border-radius: 40px;
  transform: scale(1.08);
  animation: heroZoom 10s ease-in-out infinite alternate;
  filter: saturate(1.1) contrast(1.05);
}
.hero .hero-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 0px;
}
.hero__left {
  color: var(--white);
}
.hero__heading {
  letter-spacing: -0.02em;
}
.hero__heading span {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(251, 102, 0, 0.4);
}
.hero__heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: 14px;
  opacity: 0.85;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  max-width: 450px;
}
.hero .hero__contact {
  margin: 30px 0;
  align-items: center;
}
.hero .hero__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.hero .hero__contact a i {
  background: var(--accent);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 5px;
  display: grid;
  place-items: center;
}
.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: calc(95vh - 140px);
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.15);
  }
}
@keyframes scrollPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.services {
  padding: 60px 0;
  background: var(--bg-soft);
}
.services__cta {
  margin-top: 44px;
}
.services .service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.services .service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 102, 0, 0.35);
  box-shadow: 0 16px 40px rgba(251, 102, 0, 0.12);
}
.services .service-card__img {
  width: 100%;
  height: 190px;
  overflow: hidden;
  position: relative;
  background: #e0d4c8;
}
.services .service-card__img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.55s ease;
}
.services .service-card:hover .services .service-card__img img {
  transform: scale(1.05);
}
.services .service-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid rgba(251, 102, 0, 0.2);
}
.services .service-card__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.services .service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.services .service-card__top h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}
.services .service-card__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--accent);
  transition: background var(--t), transform var(--t);
}
.services .service-card:hover .services .service-card__arrow {
  background: var(--accent);
  color: var(--white);
  transform: translate(2px, -2px);
}
.services .service-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.services .service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--accent);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent-subtle);
  border: 1px solid rgba(251, 102, 0, 0.18);
  width: -moz-max-content;
  width: max-content;
  transition: background var(--t), border-color var(--t);
}
.services .service-card__link:hover {
  background: rgba(251, 102, 0, 0.15);
  border-color: rgba(251, 102, 0, 0.38);
}

.reviews {
  padding: 50px 0;
}
.reviews__wrap {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.reviews__panel {
  background: var(--charcoal);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.reviews__panel::before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.08;
}
.reviews__panel::after {
  content: '"';
  position: absolute;
  top: 20px;
  right: 32px;
  font-size: 120px;
  color: var(--accent);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}
.reviews__panel .section-label {
  background: rgba(251, 102, 0, 0.1);
  border-color: rgba(251, 102, 0, 0.3);
  margin-bottom: 20px;
}
.reviews__panel .section-label::before {
  display: none;
}
.reviews__panel .section-title {
  color: var(--white);
}
.reviews__panel .section-title em {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--accent);
}
.reviews__score {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.reviews__score-num {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.reviews__stars {
  color: #f4b400;
  font-size: 18px;
  letter-spacing: 2px;
}
.reviews__based {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 4px 0 0;
}
.reviews__controls {
  display: flex;
  gap: 10px;
  margin-top: 36px;
}
.reviews__controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
}
.reviews__controls button:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.reviews__cta {
  padding: 20px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.reviews__slider-col {
  display: flex;
  align-items: stretch;
}
.reviews .reviews-slider {
  padding: 32px 24px !important;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), box-shadow var(--t);
}
.review-card:hover {
  border-color: rgba(251, 102, 0, 0.3);
  box-shadow: 0 12px 32px rgba(251, 102, 0, 0.1);
}
.review-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.review-card__user {
  display: flex;
  gap: 10px;
  align-items: center;
}
.review-card__user h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}
.review-card__user span {
  font-size: 12px;
  color: var(--silver);
}
.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
}
.review-card__verified::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.review-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card .stars {
  color: #f4b400;
  font-size: 13px;
  letter-spacing: 1px;
}
.review-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.review-card .time {
  font-size: 11.5px;
  color: var(--silver);
}

/* CARD */
.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  border: 1px solid var(--border);
  transition: 0.3s;
}
.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: 60px 0;
  background: var(--bg-soft);
  overflow-x: hidden;
}
.about-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
.about-media__main {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
.about-media__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about-media__overlay {
  position: absolute;
  bottom: 30px;
  max-width: 100%;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-video-thumb {
  position: relative;
  width: 72px;
  height: 58px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.about-video-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: var(--white);
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: transform var(--t), background var(--t);
}
.about-play-btn i {
  font-size: 10px;
  margin-left: 2px;
}
.about-play-btn:hover {
  transform: scale(1.1);
}
.about-customers {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-customers__avatars {
  display: flex;
  align-items: center;
}
.about-customers__avatars img,
.about-customers__avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-customers__avatars img:first-child,
.about-customers__avatars span:first-child {
  margin-left: 0;
}
.about-customers__count {
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about-customers__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.about-content {
  padding-left: 12px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 8px;
}
.about-feature {
  display: flex;
  gap: 20px;
}
.about-feature__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: grid;
  place-content: center;
  flex-shrink: 0;
}
.about-feature__icon i {
  font-size: 22px;
  color: var(--accent);
}
.about-feature__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
}
.about-feature__divider {
  width: 1px;
  height: 100%;
  background: var(--border);
  margin-right: 25px;
}
.about-feature__body {
  display: flex;
}
.about-feature__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.about-ceo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-ceo__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.about-ceo__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.about-ceo__role {
  font-size: 12px;
  color: var(--text-secondary);
}

.app-cta__inner {
  position: relative;
  background: #000;
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  color: #fff;
}
.app-cta__radar {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  pointer-events: none;
}
.app-cta__content {
  position: relative;
  z-index: 1;
}
.app-cta__title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.app-cta__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.app-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.app-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  min-width: 170px;
}
.app-cta__btn:hover {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.app-cta__btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 15px;
  font-weight: 600;
}
.app-cta__btn small {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}
.app-cta__btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #fff;
}
.app-cta__phones {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.app-cta__phone {
  width: auto;
  border-radius: 22px;
  -o-object-fit: cover;
     object-fit: cover;
}
.app-cta__phone--back {
  margin-top: -70px;
  opacity: 0.7;
  z-index: 1;
  width: 90%;
}

.faq {
  padding: 50px 0;
  overflow-x: hidden;
  background: linear-gradient(to bottom, var(--bg-soft), #fff);
  position: relative;
}
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(251, 102, 0, 0.08), transparent 40%), radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.05), transparent 50%);
  pointer-events: none;
}
.faq {
  /* LEFT SIDE ACCORDION */
}
.faq .faq-item {
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.faq .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.faq .accordion-button {
  background: transparent;
  font-size: 17px;
  font-weight: 500;
  padding: 18px 20px;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion-button::after {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(251, 102, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  content: "+";
  color: var(--accent);
  transition: all 0.3s ease;
}
.faq .accordion-button:not(.collapsed) {
  color: var(--accent);
}
.faq .accordion-button:not(.collapsed)::after {
  content: "−";
  background: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}
.faq .accordion-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 0 20px 18px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}
.faq {
  /* RIGHT SIDE CARD */
}
.faq .faq-card {
  position: relative;
}
.faq .faq-card__img {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.faq .faq-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.05);
  transition: 0.6s ease;
}
.faq .faq-card__img:hover img {
  transform: scale(1.12);
}
.faq .faq-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
}
.faq .faq-card__overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}
.faq .faq-card__overlay h2 {
  color: #fff;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.2;
}
.faq .faq-card__call {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 10px 15px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  width: 45%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.faq .faq-card__call span {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
}
.faq .faq-card__call .phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.faq .faq-card__call .phone i {
  font-size: 26px;
  color: var(--accent);
  background: rgba(251, 102, 0, 0.1);
  padding: 10px;
  border-radius: 12px;
}
.faq .faq-card__call .phone p {
  font-size: 14px;
  margin: 0;
  font-weight: 500;
  color: var(--black);
}

.footer {
  background: var(--charcoal);
  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;
}
.footer a:hover {
  color: var(--accent);
}
.footer__logo img {
  width: 90%;
}
.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;
  position: relative;
  overflow: hidden;
}
.fleet .fleet-slider {
  position: relative;
  padding: 0 20px;
}
.fleet-item {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}
.fleet-item__media {
  position: relative;
  height: 420px;
  border-radius: inherit;
  overflow: hidden;
}
.fleet-item__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.8s ease;
}
.fleet-item__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 50%);
}
.fleet-item__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  font-weight: 500;
  display: none;
}
.fleet-item__content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 60%;
  background: rgba(75, 75, 75, 0.05);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
  color: #000;
}
.fleet-item__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fleet-item__top h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: #000;
}
.fleet-item__top span {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  color: #fb6600;
}
.fleet-item__specs {
  display: flex;
  gap: 14px;
  font-size: 12px;
  margin: 10px 0;
  color: #4c4c4c;
}
.fleet-item__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.fleet-item__price small {
  font-size: 11px;
  color: #4c4c4c;
}
.fleet-item__price strong {
  font-size: 18px;
  font-weight: 600;
}
.fleet-item__links {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.fleet-item__links a {
  font-size: 12px;
  font-weight: 500;
  position: relative;
}
.fleet-item__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.3s;
}
.fleet-item__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.fleet-item:hover img {
  transform: scale(1.08);
}
.fleet-item:hover .fleet-item__content {
  transform: translateY(-6px);
}
.fleet .fleet-prev,
.fleet .fleet-next {
  position: absolute;
  top: 45%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s;
}
.fleet .fleet-prev:hover,
.fleet .fleet-next:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.fleet .fleet-prev {
  left: 0;
}
.fleet .fleet-next {
  right: 0;
}
.fleet .fleet-pagination {
  margin-top: 30px;
  text-align: center;
}
.fleet .fleet-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 3px;
  background: #ddd;
  border-radius: 10px;
  opacity: 1;
}
.fleet .fleet-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
}

.why-choose {
  padding: 50px 0;
  position: relative;
}
.why-choose__left {
  position: sticky;
  top: 120px;
}
.why-choose__title {
  font-size: clamp(2.2rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}
/* .why-choose__desc {
  max-width: 420px;
} */
.why-choose__timeline {
  position: relative;
  padding-left: 40px;
}
.why-choose__timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.15), transparent);
}
.why-choose .why-step {
  position: relative;
  padding: 20px 0 20px 10px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: 0.4s ease;
}
.why-choose .why-step__num {
  position: absolute;
  left: -40px;
  top: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 11px;
  display: grid;
  place-items: center;
  z-index: 1;
  transition: 0.3s;
}
.why-choose .why-step__content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.0392156863);
  transition: 0.4s;
}
.why-choose .why-step__content h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.why-choose .why-step__content p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}
.why-choose .why-step:hover {
  transform: translateX(6px);
}
.why-choose .why-step:hover .why-step__num {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.1);
}
.why-choose .why-step:hover .why-step__content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
}
@media (max-width: 992px) {
  .why-choose__left {
    position: relative;
    top: 0;
  }
  .why-choose__timeline {
    padding-left: 30px;
  }
  .why-choose .why-step__num {
    left: -30px;
  }
}

.content-block {
  position: relative;
  overflow: hidden;
}
.content-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, var(--orange-glow), transparent 40%), radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.05), transparent 50%);
  pointer-events: none;
}
.content-block .container {
  position: relative;
}
.content-block__row {
  position: relative;
  padding: 50px 0px;
}
.content-block__row:last-child {
  margin-bottom: 0;
}
.content-block__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.content-block__media img {
  width: 100%;
  /* height: 420px; */
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.content-block__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25), transparent 60%);
  opacity: 0.7;
}
.content-block__row:hover .content-block__media img {
  transform: scale(1.05);
}
.content-block__card {
  position: relative;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  margin-left: -80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--t), box-shadow var(--t);
}
.content-block__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}
.flex-lg-row-reverse .content-block__card {
  margin-left: 0;
  margin-right: -80px;
}
.content-block .section-title {
  margin-bottom: 0;
}
.content-block .section-title em {
  position: relative;
}
.content-block .section-title em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 6px;
  background: var(--accent-subtle);
  z-index: -1;
}
.content-block .section-subtitle {
  margin-bottom: 0px;
}
.content-block .commonbtn {
  width: -moz-max-content;
  width: max-content;
}
.content-block .content-block__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.about-text-block {
  position: relative;
}
.about-text-block .container {
  position: relative;
}
.about-text-block .section-head {
  margin-bottom: 0;
}
.about-text-block .row {
  position: relative;
}
.about-text-block .row::after {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}
.about-text-block .section-title {
  max-width: 650px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about-text-block .section-title em {
  font-style: italic;
  position: relative;
}
.about-text-block .section-title em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 6px;
  background: var(--accent-subtle);
  z-index: -1;
}
.about-text-block__divider::before {
  content: "—";
  font-size: 42px;
  color: var(--border);
}
.about-text-block .section-subtitle {
  max-width: 520px;
  transition: transform var(--t);
}
.about-text-block .section-subtitle:hover {
  transform: translateY(-3px);
}
.about-text-block .col-lg-6:nth-child(3),
.about-text-block .col-lg-6:nth-child(4) {
  margin-top: 20px;
}

.empower {
  position: relative;
  background: var(--bg-soft);
  overflow: hidden;
  padding: 50px 0px;
}
.empower::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, var(--orange-glow), transparent 40%), radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.05), transparent 50%);
  pointer-events: none;
}
.empower .container {
  position: relative;
}
.empower .section-label {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.empower__media {
  position: relative;
}
.empower__video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.empower__video img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.empower__video:hover img {
  transform: scale(1.05);
}
.empower__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
}
.empower__play:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(251, 102, 0, 0.4);
}
.empower__floating {
  position: absolute;
  bottom: -30px;
  left: 30px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  max-width: 260px;
}
.empower__floating p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--black);
}
.empower__floating span {
  font-size: 12px;
  color: var(--text-muted);
}
.empower__content {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.empower__quote {
  position: relative;
  background: var(--bg-soft);
  padding: 20px 24px 20px 50px;
  border-radius: var(--radius-md);
}
.empower__quote i {
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--accent);
  font-size: 18px;
}
.empower__quote p {
  margin: 0;
  font-size: 14px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
}
@media (max-width: 991px) {
  .empower__video img {
    height: 280px;
  }
  .empower__floating {
    position: static;
    margin-top: 16px;
  }
  .empower__content {
    padding: 28px;
  }
}

.city-service {
  background: var(--bg-soft);
  position: relative;
  padding: 50px 0px;
}
.city-service .section-head {
  margin-bottom: 60px;
}
.city-service .city-card {
  position: relative;
  background: #f3f3f3;
  border-radius: 24px;
  padding: 25px;
  height: 100%;
  overflow: hidden;
  transition: transform var(--t);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 0.05px solid #fb660066;
}
.city-service .city-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  background: var(--accent);
  border-radius: 50%;
  z-index: 0;
  transition: 0.7s;
}
.city-service .city-card > * {
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.city-service .city-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 10px;
}
.city-service .city-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}
.city-service .city-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  /* max-width: 260px; */
}
.city-service .city-card:hover {
  transform: translateY(-6px);
}
.city-service .city-card:hover::before {
  transform: translateX(-50%) scale(1.4);
  width: 560px;
  height: 560px;
}
.city-service .city-card:hover .city-card__icon {
  border: 2px solid var(--border);
}
.city-service .city-card:hover > * {
  color: #fff;
}
@media (max-width: 576px) {
  .city-service .city-card {
    padding: 28px 20px;
  }
  .city-service .city-card__title {
    font-size: 16px;
  }
  .city-service .city-card__desc {
    font-size: 13px;
  }
}

.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__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(--accent);
  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-size: 13px;
  font-weight: 500;
  color: var(--black);
  text-align: end;
}
.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 0;
  background: var(--black);
}
.fleet-showcase .fleet-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
}
.fleet-showcase .fleet-card__img {
  position: absolute;
  inset: 0;
}
.fleet-showcase .fleet-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.85);
}
.fleet-showcase .fleet-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}
.fleet-showcase .fleet-card__num {
  position: absolute;
  top: -10px;
  right: 40px;
  font-size: clamp(100px, 16vw, 200px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 1;
  transition: -webkit-text-stroke 0.4s, color 0.4s;
  letter-spacing: -0.04em;
}
.fleet-showcase .fleet-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 15px 20px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.4s;
}
.fleet-showcase .fleet-card__left {
  transform: translateY(50px);
  transition: 0.3s;
}
.fleet-showcase .fleet-card__cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}
.fleet-showcase .fleet-card__name {
  font-size: clamp(22px, 3vw, 24px);
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1;
}
.fleet-showcase .fleet-card__name em {
  font-style: normal;
  color: var(--accent);
}
.fleet-showcase .fleet-card__specs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
  transition: 0.3s;
  transform: translateY(50px);
}
@media (max-width: 768px) {
  .fleet-showcase .fleet-card__specs {
    gap: 12px;
  }
}
.fleet-showcase .fleet-card__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  opacity: 0;
  margin-top: 20px;
  transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s;
}
.fleet-showcase .fleet-card__actions a {
  text-align: center;
  padding: 10px 20px;
  display: grid;
  place-content: center;
}
.fleet-showcase .fleet-card:hover .fleet-card__img img {
  transform: scale(1.07);
  filter: brightness(0.45);
}
.fleet-showcase .fleet-card:hover .fleet-card__num {
  -webkit-text-stroke-color: rgba(251, 102, 0, 0.18);
}
.fleet-showcase .fleet-card:hover .fleet-card__body {
  border-bottom-color: var(--accent);
}
.fleet-showcase .fleet-card:hover .fleet-card__actions {
  opacity: 1;
  transform: translateY(0);
}
.fleet-showcase .fleet-card:hover .fleet-card__left,
.fleet-showcase .fleet-card:hover .fleet-card__specs {
  transform: translateY(0);
}
.fleet-showcase .fleet-card {
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.fleet-showcase .fleet-card .commonbtn {
  text-align: center;
}
.fleet-showcase .fleet-spec {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}
.fleet-showcase .fleet-spec i {
  color: var(--accent);
  font-size: 12px;
}

.service-why {
  padding: 50px 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: auto;
  -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: var(--accent);
  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, .service-why .why-content h3 a {
  font-size: 18px;
  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: 50px 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)), url("../images/map-bg.webp");
  background-size: cover;
  background-position: center;
}
.contact__item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.contact__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.contact__item i {
  min-width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-subtle);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  transition: 0.3s;
}
.contact__item:hover i {
  background: var(--accent);
  color: #fff;
}
.contact__item p {
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
  color: var(--text-primary);
}

.contact-form {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border-top-right-radius: 80px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.contact-form h3 {
  font-size: 24px;
  margin-bottom: 22px;
  font-weight: 600;
}
.contact-form label {
  font-size: 11px;
  margin-bottom: 6px;
  color: var(--text-secondary);
}
.contact-form .iti.iti--allow-dropdown {
  width: 100%;
}
.contact-form .error {
  color: red;
  font-size: 11px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f9f9f9;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 13px;
  transition: 0.25s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(251, 102, 0, 0.12);
}
.contact-form textarea {
  min-height: 110px;
}
.contact-form__bottom {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-form__bottom button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(251, 102, 0, 0.25);
  transition: 0.3s;
}
.contact-form__bottom button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(251, 102, 0, 0.35);
}

.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;
  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: 22px;
  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);
}
.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 h3,
.blog-detail__content h2 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 700;
}
.blog-detail__content h4 {
  font-size: 20px;
  margin: 16px 0 6px;
  font-weight: 600;
}
.blog-detail__content p {
  color: var(--mid);
  margin-bottom: 10px;
}
.blog-detail__content ul {
  padding-left: 16px;
}
.blog-detail__content ul li {
  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;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.related-item p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.related-item span {
  font-size: 12px;
  color: var(--mid);
}

.blog-why {
  padding: 50px 0;
  background: var(--accent);
}
.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;
}
.airports-section {
  background: #ffffff;
}

.airport-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.airport-cards {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 22px 15px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.airport-cards:hover {
  transform: translateY(-5px);
  border-color: #fb6600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.airport-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(251, 102, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.airport-icon i {
  font-size: 20px;
  color: #fb6600;
  transition: .3s all ease-in-out;
}

.airport-cards:hover .airport-icon i {
  transform: rotate(45deg);
}

.airport-cards h3 {
  font-size: 15px;
  font-weight: 600;
  color: #4c4c4c;
  line-height: 1.5;
  margin: 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(--accent);
  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(--accent);
  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;
}

/* Event types */
#event-types {
  background: #fff;
  padding: 60px 0;
}
.event-card {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 28px 24px 24px;
  background: #fff;
  height: 100%;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #fb6600;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.event-card:hover {
  border-color: #fb6600;
  box-shadow: 0 6px 24px rgba(232, 119, 34, 0.12);
  transform: translateY(-4px);
}
.event-card:hover::before {
  transform: scaleX(1);
}
.event-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #fff5ec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.25s;
}
.event-card:hover .icon-wrap {
  background: #fb6600;
}
.event-card .icon-wrap i {
  font-size: 24px;
  color: #fb6600;
  transition: color 0.25s;
}
.event-card:hover .icon-wrap i {
  color: #fff;
}
.event-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.event-card p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}
#cta-band {
  background: #2D2D2D;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
#cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 40px solid rgba(232, 119, 34, 0.06);
  pointer-events: none;
}
#cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; right: 80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 30px solid rgba(232, 119, 34, 0.04);
  pointer-events: none;
    }
.cta-copy {
  border-left: 3px solid #fb6600;
  padding-left: 24px;
}
.cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fb6600;
  display: block;
  margin-bottom: 14px;
}
.cta-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 520px;
}
.btn-cta-primary {
  background: #fb6600;
  color: #fff;
  border: 2px solid #fb6600;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-cta-primary:hover {
  background: #e05a00;
  border-color: #e05a00;
  color: #fff;
}
.btn-cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-cta-secondary:hover {
  border-color: #fb6600;
  background: rgba(232, 119, 34, 0.1);
  color: #fff;
}

#tour-types {
  background: #fff;
  padding: 60px 0;
}
.tour-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
}
.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.tour-card:hover img {
  transform: scale(1.06);
}
.tour-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 43, 75, 0.88) 0%,
    rgba(26, 43, 75, 0.30) 55%,
    transparent 100%
  );
}
.tour-card .badge-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fb6600;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.tour-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 18px;
}
.tour-card h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
}
.tour-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}
#destinations {
  background: #f8f8f6;
  padding: 60px 0;
}
.dest-card {
  background: #fff;
  border: 1.5px solid #e4e4e4;
  border-radius: 10px;
  padding: 22px 16px 18px;
  text-align: center;
  height: 100%;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.dest-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #fb6600;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.dest-card:hover {
  border-color: #fb6600;
  box-shadow: 0 6px 20px rgba(232, 119, 34, 0.10);
  transform: translateY(-3px);
}
.dest-card:hover::before {
  transform: scaleX(1);
}
.dest-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #fff5ec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background 0.25s;
}
.dest-card:hover .icon-wrap {
  background: #fb6600;
}
.dest-card .icon-wrap i {
  font-size: 22px;
  color: #fb6600;
  transition: color 0.25s;
}
.dest-card:hover .icon-wrap i {
  color: #fff;
}
.dest-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #4c4c4c;
  margin: 0 0 6px;
}
.dest-card p {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.55;
  margin: 0;
}
.mobilebkng {
  position: relative;
  z-index: 2;
}

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

@media (max-width: 1199px) {
  .airport-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .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;
  }
  .airport-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about {
    padding: 40px 0;
  }
  .sidebar-trigger {
    display: none;
  }
}
@media (max-width: 768px) {
  .gallery-item img {
    height: 180px;
  }
  .rate-card {
    position: static;
  }
  .vehicle-specs {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .airports-section {
    padding: 60px 0;
  }
  .section-text {
    font-size: 15px;
  }
  .airport-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .airport-cards {
    padding: 20px 12px;
  }
  .airport-cards h3 {
    font-size: 15px;
  }
  #event-types   { padding: 56px 0; }
  #cta-band      { padding: 56px 0; }
  .section-title { font-size: 24px; }
  .cta-heading   { font-size: 1.5rem; text-align: center; }
  .cta-label, .cta-sub { text-align: center; }
  .cta-buttons {
    flex-direction: column;
    align-items: center !important;
  }
  #tour-types, #destinations  { padding: 40px 0; }
}
@media (max-width: 575px) {
  .hero .hero-img {
    object-position: 35%;
  }
  .faq .faq-card__call {
    width: auto;
  }
  .why-choose .feature-card {
    padding: 18px;
  }
  .vehicle-specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .vehicle-detail__img img,
  .vehicle-detail__thumb {
    height: 220px;
  }
  .about .about-feature__body {
    flex-wrap: wrap;
  }
  .about .about-feature__body .about-feature__divider {
    display: none;
  }
  .content-block .content-block__card {
    margin: 30px 0px 0px 0px;
  }
  .empower__floating {
    max-width: 100%;
  }
  .why-choose, .city-service, .content-block__row, .footer, .faq, .why-choose, .about {
    padding: 25px 0;
  }
  .content-block__card {
    padding: 25px;
  }
  .fleet .fleet-slider {
    padding: 0 5px;
  }
  .airport-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-copy {
    border-left: none;
    padding-left: 0;
  }
}/*# sourceMappingURL=style.css.map */