@charset "UTF-8";
:root {
  /* ── Core Colors ───────────────── */
  --black: #030912;
  --charcoal: #0d1624;
  --mid: #7c8b9d;
  --silver: #b7c6d5;
  --border: rgba(169, 184, 255, 0.22);
  --text: #8f979e;
  --white: #ffffff;
  --white-soft: #f7fbff;
  /* ── Luxury Accent (Gold System) ── */
  --gold: #4d6dff;
  --gold-deep: #3153ea;
  --gold-dark: #233dc5;
  /* Premium Gradient */
  --gold-gradient: linear-gradient(
    135deg,
    #a9b8ff 0%,
    #6f87ff 45%,
    #3153ea 100%
  );
  /* ── Semantic Colors ───────────── */
  --text-primary: #f7fbff;
  --text-secondary: #d3e0ec;
  --text-muted: #b7c6d5;
  --heading-color: #f7fbff;
  --bg-primary: #030912;
  --bg-soft: #0d1624;
  /* Accent usage */
  --accent: var(--gold);
  --accent-hover: var(--gold-deep);
  /* ── Inputs ───────────────────── */
  --input-bg: rgba(255, 255, 255, 0.05);
  --input-border: rgba(169, 184, 255, 0.28);
  /* ── Header ───────────────────── */
  --header-top-bg: rgba(3, 9, 18, 0.851);
  /* ── Typography ───────────────── */
  --ff-ui: "dmsans", system-ui, sans-serif;
  --ff-serif: "playfair", Georgia, serif;
  --ff-sharkon: "sharkon";
  /* ── Premium Cards ────────────── */
  --card-bg:
    radial-gradient(
      circle at top left,
      rgba(169, 184, 255, 0.14),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    );
  --card-border: rgba(169, 184, 255, 0.32);
  --card-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  /* ── Radius ───────────────────── */
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  /* ── Motion ───────────────────── */
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slide: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  /* ── Shadows ──────────────────── */
  --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.25);
  --shadow-deep: 0 30px 90px rgba(0, 0, 0, 0.45);
}

@font-face {
  font-family: "dmsans";
  src: url("../fonts/dmsans/DMSans_18pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "dmsans";
  src: url("../fonts/dmsans/DMSans_18pt-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "dmsans";
  src: url("../fonts/dmsans/DMSans_18pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "playfair";
  src: url("../fonts/playfair/Playfair_9pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "playfair";
  src: url("../fonts/playfair/Playfair_9pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "sharkon";
  src: url("../fonts/sharkon.woff") format("woff2");
  font-weight: 700;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

p {
  line-height: 1.75;
}

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

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

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

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

.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t), visibility var(--t), transform var(--t);
  z-index: 998;
  cursor: none;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--charcoal);
}

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

.section-label {
  display: inline-flex;
  padding: 6px 20px;
  margin-bottom: 28px;
  border-radius: 500px;
  border: 1px solid rgba(169, 184, 255, 0.54);
  background: rgba(169, 184, 255, 0.08);
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 0.4em;
  transform: scaleY(1.8);
  text-transform: uppercase;
}
.section-label--light {
  color: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.18);
}
.section-label {
  font-family: var(--ff-sharkon);
  font-weight: 400;
}

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

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

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

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

.commonbtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background var(--t), color var(--t), box-shadow var(--t);
}
.commonbtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0.22) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.commonbtn span {
  position: relative;
  z-index: 1;
  padding: 14px 24px;
  transition: color var(--t), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.commonbtn:hover {
  transform: translateY(-3px);
}
.commonbtn:hover::before {
  transform: translateX(140%);
}
.commonbtn:hover span {
  transform: translateX(2px);
}
.commonbtn:hover i {
  transform: rotate(-10deg) scale(1.08);
}
.commonbtn:hover i::before {
  opacity: 1;
}
.commonbtn:active {
  transform: scale(0.98);
}
.commonbtn {
  /* Dark */
}
.commonbtn.dark {
  background: var(--black);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 30px rgba(0, 0, 0, 0.2);
}
.commonbtn.dark i {
  background: var(--white);
  color: var(--black);
}
.commonbtn.dark:hover {
  background: #111;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.commonbtn {
  /* Light */
}
.commonbtn.light {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.commonbtn.light i {
  background: var(--black);
  color: var(--white);
}
.commonbtn.light:hover {
  background: #f7f7f7;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}
.commonbtn {
  /* Outline Light */
}
.commonbtn.outline-light {
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.commonbtn.outline-light:hover {
  border-color: rgba(169, 184, 255, 0.5);
  background: rgba(169, 184, 255, 0.08);
}
.commonbtn {
  /* Outline Dark */
}
.commonbtn.outline-dark {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(169, 184, 255, 0.54);
}
.commonbtn.outline-dark span {
  color: var(--white);
}
.commonbtn.outline-dark:hover {
  background: rgba(169, 184, 255, 0.12);
  border-color: #a9b8ff;
  box-shadow: 0 0 24px rgba(169, 184, 255, 0.16);
}
.commonbtn.outline-dark:hover span {
  color: var(--accent);
}
.commonbtn {
  /* Small size */
}
.commonbtn.sm span {
  padding: 11px 18px;
}
.commonbtn.sm i {
  width: 40px;
  min-height: 40px;
  font-size: 11px;
}
.commonbtn.gold {
  background: var(--gold-gradient);
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(33, 83, 230, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.commonbtn.gold span {
  color: #fff;
}
.commonbtn.gold::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
}
.commonbtn.gold:hover {
  background: linear-gradient(180deg, #5d89ff 0%, #3b6cff 45%, #2857ea 100%);
  box-shadow: 0 16px 36px rgba(33, 83, 230, 0.45), 0 0 24px rgba(77, 109, 255, 0.25);
}

.logo img {
  width: 180px;
}

.booking_engine_container .lf-w-full.lf-bg-white.lf-shadow-lg.lf-dropdown {
  background: rgba(20, 20, 20, 0.35) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 20px;
  border: 1px solid rgba(197, 182, 101, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  overflow: hidden;
}

.booking_engine_container .lf-grid.lf-grid-cols-3.lf-mb-2 {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border-radius: 15px 15px 0 0;
}

.booking_engine_container .lf-flex.lf-rounded-full {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px;
  border-radius: 999px;
}

.booking_engine_container .lf-flex.lf-rounded-full button {
  color: var(--white-soft) !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(--gold-gradient) !important;
  color: var(--black) !important;
  box-shadow: 0 8px 24px rgba(197, 182, 101, 0.35);
}

.booking_engine_container label {
  color: var(--white-soft) !important;
  font-size: 14px;
  font-weight: 500;
}

.booking_engine_container input:not(.datepicker-calendar-icon) {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--white) !important;
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.booking_engine_container input:not(.datepicker-calendar-icon)::-moz-placeholder {
  color: var(--silver);
}

.booking_engine_container input:not(.datepicker-calendar-icon)::placeholder,
.booking_engine_container input:not(.datepicker-calendar-icon)::-moz-placeholder {
  color: var(--silver);
}

.booking_engine_container input:not(.datepicker-calendar-icon):focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 20px rgba(197, 182, 101, 0.18);
}

.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 rgba(197, 182, 101, 0.12);
  padding: 12px 0;
  margin-top: 10px;
}

.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button {
  color: var(--white-soft) !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(--gold) !important;
  color: var(--gold);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 16px;
  font-size: 11px;
  margin-right: 8px;
  background: rgba(197, 182, 101, 0.08);
}

.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;
  padding: 10px;
}

.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner button {
  width: 100%;
  background: var(--gold-gradient) !important;
  color: var(--black) !important;
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(197, 182, 101, 0.35);
}

.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner button:hover {
  background: var(--gold-gradient) !important;
  box-shadow: 0 15px 35px rgba(197, 182, 101, 0.45);
}

.booking_engine_container .lf-cursor-pointer.lf-relative button {
  color: var(--white-soft) !important;
}

.booking_engine_container .lf-top-2\/4 {
  top: 38% !important;
  color: var(--gold);
}

.booking_engine_container .lf-text-\[--primary-color\] button {
  color: var(--white-soft) !important;
}

.booking_engine_container h5.lf-text-\[--primary-color\] {
  color: var(--white-soft) !important;
}

button.lf-delay-150 {
  color: var(--white-soft) !important;
}

.lf-z-\[9999999\] {
  z-index: 1 !important;
}

.topbar {
  background: var(--header-top-bg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 15px 0;
  font-family: var(--ff-ui);
  font-size: 13px;
  line-height: 1;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-weight: 400;
}
.topbar__item:hover {
  color: rgba(255, 255, 255, 0.9);
}
.topbar i {
  font-size: 16px;
  opacity: 0.7;
  color: var(--text);
}
.topbar__social {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  transition: color var(--t);
}
.topbar__social:hover {
  color: #000;
}
.topbar .container-fluid {
  max-width: 1600px;
}

.header {
  position: sticky;
  top: 47px;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  border: 0;
  transition: 0.2s;
}
.header .navbar {
  padding: 0;
}
.header__container {
  background: #0b101c;
  padding: 10px 0px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(169, 184, 255, 0.16);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.4s ease;
}
.header.scrolled .header__container {
  background: rgba(3, 9, 18, 0.92);
  padding: 10px 0px;
  border-color: rgba(169, 184, 255, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.header .logo img {
  width: 250px;
}
.header .navbar-nav {
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.header .nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--white-soft);
  position: relative;
  transition: 0.35s ease;
}
.header .nav__link:hover, .header .nav__link.active {
  color: var(--gold);
}
.header .nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: 0.35s ease;
}
.header .nav__link:hover::after, .header .nav__link.active::after {
  width: 100%;
}
.header .nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .nav__chevron {
  font-size: 10px;
  transition: 0.4s ease;
}
.header .nav__item--dropdown {
  position: relative;
}
.header .nav__item--dropdown:hover .nav__dropdown,
.header .nav__item--dropdown:hover .nav__mega {
  opacity: 1;
  visibility: visible;
}
.header .nav__item--dropdown:hover .nav__chevron {
  transform: rotate(180deg);
}
.header .nav__dropdown,
.header .nav__mega {
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.35s ease;
  background: rgba(13, 22, 36, 0.98);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(169, 184, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  padding: 18px;
  z-index: 50;
}
.header .nav__dropdown {
  width: 320px;
}
.header .nav__mega {
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 715px;
}
.header .nav__mega-label {
  display: block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.header .nav__dropdown-item {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 6px 15px;
  border-radius: 14px;
  text-decoration: none;
  transition: 0.35s ease;
}
.header .nav__dropdown-item strong {
  color: var(--white-soft);
  font-size: 14px;
  font-weight: 500;
}
.header .nav__dropdown-item i {
  color: var(--white);
}
.header .nav__dropdown-item:hover {
  background: rgba(169, 184, 255, 0.168);
  opacity: 1;
  transform: translateX(6px);
}
.header .nav__dropdown-item:hover strong {
  color: var(--gold);
}
.header .header_btn {
  border-radius: 999px !important;
  min-height: 48px;
  border: 1px solid rgba(169, 184, 255, 0.5);
  background: rgba(169, 184, 255, 0.06);
}
.header .header_btn:hover {
  border-color: rgba(169, 184, 255, 0.8);
}

.header.scrolled {
  top: 0px;
}
.header.scrolled .header__container {
  background: rgba(3, 9, 18, 0.92);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.mobile-contact {
  color: var(--text-muted);
}
.mobile-contact a {
  color: var(--text-muted);
}

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

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

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

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

.hero {
  position: relative;
  min-height: calc(100vh - 47px);
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg-primary);
  perspective: 1200px;
}
.hero .hero__badge {
  border-radius: 500px;
  border: 1px solid var(--accent);
  color: var(--white-soft);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  transform: none;
  font-family: var(--ff-ui);
  /* width: 70%; */
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.hero .hero__badge::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 60%;
  top: 20%;
  left: 15px;
  background: var(--accent);
}
.hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -o-object-position: bottom;
     object-position: bottom;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: radial-gradient(circle at 20% 45%, rgba(48, 86, 255, 0.08) 0%, rgba(48, 86, 255, 0.04) 22%, transparent 45%), linear-gradient(90deg, rgba(3, 9, 18, 0.88) 0%, rgba(3, 9, 18, 0.74) 35%, rgba(3, 9, 18, 0.48) 70%, rgba(3, 9, 18, 0.18) 100%), linear-gradient(180deg, rgba(3, 9, 18, 0.18) 0%, rgba(3, 9, 18, 0.35) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin-inline: auto;
}
.hero__heading {
  font-size: clamp(42px, 6vw, 60px);
  line-height: 1.05;
  font-family: var(--ff-serif);
  color: var(--white);
  margin-bottom: 20px;
  max-width: 1000px;
  margin-inline: auto;
  position: relative;
}
.hero__heading::after {
  content: "";
  position: absolute;
  left: 45%;
  top: 105%;
  width: 80px;
  height: 2px;
  background: var(--accent);
}
.hero.hero_with_booking_engine .hero__heading::after {
  left: 0px;
}
.hero__sub {
  color: var(--text-secondary);
  /* max-width: 780px; */
  margin-inline: auto;
  margin: 30px 0;
}
.hero__contact {
  display: inline-flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 12px 15px;
  margin-bottom: 35px;
  /* Glass background */
  background: rgba(13, 21, 35, 0.75);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  /* Border */
  border: 1px solid rgba(83, 140, 255, 0.1);
  /* Rounded corners */
  border-radius: 12px;
  /* Shadow */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 30px rgba(0, 0, 0, 0.35);
}
.hero__contact a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 15px;
}
.hero__contact a i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(83, 140, 255, 0.45);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 12px rgba(83, 140, 255, 0.15);
}
.hero__contact a span {
  display: flex;
  flex-direction: column;
}
.hero__contact a span small {
  color: #6fa8ff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.hero__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero .commonbtn.gold {
  background: #2b60f2;
  background: linear-gradient(180deg, #3b72ff 0%, #2b60f2 60%, #1d4dda 100%);
}
.hero .commonbtn {
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient();
}
.hero .commonbtn span {
  padding: 18px 20px 18px 10px;
  color: var(--white);
}
.hero .commonbtn i {
  font-size: 20px;
  margin-left: 20px;
}

.hero_with_booking_engine {
  text-align: left;
}

.hero-3d-scene__glow {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 55vw;
  height: 18vw;
  transform: translateX(-50%);
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 184, 255, 0.28), rgba(169, 184, 255, 0.08) 38%, transparent 70%);
  filter: blur(26px);
  opacity: 0.85;
}
.hero-3d-scene__car {
  position: absolute;
  left: 50%;
  bottom: -4%;
  z-index: 3;
  width: min(78vw, 850px);
  max-width: none;
  transform: translateX(-50%) translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
  transform-origin: center bottom;
  filter: drop-shadow(0 45px 55px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 35px rgba(169, 184, 255, 0.14));
  will-change: transform;
  pointer-events: none;
}

.hero-booking {
  position: relative;
  z-index: 7;
  margin-top: 70px;
}

/* Booking Widget */
.glass-form {
  position: relative;
  z-index: 5;
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.glass-form .form-label {
  color: var(--black);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.glass-form .form-control,
.glass-form .form-select {
  height: 60px;
  border-radius: 14px;
  border: 1px solid rgba(145, 145, 145, 0.518);
  background: rgba(227, 226, 226, 0.15);
  backdrop-filter: blur(10px);
  color: var(--black);
  box-shadow: none;
}
.glass-form .form-control::-moz-placeholder, .glass-form .form-select::-moz-placeholder {
  color: rgba(59, 59, 59, 0.7);
}
.glass-form .form-control::placeholder,
.glass-form .form-select::placeholder {
  color: rgba(59, 59, 59, 0.7);
}
.glass-form .form-control:focus,
.glass-form .form-select:focus {
  border-color: var(--gold);
  background: rgba(223, 222, 222, 0.2);
  box-shadow: 0 0 0 0.2rem rgba(169, 184, 255, 0.2);
}
.glass-form textarea.form-control {
  height: auto;
  min-height: 140px;
  padding-top: 15px;
}
.glass-form .submit-btn {
  min-height: 60px;
  min-width: 200px;
  border-radius: 14px;
  display: flex;
  justify-content: center;
}

.hero-booking {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  bottom: -220px;
}

.trustbar {
  position: relative;
  background: var(--charcoal);
  border-top: 1px solid rgba(169, 184, 255, 0.15);
  border-bottom: 1px solid rgba(169, 184, 255, 0.15);
  overflow: hidden;
}
.trustbar__inner {
  display: flex;
  align-items: center;
  min-height: 90px;
}
.trustbar__label {
  flex-shrink: 0;
  padding-inline: 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  font-family: var(--ff-sharkon);
  text-transform: uppercase;
  color: var(--gold);
  border-right: 1px solid rgba(169, 184, 255, 0.15);
}
.trustbar__slider {
  overflow: hidden;
  flex: 1;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
          mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.trustbar__track {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  animation: trustScroll 30s linear infinite;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline: 40px;
  flex-shrink: 0;
}
.trustbar__item img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.85;
}
.trustbar__item span {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s ease;
}
.trustbar__item:hover span {
  color: var(--gold);
}
.trustbar__item:hover img {
  transform: scale(1.08);
}
.trustbar:hover .trustbar__track {
  animation-play-state: paused;
}

@keyframes trustScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.about-home {
  position: relative;
  overflow: hidden;
}
.about-home__media {
  position: relative;
  padding-right: 60px;
  padding-bottom: 60px;
  height: 100%;
}
.about-home__img {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-deep);
}
.about-home__img img {
  width: 100%;
  display: block;
  transition: 1.2s ease;
}
.about-home__img:hover img {
  transform: scale(1.08);
}
.about-home__img--main {
  height: 100%;
}
.about-home__img--main img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-home__img--floating {
  position: absolute;
  width: 280px;
  height: 40%;
  bottom: 0;
  right: 25px;
  z-index: 2;
}
.about-home__img--floating img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-home__experience {
  position: absolute;
  top: 40px;
  right: 0px;
  width: 170px;
  z-index: 3;
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.about-home__experience .number {
  display: block;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.about-home__experience .text {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--white-soft);
  line-height: 1.6;
}
.about-home__content {
  max-width: 620px;
}
.about-home__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 35px;
}
.about-home .feature-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: 0.45s;
}
.about-home .feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.about-home .feature-card i {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(169, 184, 255, 0.08);
  color: var(--gold);
  font-size: 18px;
}
.about-home .feature-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.about-home .feature-card p {
  margin: 0;
  font-size: 14px;
}
.about-home__footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.about-home__footer strong {
  font-size: 18px;
}
.about-home__footer .commonbtn {
  min-width: 145px;
}

.how-it-works {
  background: var(--white);
  position: relative;
}
.how-it-works__card {
  position: relative;
  height: 100%;
  padding: 45px 35px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgb(255, 255, 255));
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: var(--t);
}
.how-it-works__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}
.how-it-works__card:hover .how-it-works__icon {
  transform: rotate(-8deg) scale(1.05);
}
.how-it-works__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}
.how-it-works__number {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 80px;
  line-height: 1;
  font-weight: 700;
  color: rgba(169, 184, 255, 0.08);
  font-family: var(--ff-serif);
}
.how-it-works__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  background: var(--gold-gradient);
  transition: 0.4s;
}
.how-it-works__icon i {
  color: var(--black);
  font-size: 30px;
}
.how-it-works h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--black);
  font-family: var(--ff-serif);
}
.how-it-works p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.services-stack {
  position: relative;
  background: var(--bg-primary);
}
.services-stack__wrapper {
  position: relative;
}

.service-card {
  position: sticky;
  top: 110px;
  height: 78vh;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 80px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-deep);
  background: var(--black);
}
.service-card .commonbtn {
  margin-top: 20px;
}
.service-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.08);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 9, 18, 0.78), rgba(3, 9, 18, 0.25), transparent);
}
.service-card__content {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 2;
  max-width: 600px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  background: rgba(10, 15, 25, 0.38);
  border-radius: var(--radius-lg);
}
.service-card__content h3 {
  color: var(--white);
  font-size: 38px;
  margin-bottom: 10px;
}
.service-card__content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 16px;
}

.fleet-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fleet-mobile-cta {
  display: none;
}

.fleet-fullscreen .fleet-track {
  display: flex;
  height: 100%;
  width: -moz-max-content;
  width: max-content;
  overflow-x: hidden;
}

.fleet-fullscreen .fleet-slide {
  position: relative;
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

/* Background Image */
.fleet-fullscreen .fleet-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Overlay */
.fleet-fullscreen .fleet-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2), transparent);
}

/* Glass Content */
.fleet-fullscreen .fleet-content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 520px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-deep);
  z-index: 2;
  text-align: center;
}

.fleet-fullscreen .fleet-content .commonbtn {
  display: inline-flex;
}

/* Optional center variant */
.fleet-fullscreen .fleet-content.center {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
}

.premium-fleet {
  background: #fff;
}

.fleet-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}
.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.12);
}
.fleet-card:hover .fleet-card__img img {
  transform: scale(1.08);
}
.fleet-card:hover .fleet-card__overlay {
  opacity: 0.4;
}
.fleet-card__img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.fleet-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s ease;
}
.fleet-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
  opacity: 0.25;
  transition: 0.4s ease;
}
.fleet-card__content {
  padding: 25px;
}
.fleet-card .fleet-tag {
  display: inline-block;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(169, 184, 255, 0.12);
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fleet-card h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  margin-bottom: 15px;
}
.fleet-card ul {
  display: flex;
  gap: 8px 12px;
  margin-bottom: 20px;
}
.fleet-card ul li {
  font-size: 14px;
  color: var(--text);
}
.fleet-card ul li i {
  color: var(--gold);
  margin-right: 8px;
}
.fleet-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.occasion {
  overflow: hidden;
  background: #fff;
}
.occasion__media {
  position: relative;
}
.occasion__img {
  width: 100%;
  height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.occasion__stat {
  position: absolute;
  background: var(--white);
  padding: 22px;
  min-width: 120px;
  box-shadow: var(--shadow-card);
}
.occasion__stat strong {
  display: block;
  font-size: 32px;
  font-family: var(--ff-serif);
}
.occasion__stat span {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text);
}
.occasion__stat--top {
  top: 30px;
  left: -20px;
  border-left: 3px solid var(--gold);
}
.occasion__stat--bottom {
  bottom: 30px;
  right: -20px;
  border-left: 3px solid var(--gold);
}
.occasion__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 0;
}
.occasion__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}
.occasion__feature i {
  color: var(--gold);
}
.occasion__actions {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}
.occasion__circle {
  width: 120px;
  height: 120px;
  position: relative;
  flex-shrink: 0;
}
.occasion__circle svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.occasion__circle text {
  fill: var(--black);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.occasion__circle i {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.testimonials {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.testimonial-badge {
  width: 140px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 18px;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-card);
}
.testimonial-badge strong {
  display: block;
  font-size: 32px;
  color: var(--gold);
  font-family: var(--ff-serif);
}
.testimonial-badge span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-card {
  position: relative;
  background: var(--white);
  padding: 80px;
  border-radius: 30px;
  border: 1px solid rgba(169, 184, 255, 0.12);
  text-align: center;
}
.testimonial-card__quote {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  background: var(--gold-gradient);
  color: var(--black);
  font-size: 24px;
}
.testimonial-card__text {
  font-family: var(--ff-serif);
  font-size: 2rem;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 50px;
}
.testimonial-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testimonial-card__client {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-card__client img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-card__client h5 {
  margin: 0;
  font-size: 18px;
}
.testimonial-card__client span {
  color: var(--text);
  font-size: 14px;
}
.testimonial-card__rating {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 3px;
}

.testimonial-card__avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--black);
  font-size: 28px;
  flex-shrink: 0;
}

.testimonial-card__rating {
  display: flex;
  gap: 4px;
}
.testimonial-card__rating i {
  color: var(--gold);
}

.testimonial-card__info {
  text-align: left;
}
.testimonial-card__info small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--text);
  font-size: 12px;
}
.testimonial-card__info .fa-circle-check,
.testimonial-card__info .fa-google {
  color: var(--gold);
}

.testimonial-progress {
  width: 180px;
  height: 3px;
  background: rgba(0, 0, 0, 0.08);
  margin: 40px auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 99px;
}
.testimonial-progress::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: progressBar 5s linear infinite;
}

@keyframes progressBar {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.faq {
  background: #f5f7ff;
}
.faq__wrapper {
  max-width: 900px;
  margin: auto;
}
.faq .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq .accordion-item {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}
.faq .accordion-item:hover {
  transform: translateY(-2px);
}
.faq .accordion-button {
  background: transparent;
  box-shadow: none;
  padding: 14px 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  gap: 16px;
}
.faq .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--black);
}
.faq .accordion-button::after {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(169, 184, 255, 0.12);
  background-position: center;
  background-size: 14px;
}
.faq .accordion-button i {
  color: var(--gold);
  width: 22px;
  text-align: center;
}
.faq .accordion-body {
  padding: 0 20px 18px 28px;
  color: var(--text);
  line-height: 1.8;
}

.footer {
  background: #050505;
  padding: 50px 0 0;
}
.footer__brand img {
  width: 100%;
  margin-bottom: 18px;
}
.footer__desc {
  font-size: 13px;
  color: #cfcfcf;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 14px;
}
.footer__meta {
  font-size: 11px;
  color: #9a9a9a;
}
.footer__meta li {
  margin-bottom: 6px;
}
.footer__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--white);
}
.footer__links li {
  margin-bottom: 7px;
}
.footer__links a {
  color: #bfbfbf;
}
.footer__links a:hover {
  color: var(--white);
}
.footer {
  /* CONTACT */
}
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #dcdcdc;
  text-align: left;
}
.footer__contact li i {
  color: var(--gold);
  font-size: 13px;
}
.footer {
  /* SOCIAL */
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gold);
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--black);
}
.footer {
  /* BOTTOM BAR (IMPORTANT) */
}
.footer__copy {
  margin-top: 40px;
  padding: 14px 0;
  font-size: 12px;
  background: linear-gradient(90deg, #0b1320, #162338);
  color: #cfcfcf;
}
.footer {
  /* remove old divider look */
}
.footer__divider {
  display: none;
}

.download-app {
  background: var(--bg-primary);
  overflow: hidden;
}
.download-app__box {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border-radius: 38px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}
.download-app__orb {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 184, 255, 0.24), transparent 68%);
  filter: blur(10px);
}
.download-app .section-title {
  font-size: clamp(2.6rem, 5vw, 5rem);
  max-width: 680px;
}
.download-app .section-subtitle {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.9;
}
.download-app__visual {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-app__phone {
  width: 260px;
  height: 520px;
  padding: 14px;
  border-radius: 42px;
  background: linear-gradient(145deg, #101827, #030912);
  border: 1px solid rgba(169, 184, 255, 0.45);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(-8deg);
}
.download-app__screen {
  height: 100%;
  border-radius: 32px;
  padding: 32px 22px;
  background: linear-gradient(rgba(3, 9, 18, 0.35), rgba(3, 9, 18, 0.88)), url("../images/home-hero-banner.webp") center/cover no-repeat;
}
.download-app__screen span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.download-app__screen h3 {
  color: var(--white);
  font-family: var(--ff-serif);
  margin: 18px 0 150px;
  font-size: 34px;
}
.download-app__route {
  display: flex;
  gap: 12px;
  padding: 14px;
  margin-top: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}
.download-app__route i {
  color: var(--gold);
  margin-top: 4px;
}
.download-app__route strong {
  color: var(--white);
  display: block;
  font-size: 14px;
}
.download-app__route small {
  color: var(--text-muted);
  font-size: 12px;
}
.download-app__actions {
  position: absolute;
  right: 0;
  display: grid;
  gap: 18px;
  width: 290px;
}
.download-app__btn {
  min-height: 74px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(169, 184, 255, 0.55);
  background: rgba(3, 9, 18, 0.72);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(18px);
  transition: var(--t);
}
.download-app__btn i {
  font-size: 26px;
  color: var(--gold);
}
.download-app__btn span {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.download-app__btn span small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.download-app__btn:hover {
  transform: translateX(-8px);
  border-color: var(--gold);
  background: rgba(169, 184, 255, 0.09);
  box-shadow: 0 18px 45px rgba(169, 184, 255, 0.16);
}

.about-story {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 20%, rgba(169, 184, 255, 0.08), transparent 32%), var(--white);
}
.about-story__visual {
  position: relative;
  min-height: 640px;
  padding: 28px 70px 70px 0;
}
.about-story__image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-deep);
}
.about-story__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1.1s ease;
}
.about-story__image:hover img {
  transform: scale(1.06);
}
.about-story__image--main {
  height: 580px;
}
.about-story__image--float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 360px;
  z-index: 2;
  border: 8px solid var(--white);
}
.about-story__seal {
  position: absolute;
  top: 70px;
  right: 25px;
  width: 170px;
  min-height: 170px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  z-index: 3;
  backdrop-filter: blur(16px);
}
.about-story__seal span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.about-story__seal strong {
  color: var(--white);
  font-family: var(--ff-serif);
  font-size: 24px;
  line-height: 1.1;
  max-width: 120px;
}
.about-story__content {
  max-width: 650px;
  margin-left: auto;
}
.about-story__timeline {
  position: relative;
  display: grid;
  gap: 22px;
  margin: 34px 0 38px;
}
.about-story__timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 25px;
  bottom: 25px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(169, 184, 255, 0.65), rgba(169, 184, 255, 0.08));
}
.about-story__step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(3, 9, 18, 0.035);
  border: 1px solid rgba(169, 184, 255, 0.18);
  transition: var(--t);
}
.about-story__step span {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(169, 184, 255, 0.18);
}
.about-story__step h3 {
  color: var(--black);
  font-family: var(--ff-serif);
  font-size: 23px;
  margin-bottom: 8px;
}
.about-story__step p {
  color: var(--text);
  margin: 0;
  font-size: 15px;
}
.about-story__step:hover {
  transform: translateX(8px);
  border-color: rgba(169, 184, 255, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.mission-vision {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}
.mission-vision .section-title {
  color: var(--white);
}
.mission-vision .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}
.mission-vision .row {
  transform: perspective(1200px);
}

.mission-card {
  position: relative;
  padding: 55px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transform-style: preserve-3d;
  transition: 0.45s;
  min-height: 420px;
}
.mission-card__glow {
  position: absolute;
  width: 260px;
  height: 260px;
  left: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 184, 255, 0.28), transparent 70%);
  transition: 0.4s;
}
.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
}
.mission-card:hover .mission-card__glow {
  transform: scale(1.4);
}
.mission-card__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  font-size: 30px;
  color: var(--black);
}
.mission-card__label {
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
}
.mission-card h3 {
  color: var(--white);
  font-size: 34px;
  margin-bottom: 18px;
  font-family: var(--ff-serif);
}
.mission-card p {
  color: var(--text-secondary);
  margin: 0;
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.12s linear, box-shadow 0.25s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.tilt-card > * {
  transform: translateZ(25px);
}

.about-cta {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: linear-gradient(rgba(3, 9, 18, 0.72), rgba(3, 9, 18, 0.72)), url("../images/video-bg.webp") center center/cover no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.about-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 650px;
  height: 650px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 184, 255, 0.16), transparent 70%);
  pointer-events: none;
}
.about-cta .container {
  position: relative;
  z-index: 2;
}
.about-cta__content {
  max-width: 860px;
  margin: auto;
}
.about-cta .section-title {
  max-width: 760px;
  margin-inline: auto;
}
.about-cta .section-subtitle {
  max-width: 700px;
  margin-inline: auto;
}
.about-cta__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.premium-services {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 10%, rgba(169, 184, 255, 0.16), transparent 34%), radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.08), transparent 30%), linear-gradient(135deg, #050505 0%, #111111 45%, #050505 100%);
}
.premium-services__bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 75%);
          mask-image: radial-gradient(circle at center, #000 0%, transparent 75%);
}
.premium-services__glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.premium-services__glow--one {
  top: 12%;
  left: -120px;
  background: rgba(169, 184, 255, 0.45);
}
.premium-services__glow--two {
  right: -140px;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.16);
}
.premium-services .container {
  position: relative;
  z-index: 2;
}
.premium-services__grid {
  margin-top: 55px;
}

.premium-service-card {
  position: relative;
  min-height: 470px;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  isolation: isolate;
  transform-style: preserve-3d;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(169, 184, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.premium-service-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 3;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%), radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(169, 184, 255, 0.28), transparent 26%);
  opacity: 0;
  transition: 0.45s ease;
}
.premium-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.1) 100%);
}
.premium-service-card:hover::before {
  opacity: 1;
}
.premium-service-card:hover .premium-service-card__media img {
  transform: scale(1.12);
}
.premium-service-card:hover .premium-service-card__content {
  transform: translateZ(58px) translateY(-8px);
}
.premium-service-card:hover .premium-service-card__badge {
  transform: translateZ(70px) translateY(-4px);
}
.premium-service-card--large {
  min-height: 540px;
}
.premium-service-card--compact {
  min-height: 430px;
}
.premium-service-card__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.premium-service-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.03);
  transition: 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.premium-service-card__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;
  padding: 9px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(169, 184, 255, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  transition: 0.45s ease;
}
.premium-service-card__content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 5;
  color: #fff;
  transform: translateZ(45px);
  transition: 0.45s ease;
}
.premium-service-card__content > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #a9b8ff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.premium-service-card__content h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.premium-service-card__content p {
  max-width: 620px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.process-journey {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 15%, rgba(169, 184, 255, 0.16), transparent 32%), radial-gradient(circle at 80% 75%, rgba(255, 255, 255, 0.08), transparent 28%), linear-gradient(135deg, #050505 0%, #111 48%, #050505 100%);
}
.process-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
          mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
}
.process-journey .container {
  position: relative;
  z-index: 2;
}
.process-journey__orb {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
}
.process-journey__orb--one {
  top: 12%;
  left: -140px;
  background: rgba(169, 184, 255, 0.42);
}
.process-journey__orb--two {
  right: -150px;
  bottom: 8%;
  background: rgba(255, 255, 255, 0.13);
}
.process-journey__track {
  position: relative;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  perspective: 1600px;
}

.process-step {
  position: relative;
  min-height: 340px;
  padding: 34px 28px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)), rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(169, 184, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.process-step::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  z-index: -1;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(169, 184, 255, 0.26), transparent 28%), linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%);
  opacity: 0;
  transition: 0.45s ease;
}
.process-step::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(169, 184, 255, 0.12);
  filter: blur(8px);
  z-index: -1;
}
.process-step:hover::before {
  opacity: 1;
}
.process-step:hover .process-step__number {
  transform: translateZ(70px) scale(1.08);
  color: rgba(169, 184, 255, 0.32);
}
.process-step:hover .process-step__content {
  transform: translateZ(58px) translateY(-8px);
}
.process-step:nth-child(even) {
  margin-top: 55px;
}
.process-step__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(68px, 7vw, 110px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  transition: 0.45s ease;
}
.process-step__line {
  position: absolute;
  top: 50%;
  right: -24px;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, rgba(169, 184, 255, 0.65), transparent);
  z-index: 3;
}
.process-step__line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #a9b8ff;
  box-shadow: 0 0 25px rgba(169, 184, 255, 0.75);
}
.process-step__content {
  position: relative;
  z-index: 4;
  margin-top: 105px;
  transform: translateZ(42px);
  transition: 0.45s ease;
}
.process-step__tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #a9b8ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(169, 184, 255, 0.1);
  border: 1px solid rgba(169, 184, 255, 0.18);
}
.process-step h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 1199px) {
  .process-journey__track {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step:nth-child(even) {
    margin-top: 0;
  }
  .process-step__line {
    display: none;
  }
}
@media (max-width: 575px) {
  .process-journey__track {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .process-step {
    min-height: 300px;
    padding: 28px 22px;
    border-radius: 24px;
  }
  .process-step__content {
    margin-top: 90px;
  }
  .process-step h3 {
    font-size: 24px;
  }
  .process-step p {
    font-size: 14px;
  }
}
.fleet-compare {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 18% 18%, rgba(169, 184, 255, 0.16), transparent 32%), radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.08), transparent 30%), linear-gradient(135deg, #050505 0%, #111 48%, #050505 100%);
}
.fleet-compare .container {
  position: relative;
  z-index: 2;
}
.fleet-compare::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
          mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
}
.fleet-compare__glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
}
.fleet-compare__glow--one {
  top: 12%;
  left: -150px;
  background: rgba(169, 184, 255, 0.42);
}
.fleet-compare__glow--two {
  right: -150px;
  bottom: 8%;
  background: rgba(255, 255, 255, 0.13);
}
.fleet-compare__table-wrap {
  margin-top: 60px;
  padding: 1px;
  border-radius: 34px;
  transform-style: preserve-3d;
  background: linear-gradient(135deg, rgba(169, 184, 255, 0.55), rgba(255, 255, 255, 0.08), rgba(169, 184, 255, 0.2));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.fleet-compare__table-scroll {
  overflow-x: auto;
  border-radius: 33px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)), rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(22px);
}
.fleet-compare__table-scroll::-webkit-scrollbar {
  height: 6px;
}
.fleet-compare__table-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(169, 184, 255, 0.65);
}
.fleet-compare__table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  color: #fff;
}
.fleet-compare__table th,
.fleet-compare__table td {
  padding: 24px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  vertical-align: middle;
}
.fleet-compare__table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(8, 8, 8, 0.9);
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}
.fleet-compare__table thead th:first-child {
  color: #a9b8ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
}
.fleet-compare__table thead th span {
  display: block;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.fleet-compare__table thead th small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 500;
}
.fleet-compare__table tbody tr {
  transition: 0.35s ease;
}
.fleet-compare__table tbody tr:hover {
  background: rgba(169, 184, 255, 0.08);
}
.fleet-compare__table tbody tr:hover td:first-child {
  color: #a9b8ff;
}
.fleet-compare__table tbody tr:last-child td {
  border-bottom: 0;
}
.fleet-compare__table tbody td {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.55;
}
.fleet-compare__table tbody td:first-child {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.fleet-compare__table tbody td strong {
  color: #a9b8ff;
  font-weight: 700;
}
.fleet-compare__table tbody td i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #a9b8ff;
  background: rgba(169, 184, 255, 0.12);
  border: 1px solid rgba(169, 184, 255, 0.28);
}
.fleet-compare__table tbody td i.fa-minus {
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-info {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 15%, rgba(169, 184, 255, 0.16), transparent 32%), radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.08), transparent 28%), linear-gradient(135deg, #050505 0%, #111 48%, #050505 100%);
}
.contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
          mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
}
.contact-info .container {
  position: relative;
  z-index: 2;
}
.contact-info__glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.36;
  pointer-events: none;
}
.contact-info__glow--one {
  top: 12%;
  left: -140px;
  background: rgba(169, 184, 255, 0.42);
}
.contact-info__glow--two {
  right: -150px;
  bottom: 8%;
  background: rgba(255, 255, 255, 0.13);
}
.contact-info__grid {
  margin-top: 30px;
}

.contact-info-card {
  position: relative;
  min-height: 330px;
  height: 100%;
  padding: 32px 26px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 30px;
  transform-style: preserve-3d;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)), rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(169, 184, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(169, 184, 255, 0.3), transparent 30%), linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 45%);
  opacity: 0;
  transition: 0.45s ease;
}
.contact-info-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(169, 184, 255, 0.12);
  filter: blur(8px);
  z-index: -1;
}
.contact-info-card:hover::before {
  opacity: 1;
}
.contact-info-card:hover .contact-info-card__icon {
  transform: translateZ(70px) translateY(-8px) rotate(-6deg);
  background: rgba(169, 184, 255, 0.18);
}
.contact-info-card:hover .contact-info-card__number {
  color: rgba(169, 184, 255, 0.3);
  transform: translateZ(65px) scale(1.08);
}
.contact-info-card:hover .contact-info-card__content,
.contact-info-card:hover .contact-info-card__link {
  transform: translateZ(55px);
}
.contact-info-card:hover .contact-info-card__link i {
  transform: translateX(6px);
}
.contact-info-card__number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 82px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  transition: 0.45s ease;
}
.contact-info-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 12px;
  color: #a9b8ff;
  font-size: 17px;
  transform: translateZ(45px);
  transition: 0.45s ease;
  background: rgba(169, 184, 255, 0.1);
  border: 1px solid rgba(169, 184, 255, 0.24);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.contact-info-card__content {
  position: relative;
  z-index: 3;
  transform: translateZ(42px);
  transition: 0.45s ease;
}
.contact-info-card__content > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #a9b8ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.contact-info-card__content h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.contact-info-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}
.contact-info-card__content p a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}
.contact-info-card__content p a:hover {
  color: #a9b8ff;
}
.contact-info-card__link {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 28px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  transform: translateZ(42px);
  transition: 0.45s ease;
}
.contact-info-card__link i {
  color: #a9b8ff;
  transition: 0.35s ease;
}
.contact-info-card__link:hover {
  color: #a9b8ff;
}

.contact-form-map {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(169, 184, 255, 0.16), transparent 32%), linear-gradient(135deg, #050505 0%, #111 50%, #050505 100%);
}
.contact-form-map .container {
  position: relative;
  z-index: 2;
}
.contact-form-map__glow {
  position: absolute;
  right: -160px;
  top: 20%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(169, 184, 255, 0.34);
  filter: blur(95px);
  pointer-events: none;
}
.contact-form-map__wrap {
  overflow: hidden;
  border-radius: 36px;
  transform-style: preserve-3d;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)), rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(169, 184, 255, 0.24);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.contact-form-map__form {
  height: 100%;
  padding: 36px;
  transform: translateZ(45px);
}
.contact-form-map__side {
  height: 100%;
  padding: 18px;
  background: rgba(0, 0, 0, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-form-map__map {
  height: 260px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(169, 184, 255, 0.18);
}
.contact-form-map__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.05);
}
.contact-form-map__info {
  margin-top: 18px;
  padding: 30px;
  border-radius: 26px;
  background: radial-gradient(circle at top right, rgba(169, 184, 255, 0.18), transparent 36%), rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.contact-form-map__info > span {
  color: #a9b8ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.contact-form-map__info h3 {
  margin: 12px 0;
  color: #fff;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.contact-form-map__info p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}
.contact-form-map__info ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.contact-form-map__info ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
}
.contact-form-map__info ul li i {
  color: #a9b8ff;
}
.contact-form-map__info ul li a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}
.contact-form-map__info ul li a:hover {
  color: #a9b8ff;
}

.premium-contact-form {
  margin-top: 36px;
}
.premium-contact-form .form-group label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.premium-contact-form .form-group .iti.iti--allow-dropdown {
  width: 100%;
}
.premium-contact-form .form-group input,
.premium-contact-form .form-group select,
.premium-contact-form .form-group textarea {
  width: 100%;
  border: 1px solid rgba(169, 184, 255, 0.2);
  outline: none;
  border-radius: 18px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transition: 0.35s ease;
}
.premium-contact-form .form-group input::-moz-placeholder, .premium-contact-form .form-group select::-moz-placeholder, .premium-contact-form .form-group textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.premium-contact-form .form-group input::placeholder,
.premium-contact-form .form-group select::placeholder,
.premium-contact-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.premium-contact-form .form-group input:focus,
.premium-contact-form .form-group select:focus,
.premium-contact-form .form-group textarea:focus {
  border-color: rgba(169, 184, 255, 0.65);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(169, 184, 255, 0.08);
}
.premium-contact-form .form-group input#phone {
  padding-left: 50px;
}
.premium-contact-form .form-group select {
  color: rgba(255, 255, 255, 0.78);
}
.premium-contact-form .form-group select option {
  color: #111;
}
.premium-contact-form .form-group textarea {
  resize: none;
}

.service-detail {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, #fff8e8 0%, transparent 35%), linear-gradient(#fff, #f7f7f7);
}
.service-detail::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -180px;
  top: -180px;
  background: rgba(169, 184, 255, 0.08);
  filter: blur(80px);
}
.service-detail__visual {
  perspective: 1600px;
  height: 100%;
}
.service-detail__image-frame {
  position: relative;
  height: 100%;
  border-radius: 32px;
  overflow: visible;
  transform: rotateY(-11deg) rotateX(4deg);
  transition: 0.6s;
}
.service-detail__image-frame:hover {
  transform: rotateY(0) rotateX(0) translateY(-10px);
}
.service-detail__image-frame::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -35px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  filter: blur(28px);
  z-index: -1;
}
.service-detail__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
  border: 10px solid #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 70px 120px rgba(0, 0, 0, 0.1);
  transition: 1s;
}
.service-detail__image-frame:hover .service-detail__image {
  transform: scale(1.05);
}
.service-detail__image::after {
  content: "";
}
.service-detail__badge {
  position: absolute;
  right: -30px;
  top: 70px;
  width: 230px;
  padding: 18px;
  border-radius: 22px;
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.service-detail__badge i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gold-gradient);
  color: #fff;
}
.service-detail__badge span {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.service-detail__badge strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}
.service-detail__label {
  position: absolute;
  left: 35px;
  bottom: 35px;
  background: #111;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.service-detail__feature {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 24px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  transition: 0.35s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.service-detail__feature:hover {
  transform: translateX(12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(169, 184, 255, 0.5);
}
.service-detail__feature-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex: none;
}
@media (max-width: 991px) {
  .service-detail__image {
    height: 520px;
  }
  .service-detail__badge {
    right: 20px;
    top: auto;
    bottom: 30px;
  }
}
@media (max-width: 767px) {
  .service-detail__image {
    height: 420px;
  }
  .service-detail__badge {
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }
}

.single-key-features {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.9058823529), rgba(0, 0, 0, 0.862745098)), url(../images/video-bg.webp);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-key-features .section-title {
  color: var(--white-soft);
}
.single-key-features__intro {
  max-width: 500px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.single-key-card {
  position: relative;
  min-height: 310px;
  height: 100%;
  padding: 28px;
  overflow: hidden;
  border-radius: 26px;
  transform-style: preserve-3d;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transition: 0.4s ease;
}
.single-key-card:hover {
  border-color: rgba(169, 184, 255, 0.35);
}
.single-key-card:hover .single-key-card__icon {
  color: #080808;
  background: #a9b8ff;
  transform: translateZ(45px) rotate(-6deg);
}
.single-key-card__number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(255, 255, 255, 0.07);
  font-size: 74px;
  font-weight: 700;
  line-height: 1;
}
.single-key-card__icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 65px;
  border-radius: 20px;
  color: #a9b8ff;
  font-size: 22px;
  transform: translateZ(35px);
  background: rgba(169, 184, 255, 0.1);
  border: 1px solid rgba(169, 184, 255, 0.25);
  transition: 0.4s ease;
}
.single-key-card__content {
  transform: translateZ(30px);
}
.single-key-card__content span {
  color: #a9b8ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.single-key-card__content h3 {
  margin: 10px 0;
  color: #fff;
  font-size: 23px;
}
.single-key-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.service-sidebar {
  position: sticky;
  top: 120px;
}

.service-booking,
.service-help {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  padding: 34px;
}

.service-help {
  margin-top: 24px;
}

.service-help ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-help li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text);
}

.service-help i {
  color: var(--gold);
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.service-feature {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 16px;
  background: rgba(169, 184, 255, 0.06);
  border: 1px solid rgba(169, 184, 255, 0.18);
}

.service-feature i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--black);
}

@media (max-width: 767px) {
  .single-key-features__intro {
    margin-left: 0;
  }
  .single-key-card {
    min-height: 285px;
    padding: 24px;
  }
}
.eclass-gallery {
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(169, 184, 255, 0.12), transparent 30%), #080808;
}
.eclass-gallery__intro {
  max-width: 500px;
  margin: 0 0 5px auto;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}
.eclass-gallery__stage {
  position: relative;
  padding: 14px;
  border-radius: 34px;
  perspective: 1600px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(169, 184, 255, 0.2);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
}
.eclass-gallery__item {
  position: relative;
  height: 650px;
  margin: 0;
  overflow: hidden;
  border-radius: 25px;
  transform-style: preserve-3d;
}
.eclass-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 55%);
}
.eclass-gallery__item img {
  width: 100%;
  height: 115%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.2s ease;
}
.swiper-slide-active .eclass-gallery__item img {
  transform: scale(1.04);
}
.eclass-gallery__caption {
  position: absolute;
  left: 42px;
  bottom: 38px;
  z-index: 2;
  transform: translateZ(50px);
}
.eclass-gallery__caption span {
  color: #a9b8ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eclass-gallery__caption h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(26px, 4vw, 46px);
}
.eclass-gallery__counter {
  position: absolute;
  top: 38px;
  left: 42px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.eclass-gallery__current {
  color: #a9b8ff;
  font-size: 28px;
  font-weight: 700;
}
.eclass-gallery__total {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}
.eclass-gallery__divider {
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.eclass-gallery__controls {
  position: absolute;
  right: 38px;
  bottom: 36px;
  z-index: 5;
  display: flex;
  gap: 10px;
}
.eclass-gallery__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: rgba(8, 8, 8, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  transition: 0.35s ease;
}
.eclass-gallery__arrow:hover {
  color: #080808;
  background: #a9b8ff;
  border-color: #a9b8ff;
  transform: translateY(-4px);
}
.eclass-gallery-thumbs {
  margin-top: 22px;
}
.eclass-gallery-thumbs .swiper-slide {
  opacity: 0.48;
  transition: 0.35s ease;
}
.eclass-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.eclass-gallery-thumbs .swiper-slide-thumb-active .eclass-gallery__thumb {
  border-color: #a9b8ff;
  transform: translateY(-5px);
}
.eclass-gallery__thumb {
  position: relative;
  width: 100%;
  height: 125px;
  padding: 5px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.35s ease;
}
.eclass-gallery__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 13px;
}
.eclass-gallery__thumb span {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 2px 10px #000;
}

@media (max-width: 991px) {
  .eclass-gallery__intro {
    margin-left: 0;
  }
  .eclass-gallery__item {
    height: 520px;
  }
}
@media (max-width: 575px) {
  .eclass-gallery__stage {
    padding: 8px;
    border-radius: 24px;
  }
  .eclass-gallery__item {
    height: 410px;
    border-radius: 18px;
  }
  .eclass-gallery__caption {
    left: 22px;
    right: 20px;
    bottom: 24px;
  }
  .eclass-gallery__counter {
    top: 24px;
    left: 24px;
  }
  .eclass-gallery__controls {
    right: 20px;
    bottom: 110px;
  }
  .eclass-gallery__arrow {
    width: 44px;
    height: 44px;
  }
  .eclass-gallery__thumb {
    height: 90px;
    border-radius: 14px;
  }
}
.vehicle-overview {
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at 10% 50%, rgba(169, 184, 255, 0.08), transparent 35%), var(--white-soft);
}
.vehicle-overview__visual {
  height: 100%;
}
.vehicle-overview__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 25px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  border: 1px solid rgba(169, 184, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.vehicle-overview__frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(169, 184, 255, 0.15);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}
.vehicle-overview__frame img {
  position: relative;
  width: 100%;
  max-height: 500px;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.18));
  transition: 0.4s ease;
}
.vehicle-overview__frame:hover img {
  transform: scale(1.03);
}
.vehicle-overview__line {
  position: absolute;
  border: 1px solid rgba(169, 184, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.vehicle-overview__line--one {
  width: 320px;
  height: 320px;
  top: -110px;
  right: -110px;
}
.vehicle-overview__line--two {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: -60px;
}
.vehicle-overview__badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(17, 17, 17, 0.95);
  border: 1px solid rgba(169, 184, 255, 0.25);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.vehicle-overview__badge i {
  color: var(--gold);
  font-size: 18px;
}
.vehicle-overview__badge span,
.vehicle-overview__badge small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.vehicle-overview__badge strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-family: var(--ff-serif);
  text-transform: none;
  letter-spacing: 0;
}
.vehicle-overview__content > p {
  margin-bottom: 30px;
  color: var(--text);
  line-height: 1.8;
}
.vehicle-overview__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}
.vehicle-overview__spec {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(169, 184, 255, 0.12);
  transition: 0.35s;
}
.vehicle-overview__spec:hover {
  transform: translateY(-5px);
  border-color: rgba(169, 184, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.vehicle-overview__spec i {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #111;
  background: var(--gold-gradient);
}
.vehicle-overview__spec span {
  display: block;
  color: var(--text);
  font-size: 12px;
}
.vehicle-overview__spec strong {
  display: block;
  margin-top: 2px;
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
}
.vehicle-overview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.vehicle-overview__actions span {
  margin: 0px auto;
}
.vehicle-overview__actions .commonbtn.outline-dark span {
  color: var(--gold) !important;
}

@media (max-width: 991px) {
  .vehicle-overview__frame {
    padding: 25px;
    min-height: auto;
  }
  .vehicle-overview__specs {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .vehicle-overview__specs {
    grid-template-columns: 1fr;
  }
  .vehicle-overview__badge {
    right: 15px;
    bottom: 15px;
    padding: 12px 14px;
  }
  .vehicle-overview__actions .commonbtn {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .vehicle-overview__frame {
    padding: 18px;
  }
  .vehicle-overview__line {
    display: none;
  }
}
.fleet-spec {
  position: relative;
  background: radial-gradient(circle at top right, rgba(169, 184, 255, 0.08), transparent 35%), linear-gradient(180deg, #151515 0%, #0c0c0c 100%);
  overflow: hidden;
}
.fleet-spec .section-label,
.fleet-spec .section-title,
.fleet-spec .section-subtitle {
  color: var(--white);
}
.fleet-spec .section-title em {
  color: var(--gold);
}
.fleet-spec__card {
  position: relative;
  height: 100%;
  padding: 34px 24px;
  text-align: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  transition: all 0.35s ease;
}
.fleet-spec__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}
.fleet-spec__card:hover {
  transform: translateY(-10px);
  border-color: rgba(169, 184, 255, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(169, 184, 255, 0.18);
}
.fleet-spec__card i {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  color: #111;
  background: var(--gold-gradient);
  box-shadow: 0 12px 30px rgba(169, 184, 255, 0.35);
}
.fleet-spec__card small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.fleet-spec__card h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  font-family: var(--ff-serif);
}

.vehicle-gallery {
  overflow: hidden;
  background: radial-gradient(circle at 85% 15%, rgba(169, 184, 255, 0.09), transparent 28%), var(--white-soft);
}
.vehicle-gallery .section-subtitle {
  max-width: 700px;
}
.vehicle-gallery__item {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  text-align: left;
  cursor: zoom-in;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  transform: perspective(1200px) rotateX(0);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.vehicle-gallery__item--large {
  height: 530px;
}
.vehicle-gallery__item--small {
  height: 530px;
}
.vehicle-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 9, 18, 0.88) 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: perspective(1200px) translateY(-7px) rotateX(1.5deg);
  border-color: rgba(169, 184, 255, 0.6);
}
.vehicle-gallery__item:hover img {
  transform: scale(1.07);
}
.vehicle-gallery__item:hover .vehicle-gallery__view {
  transform: scale(1);
  opacity: 1;
}
.vehicle-gallery__content {
  position: absolute;
  left: 30px;
  bottom: 28px;
  z-index: 2;
  color: var(--white);
}
.vehicle-gallery__content small {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.vehicle-gallery__content strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 25px;
  font-weight: 500;
}
.vehicle-gallery__view {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold-gradient);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.7);
  transition: 0.35s ease;
}

.gallery-lightbox {
  width: min(1200px, 100% - 32px);
  max-width: 100%;
  max-height: 90vh;
  padding: 14px;
  margin: auto;
  border: 0;
  border-radius: 22px;
  background: #101010;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(169, 184, 255, 0.15);
}
.gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
}
.gallery-lightbox img {
  width: 100%;
  max-height: 85vh;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 16px;
}
.gallery-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #111;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.gallery-lightbox__close:hover {
  transform: rotate(90deg) scale(1.08);
}
.gallery-lightbox__close i {
  font-size: 18px;
}

/* 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);
  }
}
@media (max-width: 768px) {
  .gallery-lightbox {
    width: calc(100% - 20px);
    padding: 10px;
    border-radius: 16px;
  }
  .gallery-lightbox img {
    max-height: 75vh;
  }
  .gallery-lightbox__close {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
}
@keyframes galleryFade {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .gallery-lightbox {
    width: calc(100% - 20px);
    padding: 10px;
    border-radius: 16px;
  }
  .gallery-lightbox img {
    max-height: 75vh;
  }
  .gallery-lightbox__close {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 991px) {
  .vehicle-gallery__item--large, .vehicle-gallery__item--small {
    height: 430px;
  }
}
@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: 21px;
  }
  .vehicle-gallery__view {
    top: 16px;
    right: 16px;
    opacity: 1;
    transform: none;
  }
  .gallery-lightbox__close {
    top: 12px;
    right: 12px;
  }
}
.vehicle-choose {
  overflow: hidden;
  background: var(--white-soft);
}

.vehicle-stat {
  height: 100%;
  padding: 34px 28px;
  text-align: center;
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: 0.35s;
  transform-style: preserve-3d;
}
.vehicle-stat i {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold-gradient);
  font-size: 26px;
  transform: translateZ(30px);
}
.vehicle-stat h3 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 34px;
  font-family: var(--ff-serif);
}
.vehicle-stat p {
  margin: 0;
  color: var(--text);
}
.vehicle-stat:hover {
  transform: translateY(-8px);
  border-color: rgba(169, 184, 255, 0.45);
}

@media (max-width: 991px) {
  .vehicle-stat.mt-lg-5 {
    margin-top: 0 !important;
  }
}
@media (max-width: 991px) {
  .header {
    top: 0px;
  }
  .hero-booking__grid {
    grid-template-columns: 1fr;
  }
  .hero-3d-scene__car {
    width: 115vw;
    bottom: 6%;
  }
  .hero-3d-scene__glow {
    width: 90vw;
    height: 32vw;
    bottom: 12%;
  }
  .hero {
    padding-bottom: 20px;
  }
  .hero .hero-img {
    width: 100%;
    height: 100%;
  }
  .hero__heading {
    width: 90%;
    font-size: 45px;
    margin: 0px;
  }
  .hero__contact {
    gap: 15px;
  }
  .trustbar__inner {
    min-height: 70px;
  }
  .trustbar__label {
    display: none;
  }
  .trustbar__item {
    padding-inline: 24px;
  }
  .trustbar__item span {
    font-size: 13px;
  }
  .how-it-works__card {
    padding: 35px 25px;
  }
  .how-it-works__number {
    font-size: 60px;
  }
  .how-it-works h3 {
    font-size: 22px;
  }
  .about-home__media {
    padding-right: 0;
    padding-bottom: 60px;
  }
  .about-home__img--floating {
    width: 220px;
  }
  .about-home__experience {
    right: 15px;
    top: 15px;
  }
  .about-home__features {
    grid-template-columns: 1fr;
  }
  .about-home__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-card {
    height: 60vh;
    top: 80px;
  }
  .service-card__content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .service-card__content h3 {
    font-size: 28px;
  }
  .occasion__img {
    height: 420px;
  }
  .occasion__stat--top {
    left: 15px;
    top: 15px;
  }
  .occasion__stat--bottom {
    right: 15px;
    bottom: 15px;
  }
  .occasion__actions {
    align-items: center;
    gap: 25px;
  }
  .testimonial-card {
    padding: 40px 25px;
  }
  .testimonial-card__text {
    font-size: 1.4rem;
  }
  .testimonial-card__footer {
    flex-direction: column;
    gap: 20px;
  }
  .about-cta {
    padding: 90px 0;
  }
  .about-cta__bg {
    background-attachment: scroll;
  }
  .about-story__visual {
    min-height: auto;
    padding: 0 0 80px;
  }
  .about-story__image--main {
    height: 460px;
  }
  .about-story__image--float {
    width: 240px;
    height: 290px;
  }
  .about-story__seal {
    width: 135px;
    min-height: 135px;
    right: 12px;
    top: 35px;
  }
  .about-story__seal strong {
    font-size: 19px;
  }
  .about-story__content {
    margin-left: 0;
  }
  .premium-service-card,
  .premium-service-card--large,
  .premium-service-card--compact {
    min-height: 440px;
  }
  .contact-form-map__form {
    padding: 40px 28px;
  }
  .contact-form-map__side {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .contact-info-card {
    min-height: 310px;
  }
}
@media (max-width: 768px) {
  .faq .accordion-button {
    font-size: 15px;
    padding: 20px;
  }
  .faq .accordion-body {
    padding: 0 20px 20px 56px;
  }
  .fleet-card__img {
    height: 220px;
  }
  .service-detail::before {
    right: 0px;
  }
  .service-features {
    grid-template-columns: repeat(1, 1fr);
  }
  .hero .hero__badge {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .section-pad {
    padding: 30px 0;
  }
  .section-label {
    font-size: 6px;
  }
  .fleet-fullscreen .fleet-content {
    left: 5%;
    width: 90%;
    transform: none;
    background: var(--black);
    top: auto;
    bottom: 20%;
  }
  .fleet-fullscreen {
    background: var(--bg-primary);
  }
  .fleet-fullscreen .fleet-bg {
    height: 50vh;
  }
  .fleet-fullscreen .fleet-slide::after {
    background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0.7), transparent);
  }
  .logo img {
    width: 190px;
  }
  .header .header__container,
  .header.scrolled .header__container {
    padding: 15px 10px;
  }
  .header .logo img,
  .header.scrolled .logo img {
    width: 190px;
  }
  .hero {
    min-height: calc(75vh - 45px);
  }
  .hero__heading {
    width: 100%;
    font-size: 40px;
  }
  .hero__content {
    padding-top: 20px;
    text-align: left;
  }
  .hero .commonbtn span {
    padding: 15px 15px 15px 8px;
    font-size: 12px;
    font-weight: 300;
  }
  .hero .commonbtn i {
    font-size: 14px;
  }
  .hero .hero__sub {
    /* width: 60%; */
    font-size: 13px;
  }
  .hero__overlay {
    width: 40%;
    filter: blur(10px);
  }
  .fleet-mobile-cta {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 120px;
    top: auto;
    transform: translateX(-50%);
    z-index: 20;
    height: 15px;
  }
  .fleet-mobile-cta .commonbtn {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  }
  .download-app__box {
    padding: 20px;
  }
  .about-story__image--main {
    height: 380px;
  }
  .about-story__image--float {
    width: 190px;
    height: 230px;
    border-width: 5px;
  }
  .about-story__step {
    grid-template-columns: 1fr;
  }
  .about-story__timeline::before {
    display: none;
  }
  .premium-services__grid {
    margin-top: 35px;
  }
  .premium-service-card,
  .premium-service-card--large,
  .premium-service-card--compact {
    min-height: 410px;
    border-radius: 24px;
  }
  .premium-service-card__content,
  .premium-service-card--large__content,
  .premium-service-card--compact__content {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }
  .premium-service-card__content h3,
  .premium-service-card--large__content h3,
  .premium-service-card--compact__content h3 {
    font-size: 25px;
  }
  .premium-service-card__content p,
  .premium-service-card--large__content p,
  .premium-service-card--compact__content p {
    font-size: 14px;
  }
  .premium-service-card__badge,
  .premium-service-card--large__badge,
  .premium-service-card--compact__badge {
    top: 16px;
    right: 16px;
    font-size: 12px;
  }
  .mission-card {
    padding: 20px;
  }
  .contact-form-map__wrap {
    border-radius: 26px;
  }
  .contact-form-map__form {
    padding: 32px 20px;
  }
  .contact-form-map__map {
    height: 300px;
    border-radius: 20px;
  }
  .contact-form-map__info {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .contact-form-map__info h3 {
    font-size: 24px;
  }
  .contact-info__grid {
    margin-top: 38px;
  }
  .contact-info-card {
    min-height: 300px;
    padding: 28px 22px;
    border-radius: 24px;
  }
  .contact-info-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 38px;
    border-radius: 20px;
  }
  .contact-info-card__number {
    font-size: 70px;
  }
  .contact-info-card__content h3 {
    font-size: 23px;
  }
  .contact-info-card__content p {
    font-size: 14px;
  }
  .contact-info-card__link {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }
  .fleet-compare__table-wrap {
    margin-top: 40px;
    border-radius: 24px;
  }
  .fleet-compare__table-scroll {
    border-radius: 23px;
  }
  .fleet-compare__table th,
  .fleet-compare__table td {
    padding: 20px;
  }
}/*# sourceMappingURL=style.css.map */

.cookie-popup {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 22px 26px;
  background: #090f1c;
  border: 1px solid rgba(78, 117, 255, 0.35);
  border-radius: 12px;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition:
    opacity .35s ease,
    visibility .35s ease,
    transform .35s ease;
}
.cookie-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cookie-popup__content {
  flex: 1;
  min-width: 0;
}
.cookie-popup__top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-popup__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(70, 105, 255, 0.55);
  border-radius: 50%;
  background: rgba(48, 83, 210, 0.12);
  color: #5c82ff;
  font-size: 15px;
  flex-shrink: 0;
}
.cookie-popup__eyebrow {
  display: block;
  margin-bottom: 2px;
  color: #5d82ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.cookie-popup h2 {
  margin: 0;
  color: #ffffff;
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
.cookie-popup p {
  margin: 0;
  max-width: 760px;
  color: #b9c1d0;
  font-size: 13px;
  line-height: 1.65;
}
.cookie-popup__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease;
}
.cookie-popup__link i {
  color: #5d82ff;
  font-size: 10px;
  transition: transform .25s ease;
}
.cookie-popup__link:hover {
  color: #6d8cff;
}
.cookie-popup__link:hover i {
  transform: translateX(3px);
}
.cookie-popup__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  min-width: 155px;
  height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}
.cookie-btn:hover {
  transform: translateY(-1px);
}
.cookie-btn--reject {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #d7dce5;
}
.cookie-btn--reject:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}
.cookie-btn--accept {
  background: #4169e8;
  border: 1px solid #4169e8;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(65, 105, 232, 0.22);
}
.cookie-btn--accept:hover {
  background: #5278ef;
  border-color: #5278ef;
}

@media (max-width: 991px) {
  .cookie-popup {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    border-radius: 11px;
  }
  .cookie-popup__top {
    margin-bottom: 8px;
  }
  .cookie-popup h2 {
    font-size: 18px;
  }
  .cookie-popup p {
    font-size: 12px;
    line-height: 1.6;
  }
  .cookie-popup__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .cookie-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 575px) {
  .cookie-popup {
    padding: 18px;
  }
  .cookie-popup__icon {
    width: 34px;
    height: 34px;
  }
  .cookie-popup h2 {
    font-size: 17px;
  }
  .cookie-popup p {
    font-size: 11.5px;
  }
  .cookie-popup__actions {
    grid-template-columns: 1fr;
  }
  .cookie-btn {
    height: 42px;
  }
}