:root {
  --muzzyair-red: #e1261b;
  --muzzyair-red-dark: #b91f17;
  --muzzyair-black: #0b0d10;
  --muzzyair-charcoal: #191c21;
  --muzzyair-warm-white: #f7f5f1;
  --muzzyair-white: #ffffff;
  --muzzyair-grey: #b9bec6;
  --muzzyair-light-grey: #e5e7eb;
  --muzzyair-text: #373b42;
  --font-heading: "Montserrat", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --container-width: 1240px;
  --header-height: 88px;
  --radius-small: 8px;
  --radius-medium: 14px;
  --radius-large: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 18px 45px rgba(11, 13, 16, 0.1);
  --shadow-dark: 0 22px 55px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 12px 34px rgba(11, 13, 16, 0.07);
  --transition-fast: 180ms ease;
  --transition-medium: 320ms ease;
  --section-space: clamp(2.75rem, 3.5vw, 4.5rem);
}

/* 02. Reset and Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muzzyair-text);
  background: var(--muzzyair-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--muzzyair-red);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

li {
  list-style: none;
}

::-moz-selection {
  color: var(--muzzyair-white);
  background: var(--muzzyair-red);
}

::selection {
  color: var(--muzzyair-white);
  background: var(--muzzyair-red);
}

.container-xl {
  width: min(100% - 2rem, var(--container-width));
  max-width: var(--container-width);
  margin-inline: auto;
  padding: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: var(--muzzyair-white);
  background: var(--muzzyair-black);
  border-radius: var(--radius-small);
  transform: translateY(-180%);
  transition: transform var(--transition-fast);
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

/* 03. Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--muzzyair-black);
  font-family: var(--font-heading);
  line-height: 1.16;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-transform: capitalize;
}

h1 {
  font-size: clamp(1.55rem, 4vw, 4.15rem) !important;
}

h2 {
  font-size: clamp(1.2rem, 2.5vw, 2.75rem) !important;
}

h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem) !important;
}

p {
  margin-top: 0;
}

ul {
  padding: 0px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--muzzyair-red);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  line-height: 1.3;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: #ff5b51;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.25rem);
}

.section-heading h2 {
  max-width: 850px;
  margin-bottom: 1rem;
}

.section-heading p {
  max-width: 720px;
  color: #686d75;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.section-heading--centred {
  text-align: center;
}

.section-heading--centred h2,
.section-heading--centred p {
  margin-inline: auto;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 2rem;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split p {
  margin-bottom: 0;
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--muzzyair-white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muzzyair-black);
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.text-link:hover {
  gap: 0.85rem;
  color: var(--muzzyair-red);
}

/* 04. Layout Utilities */
.module {
  position: relative;
  padding-block: var(--section-space);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.75rem, 7vw, 7rem);
}

.split-layout--reverse .split-content {
  order: 1;
}

.split-layout--reverse .split-media {
  order: 2;
}

.split-media,
.split-content,
.section-heading > *,
.fleet-card,
.service-card,
.why-card {
  min-width: 0;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.split-media--framed::before {
  position: absolute;
  inset: -20px 20px 20px -20px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(225, 38, 27, 0.3);
  border-radius: var(--radius-xl);
}

.split-content > p {
  color: #626770;
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.75rem 0 2.25rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--muzzyair-black);
}

.check-list i {
  flex: 0 0 auto;
  margin-top: 0.2rem;
  color: var(--muzzyair-red);
  font-size: 1.1rem;
}

.check-list--light li {
  color: var(--muzzyair-white);
}

/* 05. Buttons */
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.76rem 1.3rem;
  border-width: 1px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-lg {
  min-height: 54px;
  padding: 1.55rem;
}

.btn-sm {
  min-height: 42px;
  padding: 0.55rem 1rem;
  font-size: 0.77rem;
}

.btn-red {
  color: var(--muzzyair-white);
  background: var(--muzzyair-red);
  border-color: var(--muzzyair-red);
  box-shadow: 0 10px 24px rgba(225, 38, 27, 0.25);
}

.btn-red:hover,
.btn-red:focus-visible {
  color: var(--muzzyair-white);
  background: var(--muzzyair-red-dark);
  border-color: var(--muzzyair-red-dark);
  box-shadow: 0 14px 30px rgba(225, 38, 27, 0.32);
}

.btn-dark {
  color: var(--muzzyair-white);
  background: var(--muzzyair-black);
  border-color: var(--muzzyair-black);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  color: var(--muzzyair-white);
  background: #22262b;
  border-color: #22262b;
}

.btn-outline-dark {
  color: var(--muzzyair-black);
  background: transparent;
  border-color: rgba(11, 13, 16, 0.28);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
  color: var(--muzzyair-white);
  background: var(--muzzyair-black);
  border-color: var(--muzzyair-black);
}

.btn-outline-light {
  color: var(--muzzyair-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  color: var(--muzzyair-black);
  background: var(--muzzyair-white);
  border-color: var(--muzzyair-white);
}

.btn-link-light {
  color: var(--muzzyair-white);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.btn-link-light:hover,
.btn-link-light:focus-visible {
  color: #ff6a61;
}

/* 06. Forms */
.form-control,
.form-select {
  min-height: 52px;
  border-color: #d7dbe0;
  border-radius: 10px;
  color: var(--muzzyair-black);
  background-color: var(--muzzyair-white);
  font-size: 16px;
  box-shadow: none;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: 56px;
  min-height: 56px;
  line-height: 1.25;
}

.form-floating > label {
  padding: 0.95rem 0.85rem;
  color: #737881;
  font-size: 0.83rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--muzzyair-red);
  box-shadow: 0 0 0 0.22rem rgba(225, 38, 27, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
  margin-bottom: 1rem;
}

.form-grid__full {
  grid-column: 1/-1;
}

.form-grid__full button {
  color: var(--muzzyair-red);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  color: #6d727b;
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
}

.form-privacy i {
  color: var(--muzzyair-red);
}

.form-alert {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-alert > i {
  margin-top: 0.15rem;
  font-size: 1rem;
}

.form-alert ul {
  margin: 0.35rem 0 0;
  padding-left: 1rem;
}

.booking_engine_container .lf-w-full.lf-bg-white.lf-shadow-lg.lf-dropdown {
  background: var(--muzzyair-white) !important;
  border-radius: 20px;
  border: 1px solid var(--muzzyair-light-grey);
  box-shadow: var(--shadow-soft) !important;
  overflow: hidden;
  padding: 10px;
}

.booking_engine_container .lf-grid.lf-grid-cols-3.lf-mb-2 {
  background: var(--muzzyair-warm-white);
  border-radius: 15px 15px 0 0;
}

.booking_engine_container .lf-flex.lf-rounded-full {
  background: var(--muzzyair-warm-white);
  padding: 6px;
  border-radius: 999px;
}

.booking_engine_container .lf-flex.lf-rounded-full button {
  color: var(--muzzyair-text) !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(--muzzyair-red) !important;
  color: var(--muzzyair-white) !important;
}

.booking_engine_container label {
  color: var(--muzzyair-text) !important;
  font-size: 14px;
  font-weight: 500;
}

.booking_engine_container input:not(.datepicker-calendar-icon) {
  background: var(--muzzyair-warm-white) !important;
  border: 1px solid var(--muzzyair-light-grey);
  border-radius: 10px;
  color: var(--muzzyair-text) !important;
  margin-bottom: 14px;
}

.booking_engine_container input:not(.datepicker-calendar-icon)::-moz-placeholder {
  color: var(--muzzyair-grey);
}

.booking_engine_container input:not(.datepicker-calendar-icon)::placeholder,
.booking_engine_container input:not(.datepicker-calendar-icon)::-moz-placeholder {
  color: var(--muzzyair-grey);
}

.booking_engine_container input:not(.datepicker-calendar-icon):focus {
  outline: none;
  border-color: var(--muzzyair-red);
  background: var(--muzzyair-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(--muzzyair-light-grey);
  padding: 12px 0;
  margin-top: 10px;
}

.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button {
  color: var(--muzzyair-text) !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(--muzzyair-red) !important;
  color: var(--muzzyair-red);
  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: var(--muzzyair-red) !important;
  color: var(--muzzyair-white) !important;
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  border-radius: var(--radius-medium);
}

.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner button:hover {
  background: var(--muzzyair-red-dark) !important;
}

.booking_engine_container .lf-cursor-pointer.lf-relative button {
  color: var(--muzzyair-text) !important;
}

.booking_engine_container .lf-top-2\/4 {
  top: 38% !important;
  color: var(--muzzyair-text);
}

.lf-z-\[9999999\] {
  z-index: 1 !important;
}

/*=========================================
 Header
=========================================*/
.header-area {
  position: relative;
  z-index: 999;
}

.top-header {
  background: var(--muzzyair-black);
  padding: 11px 0;
}
.top-header .top-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-header .top-header-left p {
  color: var(--muzzyair-white);
  font-size: 13px;
  margin: 0;
}
.top-header .top-header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.top-header .top-header-right a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muzzyair-white);
  font-size: 13px;
  transition: var(--transition-fast);
}
.top-header .top-header-right a i {
  color: var(--muzzyair-red);
  font-size: 12px;
}
.top-header .top-header-right a:hover {
  color: var(--muzzyair-red);
}

.main-header {
  background: var(--muzzyair-white);
  border-bottom: 1px solid var(--muzzyair-light-grey);
  position: relative;
}
.main-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.header-slogan {
  position: fixed;
  top: 92px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--muzzyair-white);
  border-radius: 0px 0px 15px 15px;
  padding: 10px 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #e52b23;
  border-top: 1px solid rgba(229, 43, 35, 0.35);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  text-align: center;
  width: 100%;
}

.main-header.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  animation: slideDown 0.3s ease forwards;
}

.mobile-header + .header-slogan {
  opacity: 0;
  visibility: hidden;
}

.mobile-header.fixed + .header-slogan {
  top: 76px;
}

.header-area:has(.main-header.fixed) + .header-slogan {
  opacity: 1;
  visibility: visible;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.site-logo img {
  width: 108px;
  transition: var(--transition-fast);
}

/*=========================================
 Navigation
=========================================*/
.main-menu {
  margin-left: auto;
}
.main-menu > ul {
  display: flex;
  align-items: center;
  gap: 38px;
}
.main-menu > ul > li {
  position: static;
}
.main-menu > ul > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muzzyair-black);
  font-size: 15px;
  padding: 36px 0;
  transition: var(--transition-fast);
}
.main-menu > ul > li > a i {
  font-size: 11px;
  transition: var(--transition-fast);
}
.main-menu > ul > li > a:hover {
  color: var(--muzzyair-red);
}
.main-menu > ul > li > a.active {
  color: var(--muzzyair-red);
}

/*=========================================
 Header Button
=========================================*/
.header-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 45px;
}
.header-btn .btn {
  min-width: 138px;
  height: 46px;
}

/*=========================================
 Dropdown Hover
=========================================*/
.has-mega-menu:hover > a {
  color: var(--muzzyair-red);
}
.has-mega-menu:hover > a i {
  transform: rotate(180deg);
}
.has-mega-menu:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

/*=========================================
 Mega Menu Base
=========================================*/
.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: var(--muzzyair-white);
  border-top: 1px solid var(--muzzyair-light-grey);
  box-shadow: var(--shadow-medium);
  padding: 28px 0 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.35s ease;
}

/*=========================================
 Mega Wrapper
=========================================*/
.mega-menu-wrapper,
.fleet-mega-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 18px;
  align-items: flex-start;
}

.fleet-mega-wrapper {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

/*=========================================
 Left Content
=========================================*/
.mega-menu-left .section-subtitle,
.fleet-menu-content .section-subtitle {
  margin-bottom: 18px;
}
.mega-menu-left h2,
.fleet-menu-content h2 {
  font-size: 28px;
  line-height: 1.2;
  color: var(--muzzyair-black);
  margin-bottom: 18px;
}
.mega-menu-left p,
.fleet-menu-content p {
  font-size: 17px;
  color: var(--muzzyair-grey);
  line-height: 1.8;
  margin-bottom: 24px;
}
.mega-menu-left .mega-link,
.fleet-menu-content .mega-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: var(--muzzyair-black);
  transition: var(--transition-fast);
}
.mega-menu-left .mega-link i,
.fleet-menu-content .mega-link i {
  transition: var(--transition-fast);
}
.mega-menu-left .mega-link:hover,
.fleet-menu-content .mega-link:hover {
  color: var(--muzzyair-red);
}
.mega-menu-left .mega-link:hover i,
.fleet-menu-content .mega-link:hover i {
  transform: translateX(6px);
}

/*=========================================
 Service Mega Menu
=========================================*/
.service-mega-menu {
  padding: 42px 0 36px;
}
.service-mega-menu .mega-menu-wrapper {
  display: grid;
  grid-template-columns: 290px 2fr 280px;
  gap: 42px;
  align-items: flex-start;
}

/*=========================================
 Left Content
=========================================*/
.mega-menu-left .section-subtitle {
  margin-bottom: 18px;
}
.mega-menu-left h2 {
  font-size: 28px !important;
  line-height: 1.2;
  color: var(--muzzyair-black);
  margin-bottom: 18px;
}
.mega-menu-left p {
  color: var(--muzzyair-black);
  line-height: 1.8;
  margin-bottom: 26px;
}
.mega-menu-left .mega-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muzzyair-black);
  transition: var(--transition-fast);
}
.mega-menu-left .mega-link i {
  transition: var(--transition-fast);
}
.mega-menu-left .mega-link:hover {
  color: var(--muzzyair-red);
}
.mega-menu-left .mega-link:hover i {
  transform: translateX(5px);
}

/*=========================================
 Service Grid
=========================================*/
.mega-menu-middle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 36px;
}

/*=========================================
 Service Item
=========================================*/
.mega-service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.mega-service-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff4f3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mega-service-item .icon i {
  color: var(--muzzyair-red);
  font-size: 15px;
}
.mega-service-item .icon img {
  width: 18px;
}
.mega-service-item .content h6 {
  font-size: 20px;
  color: var(--muzzyair-black);
  margin-bottom: 8px;
}
.mega-service-item .content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muzzyair-text);
  margin: 0;
}
.mega-service-item:hover .icon {
  background: var(--muzzyair-red);
}
.mega-service-item:hover .icon i {
  color: var(--muzzyair-white);
}
.mega-service-item:hover .icon img {
  filter: brightness(0) invert(1);
}
.mega-service-item:hover h6 {
  color: var(--muzzyair-red);
}

/*=========================================
 Right CTA
=========================================*/
.mega-menu-right {
  background: #1a1c21;
  border-radius: var(--radius-xl);
  padding: 28px;
}
.mega-menu-right .section-subtitle {
  color: var(--muzzyair-white);
  margin-bottom: 18px;
}
.mega-menu-right h2 {
  color: var(--muzzyair-white);
  font-size: 32px !important;
  line-height: 1.05;
  margin-bottom: 20px;
}
.mega-menu-right p {
  color: var(--muzzyair-warm-white);
  line-height: 1.8;
  margin-bottom: 26px;
}
.mega-menu-right .btn {
  width: 100%;
  margin-bottom: 14px;
}
.mega-menu-right .mega-bottom-links {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  gap: 22px;
}
.mega-menu-right .mega-bottom-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition: var(--transition-fast);
}
.mega-menu-right .mega-bottom-links a:hover {
  color: var(--muzzyair-red);
}

/*=========================================
 Hover
=========================================*/
.has-mega-menu:hover > .service-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

/*=========================================
 Fleet Mega Menu
=========================================*/
.fleet-mega-menu {
  padding: 42px 0;
}
.fleet-mega-menu .fleet-mega-wrapper .fleet-menu-content {
  padding-right: 20px;
}
.fleet-mega-menu .fleet-mega-wrapper .fleet-menu-content .section-subtitle {
  margin-bottom: 16px;
}
.fleet-mega-menu .fleet-mega-wrapper .fleet-menu-content h2 {
  font-size: 30px !important;
  line-height: 1.2;
  color: var(--muzzyair-black);
  margin-bottom: 16px;
}
.fleet-mega-menu .fleet-mega-wrapper .fleet-menu-content p {
  color: var(--muzzyair-black);
  line-height: 1.8;
  margin-bottom: 24px;
}
.fleet-mega-menu .fleet-mega-wrapper .fleet-menu-content .mega-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muzzyair-black);
  transition: var(--transition-fast);
  margin-bottom: 32px;
}
.fleet-mega-menu .fleet-mega-wrapper .fleet-menu-content .mega-link i {
  font-size: 14px;
  transition: var(--transition-fast);
}
.fleet-mega-menu .fleet-mega-wrapper .fleet-menu-content .mega-link:hover {
  color: var(--muzzyair-red);
}
.fleet-mega-menu .fleet-mega-wrapper .fleet-menu-content .mega-link:hover i {
  transform: translateX(5px);
}
.fleet-mega-menu .fleet-mega-wrapper .fleet-menu-content .fleet-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fleet-mega-menu .fleet-mega-wrapper .fleet-menu-content .fleet-menu-btn .btn {
  width: 100%;
}

/*=========================================
 Fleet Card
=========================================*/
.fleet-menu-card a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-large);
  border: 1px solid var(--muzzyair-light-grey);
  background: var(--muzzyair-white);
  transition: var(--transition-medium);
}
.fleet-menu-card a:hover {
  border-color: var(--muzzyair-red);
  box-shadow: var(--shadow-card);
}
.fleet-menu-card a:hover .fleet-img img {
  transform: scale(1.05);
}
.fleet-menu-card a:hover .fleet-content span {
  color: var(--muzzyair-red);
}
.fleet-menu-card a:hover .fleet-content span i {
  transform: translateX(5px);
}
.fleet-menu-card .fleet-img {
  overflow: hidden;
}
.fleet-menu-card .fleet-img img {
  width: 100%;
  transition: transform 0.5s ease;
}
.fleet-menu-card .fleet-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}
.fleet-menu-card .fleet-content span i {
  transition: var(--transition-fast);
}

/*=========================================
 Fleet Image
=========================================*/
.fleet-img {
  overflow: hidden;
  background: #f8f8f8;
}
.fleet-img img {
  width: 100%;
  transition: 0.5s ease;
}

/*=========================================
 Fleet Content
=========================================*/
.fleet-content {
  padding: 22px;
}
.fleet-content h5 {
  font-size: 18px;
  color: var(--muzzyair-black);
  margin-bottom: 16px;
  line-height: 1.4;
}
.fleet-content ul {
  margin-bottom: 18px;
}
.fleet-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muzzyair-black);
  margin-bottom: 10px;
  font-size: 15px;
}
.fleet-content ul li:last-child {
  margin-bottom: 0;
}
.fleet-content ul li i {
  width: 16px;
  color: var(--muzzyair-red);
  text-align: center;
  font-size: 14px;
}
.fleet-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muzzyair-black);
  transition: var(--transition-fast);
}
.fleet-content span i {
  font-size: 14px;
  transition: var(--transition-fast);
}

/*=========================================
 Hover
=========================================*/
.has-mega-menu:hover > .fleet-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

/*=========================================
Mobile Header
=========================================*/
.mobile-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  background: var(--muzzyair-white);
  border-bottom: 1px solid var(--muzzyair-light-grey);
}
.mobile-header .mobile-header-wrapper {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-header .slogan-center {
  font-size: 14px;
  color: var(--muzzyair-red);
  text-align: center;
  margin-top: 5px;
  font-weight: 700;
  font-style: italic;
}
.mobile-header .mobile-logo img {
  width: 95px;
}
.mobile-header .mobile-menu-toggle {
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: var(--muzzyair-black);
  font-size: 22px;
  padding: 0;
  transition: var(--transition-fast);
}
.mobile-header .mobile-menu-toggle:hover {
  color: var(--muzzyair-red);
}

/*=========================================
Overlay
=========================================*/
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/*=========================================
Mobile Menu
=========================================*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 340px;
  max-width: 100%;
  height: 100vh;
  background: var(--muzzyair-white);
  z-index: 9999;
  overflow-y: auto;
  transition: 0.35s ease;
}
.mobile-menu.active {
  left: 0;
}

/*=========================================
Menu Header
=========================================*/
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--muzzyair-light-grey);
}
.mobile-menu-header .mobile-logo img {
  width: 95px;
}
.mobile-menu-header .mobile-menu-close {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--muzzyair-black);
  font-size: 22px;
  padding: 0;
  transition: var(--transition-fast);
}
.mobile-menu-header .mobile-menu-close:hover {
  color: var(--muzzyair-red);
}

/*=========================================
Menu Body
=========================================*/
.mobile-menu-body {
  padding: 25px 20px 35px;
}

/*=========================================
Navigation
=========================================*/
.mobile-nav > li {
  border-bottom: 1px solid var(--muzzyair-light-grey);
}
.mobile-nav > li > a {
  display: block;
  padding: 16px 0;
  color: var(--muzzyair-black);
  transition: var(--transition-fast);
}
.mobile-nav > li > a:hover {
  color: var(--muzzyair-red);
}

/*=========================================
Dropdown
=========================================*/
.mobile-dropdown .mobile-dropdown-btn {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: var(--muzzyair-black);
}
.mobile-dropdown .mobile-dropdown-btn i {
  font-size: 14px;
  transition: var(--transition-fast);
}
.mobile-dropdown.active .mobile-dropdown-btn i {
  transform: rotate(45deg);
}

/*=========================================
Submenu
=========================================*/
.mobile-submenu {
  display: none;
  padding-bottom: 15px;
}
.mobile-submenu li a {
  display: block;
  padding: 10px 0 10px 16px;
  color: var(--muzzyair-text);
  transition: var(--transition-fast);
}
.mobile-submenu li a:hover {
  color: var(--muzzyair-red);
  padding-left: 22px;
}

/*=========================================
Buttons
=========================================*/
.mobile-menu-btn {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/*=========================================
Contact
=========================================*/
.mobile-contact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--muzzyair-light-grey);
}
.mobile-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muzzyair-black);
  margin-bottom: 15px;
  transition: var(--transition-fast);
}
.mobile-contact a:last-child {
  margin-bottom: 0;
}
.mobile-contact a i {
  width: 18px;
  color: var(--muzzyair-red);
  text-align: center;
}
.mobile-contact a:hover {
  color: var(--muzzyair-red);
}

/*=========================================
Body Lock
=========================================*/
body.menu-open {
  overflow: hidden;
}

/* ======================================================
   HERO
====================================================== */
.module-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 134px);
  display: flex;
  align-items: center;
  background: var(--muzzyair-black);
}
.module-hero .container,
.module-hero .row {
  position: relative;
  z-index: 5;
}
.module-hero .row {
  align-items: center;
}
.module-hero {
  /* ===========================
     Hero Breadcrumb
  =========================== */
}
.module-hero .breadcrumb-wrap {
  position: relative;
  z-index: 3;
  margin-bottom: 20px;
}
.module-hero .breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.module-hero .breadcrumb-custom li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
}
.module-hero .breadcrumb-custom a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.module-hero .breadcrumb-custom a:hover {
  color: var(--muzzyair-red);
}
.module-hero .breadcrumb-custom .separator {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}
.module-hero .breadcrumb-custom .active {
  color: #b4b4b4;
}
.module-hero .hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.module-hero .hero-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/*-----------------------------------
Background
-----------------------------------*/
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 13, 16, 0.92) 0%, rgba(11, 13, 16, 0.82) 30%, rgba(11, 13, 16, 0.55) 58%, rgba(11, 13, 16, 0.28) 78%, rgba(11, 13, 16, 0.12) 100%);
}

/*-----------------------------------
Content
-----------------------------------*/
.hero-content {
  color: #fff;
}
.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  font-style: italic;
  color: #e52b23;
  background: rgba(255, 255, 255, 0.106);
  border: 1px solid rgba(255, 255, 255, 0.123);
  border-radius: 50px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: relative;
  z-index: 1;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(3.2rem, 5vw, 5.3rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 42px;
}

/*-----------------------------------
Buttons
-----------------------------------*/
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}
.hero-actions .btn {
  min-width: 180px;
  height: 58px;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 30px;
}
.hero-actions .btn-red {
  border-radius: 999px;
}
.hero-actions .btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.hero-actions .btn-outline-light:hover {
  color: var(--muzzyair-black);
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.25s;
}
.hero-text-link i {
  transition: 0.25s;
}
.hero-text-link:hover {
  color: var(--muzzyair-red);
}
.hero-text-link:hover i {
  transform: translateY(4px);
}

/*-----------------------------------
Trust Items
-----------------------------------*/
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.93rem;
  font-weight: 600;
}
.hero-trust i {
  color: var(--muzzyair-red);
  font-size: 1.15rem;
}

.features-strip {
  padding: 0;
  background: #0b0d10;
}
.features-strip .row {
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
  padding: 46px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.35s ease;
}
.feature-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.feature-item:hover .feature-icon {
  border-color: var(--muzzyair-red);
  color: var(--muzzyair-red);
  transform: translateY(-2px);
}
.feature-item:hover h3 {
  color: #fff;
}

.feature-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.35s ease;
}
.feature-icon i {
  font-size: 18px;
}

.feature-content h3 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 19px !important;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}
.feature-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  max-width: 250px;
}

.services {
  background: #fff;
}
.services .service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  border: 1px solid #e7e9ef;
  border-radius: var(--radius-large);
  background: #fff;
  transition: all 0.35s ease;
  overflow: hidden;
}
.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 42px;
  height: 3px;
  background: var(--muzzyair-red);
  transition: 0.35s ease;
}
.services .service-card:hover {
  background: var(--muzzyair-warm-white);
  border-color: rgba(225, 38, 27, 0.22);
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.services .service-card:hover::before {
  width: 90px;
}
.services .service-card:hover .service-icon {
  background: rgba(225, 38, 27, 0.12);
  transform: scale(1.05);
}
.services .service-card:hover .service-link {
  color: var(--muzzyair-red);
}
.services .service-card:hover .service-link i {
  transform: translateX(5px);
}
.services .service-card h3 {
  margin: 1.75rem 0 1rem;
  font-size: 1.75rem;
  color: var(--muzzyair-black);
}
.services .service-card p {
  margin-bottom: 2rem;
  color: #6f7681;
  line-height: 1.8;
  flex-grow: 1;
}
.services .service-card .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.services .service-card .service-tags span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 30px;
  background: #f3f3f3;
  color: #666;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
.services .service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #fdf0ef;
  color: var(--muzzyair-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: 0.35s ease;
}
.services .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--muzzyair-black);
  transition: 0.35s ease;
}
.services .service-link i {
  transition: 0.35s ease;
  font-size: 0.9rem;
}

.services.how-to-choose .service-card p {
  margin-bottom: 0;
}

.about-section {
  background: var(--muzzyair-warm-white);
}
.about-section p {
  margin-top: 20px;
}
.about-section .about-image-wrapper {
  position: relative;
  z-index: 1;
  padding: 20px 0 20px 20px;
}
.about-section .about-image-wrapper .about-image-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 92%;
  border: 2px solid rgba(225, 38, 27, 0.35);
  border-radius: var(--radius-xl);
  z-index: -1;
}
.about-section .about-image-wrapper .about-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.about-section .about-image-wrapper .location-card {
  position: absolute;
  right: -25px;
  bottom: 45px;
  background: var(--muzzyair-white);
  padding: 22px 30px;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
  min-width: 220px;
}
.about-section .about-image-wrapper .location-card h4 {
  margin: 0 0 5px;
  font-size: 1.35rem;
  color: var(--muzzyair-black);
}
.about-section .about-image-wrapper .location-card p {
  margin: 0;
  color: #6d727b;
  font-size: 0.9rem;
}

.about-section.fleet-single h5 {
  color: var(--muzzyair-grey);
}
.about-section.fleet-single .about-image-wrapper {
  padding: 15px;
}

.dark-about {
  background: #0b0d11;
}
.dark-about .about-content .eyebrow {
  color: #ff4b3e;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.dark-about .about-content .eyebrow .line {
  width: 28px;
  height: 2px;
  background: #ff4b3e;
  display: inline-block;
  margin-right: 10px;
}
.dark-about .about-content h2 {
  color: #fff;
}
.dark-about .about-content p {
  color: #9aa0a8;
}
.dark-about .about-content .check-list li {
  color: #fff;
}
.dark-about .about-content .check-list li i {
  color: #ff4b3e;
}
.dark-about .about-content .about-btns {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  flex-wrap: wrap;
}
.dark-about .location-card {
  background: #181b20 !important;
}
.dark-about .location-card h4 {
  color: #fff;
}
.dark-about .location-card p {
  color: #9aa0a8;
}
.dark-about {
  /* Right Side */
}
.dark-about .airport-style {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #15181d;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.dark-about .airport-style .about-image {
  border-radius: 18px;
}
.dark-about .airport-style .airport-card h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin: 20px !important;
}
.dark-about .airport-style .airport-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.dark-about .airport-style .airport-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  background: #22262d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d6d6d6;
  font-size: 15px;
  transition: 0.3s;
}
.dark-about .airport-style .airport-list span:hover {
  background: #2a2f37;
  border-color: rgba(255, 75, 62, 0.4);
}
.dark-about .airport-style .airport-list span i {
  color: #ff4b3e;
  font-size: 13px;
}

/*=========================================
    Fleet Section
=========================================*/
.fleet-section {
  background: #fcfcfc;
}
.fleet-section .section-heading {
  margin-bottom: 55px;
}
.fleet-section .section-heading h2 {
  max-width: 640px;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem) !important;
  line-height: 1.08;
  margin-bottom: 0;
}
.fleet-section .section-heading p {
  max-width: 500px;
  font-size: 1.18rem;
  line-height: 1.75;
  color: #70757e;
}
.fleet-section .fleet-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04), 0 30px 70px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}
.fleet-section .fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08), 0 40px 80px rgba(0, 0, 0, 0.12);
}
.fleet-section {
  /*==========================
        Image
    ==========================*/
}
.fleet-section .fleet-card__image {
  position: relative;
  overflow: hidden;
  height: 258px;
}
.fleet-section .fleet-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}
.fleet-section .fleet-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
}
.fleet-section .fleet-card:hover .fleet-card__image img {
  transform: scale(1.06);
}
.fleet-section {
  /*==========================
        Badge
    ==========================*/
}
.fleet-section .fleet-class {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  background: rgba(20, 20, 20, 0.92);
  color: #fff;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.fleet-section {
  /*==========================
        Body
    ==========================*/
}
.fleet-section .fleet-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 26px 26px;
}
.fleet-section .fleet-card__body h3 {
  font-size: 1.25rem !important;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 600;
}
.fleet-section .fleet-card__body p {
  color: #6d727b;
  line-height: 1.75;
  margin-bottom: 20px;
}
.fleet-section {
  /*=========================================
      Features
  =========================================*/
}
.fleet-section .fleet-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.fleet-section .fleet-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: #656b74;
}
.fleet-section .fleet-features li:not(:last-child) {
  margin-bottom: 10px;
}
.fleet-section .fleet-features li i {
  width: 16px;
  color: var(--muzzyair-red);
  font-size: 0.82rem;
  text-align: center;
}
.fleet-section {
  /*=========================================
      Tags
  =========================================*/
}
.fleet-section .fleet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.fleet-section .fleet-tags span {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  background: #f5f5f5;
  border: 1px solid #ececec;
  border-radius: 8px;
  font-size: 0.72rem;
  color: #757575;
  transition: 0.25s ease;
}
.fleet-section .fleet-card:hover .fleet-tags span {
  background: rgba(225, 38, 27, 0.06);
  border-color: rgba(225, 38, 27, 0.15);
  color: var(--muzzyair-red);
}
.fleet-section {
  /*=========================================
      View Details
  =========================================*/
}
.fleet-section .fleet-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--muzzyair-black);
  transition: 0.3s;
}
.fleet-section .fleet-link i {
  font-size: 0.82rem;
  transition: 0.3s;
}
.fleet-section .fleet-link:hover {
  color: var(--muzzyair-red);
}
.fleet-section .fleet-link:hover i {
  transform: translateX(5px);
}
.fleet-section {
  /*=========================================
      Button
  =========================================*/
}
.fleet-section .fleet-card .btn {
  margin-top: auto;
  height: 54px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s;
}
.fleet-section .fleet-card:hover .btn-outline-dark {
  background: var(--muzzyair-black);
  border-color: var(--muzzyair-black);
  color: #fff;
}
.fleet-section {
  /*=========================================
      Footer Note
  =========================================*/
}
.fleet-section .fleet-note {
  font-size: 0.96rem;
  color: #717780;
  margin-top: 42px;
}
.fleet-section {
  /*=========================================
      Card Hover
  =========================================*/
}
.fleet-section .fleet-card:hover .fleet-class {
  background: var(--muzzyair-red);
}
.fleet-section .fleet-card:hover h3 {
  color: var(--muzzyair-red);
}

.booking-steps {
  overflow: hidden;
  background: var(--muzzyair-warm-white);
}
.booking-steps__wrapper {
  position: relative;
}
.booking-steps__line {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 58px;
  height: 1px;
  background: rgba(225, 38, 27, 0.25);
  z-index: 0;
}
.booking-steps .booking-step {
  position: relative;
  z-index: 2;
  text-align: center;
}
.booking-steps .booking-step__icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 2rem;
  position: relative;
  border: 1px solid rgba(225, 38, 27, 0.18);
  border-radius: 50%;
  background: var(--muzzyair-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
}
.booking-steps .booking-step__icon i {
  font-size: 2rem;
  color: var(--muzzyair-red);
}
.booking-steps .booking-step h3 {
  margin-bottom: 0.8rem;
}
.booking-steps .booking-step p {
  max-width: 290px;
  margin: auto;
  color: #70757d;
}
.booking-steps .booking-step:hover .booking-step__icon {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

/*==============================
 Booking Process Dark
==============================*/
.booking-process--dark {
  background: radial-gradient(circle at left center, #2b1112 0%, #111317 45%, #0b0d10 100%);
  color: #fff;
  overflow: hidden;
}

.booking-process--dark .section-heading {
  margin-bottom: 75px;
}

.booking-process--dark .eyebrow {
  color: var(--muzzyair-red);
}

.booking-process--dark h2 {
  color: #fff;
  max-width: 720px;
  margin-inline: auto;
}

.booking-process--dark .booking-steps__wrapper {
  position: relative;
}

.booking-process--dark .booking-steps__line {
  position: absolute;
  top: 24px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 1;
}

.booking-process--dark .booking-step {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 18px;
}

.booking-process--dark .booking-step__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: var(--muzzyair-red);
  border: 7px solid #111317;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.04), 0 12px 28px rgba(225, 38, 27, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}

.booking-process--dark .booking-step:hover .booking-step__icon {
  transform: translateY(-6px);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06), 0 18px 40px rgba(225, 38, 27, 0.45);
}

.booking-process--dark .booking-step__icon span {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.booking-process--dark .booking-step h3 {
  color: #fff;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.booking-process--dark .booking-step p {
  color: var(--muzzyair-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

.booking-process--dark .row {
  --bs-gutter-x: 2rem;
}

@media (min-width: 1200px) {
  .booking-process--dark .booking-step h3 {
    font-size: 2.1rem;
  }
}
@media (max-width: 991px) {
  .booking-process--dark .booking-steps__line {
    display: none;
  }
  .booking-process--dark .booking-step {
    margin-bottom: 45px;
  }
  .booking-process--dark .booking-step h3 {
    font-size: 1.65rem;
  }
}
@media (max-width: 767px) {
  .booking-process--dark .booking-step {
    max-width: 320px;
    margin-inline: auto;
  }
  .booking-process--dark .booking-step__icon {
    margin-bottom: 22px;
  }
}
.service-area {
  background: var(--muzzyair-warm-white);
}
.service-area__map {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  height: 100%;
}
.service-area__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.service-area .service-location {
  min-height: 56px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--muzzyair-white);
  border: 1px solid var(--muzzyair-light-grey);
  border-radius: var(--radius-medium);
  transition: all var(--transition-fast);
}
.service-area .service-location i {
  color: var(--muzzyair-red);
  font-size: 0.95rem;
}
.service-area .service-location span {
  color: var(--muzzyair-text);
  font-size: 0.95rem;
  font-weight: 500;
}
.service-area .service-location:hover {
  border-color: var(--muzzyair-red);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.service-area .service-location:hover span,
.service-area .service-location:hover i {
  color: var(--muzzyair-red);
}

.why-section {
  background: var(--muzzyair-charcoal);
}
.why-section .why-image {
  height: 100%;
}
.why-section .why-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-dark);
}
.why-section .why-card {
  display: flex;
  gap: 1rem;
  position: relative;
  height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.04);
  transition: all var(--transition-fast);
}
.why-section .why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 38, 27, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.why-section .why-card h3 {
  margin-bottom: 0.45rem;
  color: var(--muzzyair-white);
  font-size: 1.5rem;
}
.why-section .why-card p {
  margin: 0;
  color: var(--muzzyair-grey);
  font-size: 0.95rem;
  line-height: 1.7;
}
.why-section .why-card .card-number {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 56px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  pointer-events: none;
}
.why-section .why-card__icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-medium);
  background: rgba(225, 38, 27, 0.08);
  color: var(--muzzyair-red);
  font-size: 1.25rem;
}

.why-section--light {
  background: #fff;
}
.why-section--light .section-heading h2 {
  color: var(--muzzyair-dark);
}
.why-section--light .section-heading p {
  color: #6b7280;
}
.why-section--light .why-card {
  display: flex;
  gap: 1.25rem;
  height: 100%;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-large);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}
.why-section--light .why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 38, 27, 0.25);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}
.why-section--light .why-card h3 {
  margin-bottom: 0.6rem;
  color: var(--muzzyair-dark);
  font-size: 1.2rem !important;
  font-weight: 600;
  line-height: 1.2;
}
.why-section--light .why-card p {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.7;
}
.why-section--light .why-card__icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(225, 38, 27, 0.08);
  color: var(--muzzyair-red);
  font-size: 1.25rem;
}

.testimonial-section .testimonial-card {
  height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--muzzyair-light-grey);
  border-radius: var(--radius-large);
  background: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.015), rgba(0, 0, 0, 0.015) 10px, transparent 10px, transparent 20px), var(--muzzyair-warm-white);
  transition: all var(--transition-fast);
}
.testimonial-section .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.testimonial-section .testimonial-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.testimonial-section .testimonial-card__top i {
  color: rgba(225, 38, 27, 0.18);
  font-size: 2.4rem;
}
.testimonial-section .testimonial-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.95rem;
  border: 1px solid var(--muzzyair-light-grey);
  border-radius: 999px;
  background: var(--muzzyair-white);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  color: #7b8088;
}
.testimonial-section .testimonial-card__text {
  min-height: 100px;
  margin-bottom: 3rem;
  font-size: 1.15rem;
  line-height: 1.8;
  font-style: italic;
  color: #636973;
}
.testimonial-section .testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.testimonial-section .testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muzzyair-black);
  color: var(--muzzyair-white);
  flex-shrink: 0;
}
.testimonial-section .testimonial-card__footer h6 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}
.testimonial-section .testimonial-card__footer small {
  color: #7b8088;
  font-size: 0.82rem;
}

.faq-section {
  background: var(--muzzyair-warm-white);
}
.faq-section .faq-content {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}
.faq-section .faq-content p {
  margin: 1.5rem 0px;
}
.faq-section .faq-accordion .accordion-item {
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--muzzyair-light-grey);
  border-radius: var(--radius-medium);
  background: var(--muzzyair-white);
  box-shadow: none;
}
.faq-section .faq-accordion .accordion-header {
  margin: 0;
}
.faq-section .faq-accordion .accordion-button {
  padding: 12px 1rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muzzyair-black);
  background: transparent;
  box-shadow: none;
}
.faq-section .faq-accordion .accordion-button::after {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--muzzyair-warm-white);
  background-position: center;
  background-size: 14px;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) {
  color: var(--muzzyair-red);
  background: transparent;
  box-shadow: none;
}
.faq-section .faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-section .faq-accordion .accordion-body {
  padding: 0 1.5rem 1.6rem;
  color: #676d75;
  font-size: 1.05rem;
  line-height: 1.8;
}

/*======================================
Google Reviews
======================================*/
.google-reviews-section {
  background: linear-gradient(180deg, #eef5ff 0%, var(--muzzyair-white) 220px);
}
.google-reviews-section .google-review-info {
  position: relative;
  height: 100%;
  padding: 1.25rem;
  overflow: hidden;
  color: var(--muzzyair-white);
  background: linear-gradient(145deg, var(--muzzyair-black) 0%, var(--muzzyair-charcoal) 68%, rgba(225, 38, 27, 0.3) 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-dark);
}
.google-reviews-section .google-review-info::before {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.google-reviews-section .google-review-info .google-icon {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  background: var(--muzzyair-white);
  border-radius: 18px;
}
.google-reviews-section .google-review-info .google-icon img {
  width: 42px;
}
.google-reviews-section .google-review-info .eyebrow {
  margin-bottom: 1.5rem;
}
.google-reviews-section .google-review-info h2 {
  color: var(--muzzyair-white);
  margin-bottom: 1.5rem;
}
.google-reviews-section .google-review-info p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}
.google-reviews-section .google-review-info .btn {
  margin-top: 2rem;
  background: var(--muzzyair-white);
  border: none;
  color: var(--muzzyair-black);
}
.google-reviews-section .google-review-info .btn:hover {
  background: var(--muzzyair-red);
  color: var(--muzzyair-white);
}
.google-reviews-section .review-module {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-medium);
  backdrop-filter: blur(8px);
}
.google-reviews-section .review-module__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #37c986;
  background: rgba(55, 201, 134, 0.08);
  border-radius: 50%;
}
.google-reviews-section .review-module strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}
.google-reviews-section .review-module span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
  line-height: 1.6;
}
.google-reviews-section .google-review-card {
  height: 100%;
  padding: 1.6rem;
  background: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.015) 0, rgba(0, 0, 0, 0.015) 10px, transparent 10px, transparent 20px), var(--muzzyair-white);
  border: 1px solid var(--muzzyair-light-grey);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
}
.google-reviews-section .google-review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.google-reviews-section .google-review-card--large {
  min-height: 300px;
}
.google-reviews-section .google-review-card p {
  margin: 1.4rem 0 2.25rem;
  color: #666c75;
  font-size: 1.05rem;
  line-height: 1.8;
}
.google-reviews-section .review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.google-reviews-section .review-header > img {
  width: 24px;
}
.google-reviews-section .review-user {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.google-reviews-section .review-user strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muzzyair-black);
  font-family: var(--font-heading);
  font-size: 1rem;
}
.google-reviews-section .review-user small {
  color: #8b9199;
  font-size: 0.82rem;
}
.google-reviews-section .avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muzzyair-white);
  background: var(--muzzyair-red);
  border-radius: 50%;
  font-weight: 700;
  font-family: var(--font-heading);
}
.google-reviews-section .review-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.95rem;
  margin-bottom: 0.75rem;
  color: #7a7f87;
  background: #f6f4ef;
  border: 1px solid #e8e2d8;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.google-reviews-section .review-footer {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding-top: 1rem;
  border-top: 1px solid var(--muzzyair-light-grey);
  color: #9197a0;
  font-size: 0.82rem;
}
.google-reviews-section .review-footer i {
  color: #41b96d;
  font-size: 0.9rem;
}
@media (max-width: 991.98px) {
  .google-reviews-section .google-review-info {
    padding: 2.5rem;
  }
  .google-reviews-section .google-review-card--large {
    min-height: auto;
  }
}
@media (max-width: 767.98px) {
  .google-reviews-section .google-review-info {
    padding: 2rem;
  }
  .google-reviews-section .review-module {
    flex-direction: column;
  }
  .google-reviews-section .google-review-card {
    padding: 1.35rem;
  }
}

@media (max-width: 991.98px) {
  .faq-section .faq-content {
    position: static;
    margin-bottom: 2rem;
  }
}
/*======================================
CTA
======================================*/
.cta-section .cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--muzzyair-white);
  background: linear-gradient(135deg, var(--muzzyair-black) 0%, var(--muzzyair-charcoal) 65%, rgba(225, 38, 27, 0.22) 100%);
  border-radius: 32px;
  box-shadow: var(--shadow-dark);
}
.cta-section .cta-box::before {
  position: absolute;
  right: -150px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.cta-section .cta-box h2 {
  margin-bottom: 1.5rem;
  color: var(--muzzyair-white);
  max-width: 620px;
}
.cta-section .cta-box p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}
.cta-section .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 460px;
  margin-left: auto;
}
.cta-section .cta-actions .btn {
  min-height: 56px;
}
.cta-section .cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1rem;
  color: var(--muzzyair-white);
  font-family: var(--font-heading);
  font-weight: 600;
  transition: color var(--transition-fast);
}
.cta-section .cta-phone i {
  color: var(--muzzyair-white);
  font-size: 1rem;
}
.cta-section .cta-phone:hover {
  color: var(--muzzyair-red);
}
.cta-section .cta-phone:hover i {
  color: var(--muzzyair-red);
}
@media (max-width: 991.98px) {
  .cta-section .cta-box {
    text-align: center;
  }
  .cta-section .cta-box h2,
  .cta-section .cta-box p {
    max-width: 100%;
  }
  .cta-section .cta-actions {
    margin: auto;
  }
}
@media (max-width: 767.98px) {
  .cta-section .cta-box {
    border-radius: var(--radius-xl);
    padding: 2rem;
  }
}

.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--muzzyair-black);
  color: var(--muzzyair-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.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  color: var(--muzzyair-red);
  border: 1px solid var(--muzzyair-black);
}
.scroll-top:hover {
  background: var(--charcoal);
}

.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: 26px;
  bottom: 20px;
  z-index: 7;
}

/*==============================================================
Footer
==============================================================*/
.footer {
  position: relative;
  padding: 0 0 1.75rem;
  background: var(--muzzyair-black);
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(225, 38, 27, 0.12), transparent 45%);
  pointer-events: none;
}
.footer .container-xl {
  position: relative;
  z-index: 2;
}

/*======================================
CTA
======================================*/
.footer-cta {
  margin: clamp(2rem, 3vw, 3rem) 0;
  padding: clamp(2rem, 2.5vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: var(--muzzyair-charcoal);
  overflow: hidden;
  position: relative;
  margin-bottom: 4rem;
}
.footer-cta::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.footer-cta h2 {
  margin-bottom: 0.85rem;
  color: var(--muzzyair-white);
}
.footer-cta p {
  max-width: 760px;
  margin: 0;
  color: var(--muzzyair-grey);
}
.footer-cta__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-cta__buttons .btn {
  min-width: 180px;
}

/*======================================
Main Footer
======================================*/
.footer-main {
  padding-bottom: 3.5rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 2rem;
}
.footer-logo img {
  width: 180px;
}

.footer-about {
  max-width: 300px;
  margin-bottom: 2rem;
  color: var(--muzzyair-grey);
}

.footer-title {
  margin-bottom: 1.8rem;
  color: var(--muzzyair-white);
  font-size: 1.18rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links li {
  margin: 0;
}
.footer-links a {
  color: var(--muzzyair-grey);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer-links a:hover {
  color: var(--muzzyair-white);
  padding-left: 0.35rem;
}

/*======================================
Contact
======================================*/
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--muzzyair-grey);
}
.footer-contact i {
  width: 18px;
  color: var(--muzzyair-red);
  text-align: center;
  flex-shrink: 0;
}
.footer-contact a {
  color: inherit;
}
.footer-contact a:hover {
  color: var(--muzzyair-white);
}

/*======================================
Bottom
======================================*/
.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom p {
  margin: 0;
  color: var(--muzzyair-grey);
  font-size: 0.92rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.footer-bottom-links li {
  margin: 0 !important;
}
.footer-bottom-links a {
  color: var(--muzzyair-grey);
  font-size: 0.92rem;
}
.footer-bottom-links a:hover {
  color: var(--muzzyair-white);
}

/*==============================================================
 Chauffeur Section
==============================================================*/
.chauffeur-section {
  background: var(--muzzyair-black);
}
.chauffeur-section h2,
.chauffeur-section h3 {
  color: var(--muzzyair-white);
}
.chauffeur-section p,
.chauffeur-section .check-list li {
  color: var(--muzzyair-grey);
}
.chauffeur-section .btn {
  margin-top: 0.5rem;
}

/* Right Card */
.chauffeur-card {
  position: relative;
  padding: clamp(2.2rem, 3vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  overflow: hidden;
}
.chauffeur-card h3 {
  margin-bottom: 0.75rem;
}
.chauffeur-card p {
  max-width: 520px;
  margin-bottom: 2rem;
}
.chauffeur-card .check-list {
  margin: 0;
}
.chauffeur-card__number {
  position: absolute;
  top: 0.75rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(6rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.journey .journey-stat {
  height: 100%;
  min-height: 155px;
  padding: 2rem 1.4rem;
  border-radius: var(--radius-large);
  background: var(--muzzyair-black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.journey .journey-stat h3 {
  margin: 0;
  color: var(--muzzyair-white);
  font-size: clamp(2.5rem, 3vw, 3rem) !important;
  line-height: 1;
}
.journey .journey-stat p {
  margin: 0;
  color: var(--muzzyair-grey);
  line-height: 1.45;
  font-size: 0.95rem;
}

.services-main {
  background: var(--muzzyair-warm-white);
}
.services-main .service-card {
  height: 100%;
  overflow: hidden;
  background: var(--muzzyair-white);
  border: 1px solid var(--muzzyair-light-grey);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-medium);
}
.services-main .service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.services-main .service-card__image {
  display: block;
}
.services-main .service-card__image img {
  width: 100%;
  aspect-ratio: 4/2.6;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-main .service-card__body {
  padding: 1.35rem;
}
.services-main .service-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  color: var(--muzzyair-red);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.services-main .service-card h3 {
  margin-bottom: 0.75rem;
}
.services-main .service-card h3 a:hover {
  color: var(--muzzyair-red);
}
.services-main .service-card p {
  margin-bottom: 1rem;
  color: #686d75;
  font-size: 0.92rem;
}
.services-main .service-card .check-list {
  gap: 0.45rem;
  margin: 0 0 1.25rem;
}
.services-main .service-card .check-list li {
  font-size: 0.82rem;
}
.services-main .service-card .check-list i {
  font-size: 0.8rem;
}
.services-main .service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--muzzyair-black);
}
.services-main .service-card__link:hover {
  gap: 0.75rem;
}

.quote-section .quote-content {
  padding-right: 60px;
}
.quote-section .quote-content h2 {
  max-width: 620px;
  margin: 18px 0 24px;
}
.quote-section .quote-content > p {
  max-width: 620px;
  color: var(--text-secondary);
}
.quote-section .quote-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.quote-section .quote-feature i {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #111;
  color: var(--muzzyair-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 12px 25px rgba(0, 0, 0, 0.12);
}
.quote-section .quote-feature h6 {
  margin-bottom: 6px;
  font-weight: 700;
}
.quote-section .quote-feature p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
}
.quote-section {
  /* ======================= */
}
.quote-section .iti.iti--allow-dropdown {
  width: 100%;
}
.quote-section .quote-form {
  background: #0d0d0f;
  color: #fff;
  border-radius: 26px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.quote-section .quote-form h3 {
  color: #fff;
}
.quote-section .quote-form::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 32, 0.18), transparent 70%);
}
.quote-section .quote-form > p {
  color: rgba(255, 255, 255, 0.65);
  margin: 18px 0 28px;
}
.quote-section .quote-form .form-label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}
.quote-section .quote-form .form-control, .quote-section .quote-form .form-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 14px;
  min-height: 56px;
}
.quote-section .quote-form .form-control::-moz-placeholder, .quote-section .quote-form .form-select::-moz-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.quote-section .quote-form .form-control::placeholder, .quote-section .quote-form .form-select::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.quote-section .quote-form .form-control:focus, .quote-section .quote-form .form-select:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
  box-shadow: none;
}
.quote-section .quote-form .form-control option, .quote-section .quote-form .form-select option {
  color: var(--muzzyair-black);
}
.quote-section .quote-form textarea.form-control {
  min-height: 150px;
  resize: none;
}
.quote-section .quote-form small {
  color: rgba(255, 255, 255, 0.55);
}
.quote-section .quote-form small i {
  color: #44d07f;
}
@media (max-width: 991px) {
  .quote-section .quote-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .quote-section .quote-form {
    padding: 32px 24px;
  }
}

.quote-section.contact {
  background: var(--muzzyair-warm-white);
}

.why-section.airport-transfer {
  background: var(--muzzyair-warm-white);
}

.journey-guidance {
  position: relative;
}
.journey-guidance .guidance-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.journey-guidance .split-content {
  position: sticky;
  top: 200px;
}
.journey-guidance .guidance-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  transition: 0.3s ease;
}
.journey-guidance .guidance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.journey-guidance .guidance-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8;
}
.journey-guidance .guidance-number {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--muzzyair-black);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(230, 42, 31, 0.25);
}
@media (max-width: 767px) {
  .journey-guidance .guidance-card {
    padding: 1rem;
    gap: 1rem;
  }
  .journey-guidance .guidance-number {
    width: 46px;
    height: 46px;
    font-size: 0.85rem;
  }
}

.service-recommendations {
  background: #0b0d10;
  position: relative;
  overflow: hidden;
}
.service-recommendations::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(rgba(239, 45, 35, 0.12), transparent 70%);
  pointer-events: none;
}
.service-recommendations .section-header {
  position: relative;
  z-index: 2;
}
.service-recommendations .section-header h2 {
  color: #fff;
}
.service-recommendations .section-header p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.7);
}
.service-recommendations .service-guide {
  position: relative;
  height: 100%;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.35s ease;
}
.service-recommendations .service-guide:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 45, 35, 0.45);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.service-recommendations .service-guide__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 45, 35, 0.12);
}
.service-recommendations .service-guide__icon i {
  font-size: 1.6rem;
  color: var(--muzzyair-grey);
}
.service-recommendations .service-guide h4 {
  color: #fff;
  margin-bottom: 1rem;
}
.service-recommendations .service-guide p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}
.service-recommendations .service-guide ul {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}
.service-recommendations .service-guide ul li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.75rem;
}
.service-recommendations .service-guide ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muzzyair-grey);
}
.service-recommendations .service-guide a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muzzyair-grey);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.service-recommendations .service-guide a i {
  transition: 0.3s;
}
.service-recommendations .service-guide a:hover {
  gap: 0.85rem;
}
.service-recommendations .service-guide a:hover i {
  transform: translateX(4px);
}

.fleet-intro {
  background: var(--muzzyair-warm-white);
}

.vehicle-comparison .section-header {
  max-width: 760px;
  margin: 0 auto;
}
.vehicle-comparison .section-header p {
  max-width: 650px;
  color: var(--text-secondary);
}
.vehicle-comparison .table-responsive {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}
.vehicle-comparison .compare-table {
  margin: 0;
  background: #fff;
}
.vehicle-comparison .compare-table thead th {
  background: var(--bg-dark);
  padding: 1.35rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: 0;
  vertical-align: middle;
}
.vehicle-comparison .compare-table thead th:first-child {
  color: var(--primary);
  width: 20%;
}
.vehicle-comparison .compare-table thead th small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 400;
}
.vehicle-comparison .compare-table tbody tr {
  transition: 0.3s;
}
.vehicle-comparison .compare-table tbody tr:nth-child(even) {
  background: #fafafa;
}
.vehicle-comparison .compare-table tbody tr:hover {
  background: rgba(239, 45, 35, 0.04);
}
.vehicle-comparison .compare-table tbody td {
  padding: 1.15rem 1.5rem;
  border-color: var(--border-color);
  color: var(--text-secondary);
  vertical-align: middle;
}
.vehicle-comparison .compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}
.vehicle-comparison .table-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  background: rgba(239, 45, 35, 0.08);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
}
.vehicle-comparison .table-badge i {
  font-size: 0.8rem;
}
.vehicle-comparison .vehicle-note {
  padding: 2rem;
  border-radius: 20px;
  background: #fff8f6;
  border: 1px solid rgba(239, 45, 35, 0.15);
}
.vehicle-comparison .vehicle-note h6 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}
.vehicle-comparison .vehicle-note h6 i {
  color: var(--primary);
}
.vehicle-comparison .vehicle-note p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}
@media (max-width: 991px) {
  .vehicle-comparison .compare-table thead th,
  .vehicle-comparison .compare-table tbody td {
    padding: 1rem;
    font-size: 0.9rem;
  }
  .vehicle-comparison .compare-table thead th small {
    font-size: 0.75rem;
  }
  .vehicle-comparison .vehicle-note {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .vehicle-comparison .section-header {
    text-align: left !important;
  }
  .vehicle-comparison .table-responsive {
    border-radius: 16px;
  }
  .vehicle-comparison .vehicle-note {
    padding: 1.25rem;
  }
}

.class-experience {
  position: relative;
  background-color: var(--muzzyair-warm-white);
}
.class-experience .experience-card,
.class-experience .experience-grid {
  height: 100%;
  padding: 2.75rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  transition: 0.35s ease;
}
.class-experience .experience-card:hover,
.class-experience .experience-grid:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.class-experience .experience-card h2 {
  margin: 1rem 0 1.25rem;
}
.class-experience .experience-card > p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 580px;
}
.class-experience .experience-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.class-experience .experience-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.class-experience .experience-highlights .highlight-item i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(var(--bs-danger-rgb), 0.08);
  color: var(--bs-danger);
  font-size: 1rem;
  flex-shrink: 0;
}
.class-experience .experience-highlights .highlight-item span {
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}
.class-experience .experience-grid .row {
  margin-top: 1.5rem;
}
.class-experience .experience-grid .grid-card {
  height: 100%;
  padding: 1.4rem;
  border-radius: 18px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}
.class-experience .experience-grid .grid-card:hover {
  background: #fff;
  border-color: rgba(var(--bs-danger-rgb), 0.18);
  transform: translateY(-4px);
}
.class-experience .experience-grid .grid-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--bs-danger);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}
.class-experience .experience-grid .grid-card h5 {
  margin-bottom: 0.65rem;
  font-size: 1.1rem;
}
.class-experience .experience-grid .grid-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}
@media (max-width: 991px) {
  .class-experience .experience-card,
  .class-experience .experience-grid {
    padding: 2rem;
  }
  .class-experience .experience-highlights {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .class-experience .experience-card,
  .class-experience .experience-grid {
    padding: 1.5rem;
    border-radius: 18px;
  }
  .class-experience .experience-grid .grid-card {
    padding: 1.2rem;
  }
}

.vehicle-gallery {
  overflow: hidden;
  background: radial-gradient(circle at 85% 15%, rgba(225, 38, 27, 0.06), transparent 30%), var(--muzzyair-white-white);
}
.vehicle-gallery .section-subtitle {
  max-width: 700px;
}
.vehicle-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  cursor: zoom-in;
  border-radius: var(--radius-large);
  border: 1px solid var(--muzzyair-light-grey);
  background: var(--muzzyair-white);
  box-shadow: var(--shadow-card);
  transition: var(--transition-medium);
}
.vehicle-gallery__item--large, .vehicle-gallery__item--small {
  height: 530px;
}
.vehicle-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 13, 16, 0.85) 100%);
}
.vehicle-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.vehicle-gallery__item:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 38, 27, 0.3);
  box-shadow: var(--shadow-dark);
}
.vehicle-gallery__item:hover img {
  transform: scale(1.06);
}
.vehicle-gallery__item:hover .vehicle-gallery__view {
  opacity: 1;
  transform: scale(1);
}
.vehicle-gallery__content {
  position: absolute;
  left: 30px;
  bottom: 28px;
  z-index: 2;
  color: var(--muzzyair-white);
}
.vehicle-gallery__content small {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muzzyair-red);
}
.vehicle-gallery__content strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
}
.vehicle-gallery__view {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--muzzyair-red);
  color: var(--muzzyair-white);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition-medium);
}
.vehicle-gallery__view:hover {
  background: var(--muzzyair-red-dark);
}

.gallery-lightbox {
  width: min(1200px, 100% - 32px);
  max-width: 100%;
  max-height: 90vh;
  margin: auto;
  padding: 14px;
  border: 0;
  border-radius: var(--radius-large);
  background: var(--muzzyair-black);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  animation: galleryFade 0.3s ease;
}
.gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}
.gallery-lightbox img {
  width: 100%;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  border-radius: var(--radius-medium);
}
.gallery-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--muzzyair-red);
  color: var(--muzzyair-white);
  cursor: pointer;
  transition: var(--transition-medium);
}
.gallery-lightbox__close:hover {
  background: var(--muzzyair-red-dark);
  transform: rotate(90deg) scale(1.08);
}
.gallery-lightbox__close i {
  font-size: 18px;
}
.gallery-lightbox[open] {
  display: block;
}

/* Only when dialog is open */
.gallery-lightbox[open] {
  display: block;
}

@keyframes galleryFade {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes galleryFade {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.coverage-location {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 72px;
  padding: 1rem 1.1rem;
  color: var(--muzzyair-black);
  background: var(--muzzyair-white);
  border: 1px solid var(--muzzyair-light-grey);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.coverage-location:hover {
  color: var(--muzzyair-black);
  border-color: rgba(225, 38, 27, 0.35);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.coverage-location__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: var(--muzzyair-red);
  background: rgba(225, 38, 27, 0.08);
  border-radius: 50%;
}

.coverage-location__name {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}

.coverage-location__arrow {
  color: #a0a5ac;
  font-size: 0.75rem;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.coverage-location:hover .coverage-location__arrow {
  color: var(--muzzyair-red);
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .coverage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .coverage-location {
    min-height: 64px;
    padding: 0.8rem;
  }
  .coverage-location__icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }
  .coverage-location__name {
    font-size: 0.82rem;
  }
}
@media (max-width: 479.98px) {
  .coverage-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .vehicle-gallery__item--large, .vehicle-gallery__item--small {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .gallery-lightbox {
    width: calc(100% - 20px);
    padding: 10px;
    border-radius: var(--radius-medium);
  }
  .gallery-lightbox img {
    max-height: 75vh;
  }
  .gallery-lightbox__close {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 575px) {
  .vehicle-gallery__item--large, .vehicle-gallery__item--small {
    height: 330px;
  }
  .vehicle-gallery__content {
    left: 20px;
    bottom: 20px;
  }
  .vehicle-gallery__content strong {
    font-size: 22px;
  }
  .vehicle-gallery__view {
    opacity: 1;
    transform: none;
    top: 16px;
    right: 16px;
  }
  .gallery-lightbox__close {
    top: 12px;
    right: 12px;
  }
}
.legal-card h3 {
  margin-top: 40px;
}
.legal-card h4 {
  margin-top: 20px;
}

/*======================================
Responsive
======================================*/
/*-----------------------------------
Large Screens
-----------------------------------*/
@media (min-width: 1600px) {
  .hero-content h1 {
    font-size: 5.6rem;
  }
  .hero-content .hero-lead {
    font-size: 1rem;
  }
}
@media (max-width: 992px) {
  .header-area {
    display: none;
  }
  .module-hero {
    min-height: auto;
    padding: 70px 0;
    text-align: center;
  }
  .mobile-header {
    padding: 5px 0px;
    transition: 0.3s;
  }
  .mobile-header.fixed + .header-slogan {
    opacity: 1;
    visibility: visible;
  }
  .mobile-header.fixed {
    padding: unset;
  }
  .mobile-header.fixed .slogan-center {
    visibility: hidden;
    opacity: 0;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-content .eyebrow {
    display: none;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-lead {
    margin-inline: auto;
    font-size: 1.05rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .module-hero .breadcrumb-custom {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
    gap: 22px;
  }
  .features-strip .feature-item {
    min-height: auto;
    padding: 35px 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .about-section .about-image-wrapper {
    padding-left: 10px;
  }
  .about-section .about-image-wrapper .about-image {
    height: 450px;
  }
  .about-section .about-image-wrapper .location-card {
    right: 15px;
    bottom: 25px;
  }
  .services .service-card {
    padding: 1.75rem;
  }
  .services .service-card h3 {
    font-size: 1.45rem;
  }
  .booking-steps__line {
    display: none;
  }
  .booking-steps .booking-step {
    margin-bottom: 2rem;
  }
  .why-section .why-image {
    margin-bottom: 1.5rem;
  }
  .why-section .why-image img {
    max-height: 500px;
  }
}
@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2.45rem;
    line-height: 1.08;
    margin-bottom: 22px;
  }
  .hero-content .eyebrow {
    font-size: 10px;
    font-weight: 400;
  }
  .hero-lead {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
  }
  .hero-overlay {
    background: rgba(11, 13, 16, 0.78);
  }
  .hero-actions {
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 50%;
    font-weight: 400;
    padding: 14px;
  }
  .hero-actions .hero-text-link {
    justify-content: center;
  }
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-trust li {
    justify-content: center;
  }
  .hero-trust .feature-item {
    gap: 18px;
    padding: 30px 22px;
  }
  .hero-trust .feature-content h3 {
    font-size: 18px !important;
  }
  .hero-trust .feature-content p {
    font-size: 13px;
  }
  .hero-trust .feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  .hero-trust .feature-icon i {
    font-size: 16px;
  }
  .serives .service-card {
    padding: 1.5rem;
  }
  .serives .service-card h3 {
    margin-top: 1.25rem;
    font-size: 1.35rem;
  }
  .serives .service-card p {
    margin-bottom: 1.5rem;
  }
  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
  }
  .section-heading--split h2 {
    margin-bottom: 0;
  }
  .section-heading--split p {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .about-image-wrapper {
    padding: 10px;
  }
  .about-image-wrapper .about-image {
    height: 350px;
  }
  .about-image-wrapper .about-image-border {
    width: 95%;
    height: 95%;
  }
  .about-image-wrapper .location-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -40px;
    margin-left: 20px;
  }
}/*# sourceMappingURL=style.css.map */