:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --charcoal: #2d2d2d;
  --mid: #555555;
  --silver: #888888;
  --border: #e4e4e4;
  --white-soft: #f5f5f0;
  --white: #ffffff;
  --ff-serif: "Playfair", Georgia, serif;
  --ff-ui: "Mona-Sans", system-ui, sans-serif;
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slide: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.28);
}

@font-face {
  font-family: "Mona-Sans";
  src: url("../fonts/mona-sans/Mona-Sans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mona-Sans";
  src: url("../fonts/mona-sans/Mona-Sans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mona-Sans";
  src: url("../fonts/mona-sans/Mona-Sans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair";
  src: url("../fonts/playfair-display/PlayfairDisplay-Italic.woff2")
    format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Playfair";
  src: url("../fonts/playfair-display/PlayfairDisplay-BoldItalic.woff2")
    format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto !important;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}
html,
body {
  overscroll-behavior: none;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--ff-ui);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.15;
}

em {
  font-style: italic;
  color: var(--black);
}

*:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor__dot {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}
.cursor__ring {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition:
    width 0.3s ease,
    height 0.3s ease,
    top 0.3s ease,
    left 0.3s ease,
    border-color 0.3s ease;
}
.cursor.hovered .cursor__ring {
  width: 56px;
  height: 56px;
  top: -28px;
  left: -28px;
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}
.cursor.hovered .cursor__dot {
  transform: scale(0);
  opacity: 0;
}
.ng-trigger.ng-trigger-toastTrigger {
  display: none;
}
@media (hover: none) {
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}
.scroll-top {
  position: fixed;
  bottom: 5rem;
  right: 15px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  border: 2px solid #f4f4f4;
  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-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--black);
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 18px;
  line-height: 1;
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
}
.section-label--light {
  color: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.18);
}
.section-label--light::before {
  background: rgba(255, 255, 255, 0.68);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
}
.section-title em {
  color: var(--black);
  font-family: var(--ff-serif);
  font-style: italic;
}
.section-title--light {
  color: var(--white);
}
.section-title--light em {
  color: var(--white);
}

.section-title--center {
  text-align: center;
}

.section-subtitle {
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #666;
  margin-bottom: 32px;
  max-width: 560px;
}
.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);
}

.section-head {
  margin-bottom: 35px;
}
.section-head--center {
  text-align: center;
}
.section-head--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--black);
  margin-bottom: 20px;
}
.section-divider--center {
  margin-left: auto;
  margin-right: auto;
}
.section-divider--light {
  background: rgba(255, 255, 255, 0.22);
}

.commonbtn {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  overflow: hidden;
  white-space: nowrap;
  cursor: none;
  transition: background var(--t);
}
.commonbtn span {
  padding: 13px 22px;
  position: relative;
  z-index: 1;
}
.commonbtn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  border-radius: calc(var(--radius-md) - 2px);
  margin: 3px;
  font-size: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition:
    transform 0.2s ease,
    background var(--t);
}
.commonbtn:hover i {
  transform: translateX(-3px);
}
.commonbtn.dark {
  background: var(--black);
  color: var(--white);
}
.commonbtn.dark i {
  background: var(--white);
  color: var(--black);
}
.commonbtn.dark:hover {
  background: var(--charcoal);
  color: var(--white);
}
.commonbtn.outline {
  background: var(--white);
  color: var(--black);
  box-shadow: inset 0 0 0 1.5px var(--black);
}
.commonbtn.outline i {
  background: var(--black);
  color: var(--white);
}
.commonbtn.outline:hover {
  background: var(--white-soft);
}
.commonbtn.outline-light {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.42);
  display: flex;
  justify-content: space-between;
}
.commonbtn.outline-light i {
  background: var(--white);
  color: var(--black);
}
.commonbtn.outline-light:hover {
  box-shadow: inset 0 0 0 1.5px var(--white);
}
.commonbtn.sm span {
  padding: 10px 18px;
}
.commonbtn.sm i {
  width: 38px;
  min-height: 38px;
  font-size: 11px;
  margin: 2px;
}
.commonbtn.lg span {
  padding: 17px 28px;
  font-size: 14px;
}
.commonbtn.lg i {
  width: 52px;
  min-height: 52px;
  font-size: 13px;
  margin: 3px;
}
.commonbtn.full {
  width: 100%;
  justify-content: space-between;
}

.logo img {
  width: 100px;
}
.whatsapp-container {
  /* background-color: #42db87; */
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  box-shadow: 2px 2px 3px #000;
  position: fixed;
  right: 15px;
  bottom: 20px;
  z-index: 7;
}
.topbar {
  background: var(--black);
  padding: 10px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: margin-top var(--t-slide);
  border-radius: 30px;
  width: 99.5%;
  margin: 2px auto;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--white);
  line-height: 1;
}
.topbar__item:hover {
  color: rgba(255, 255, 255, 0.85);
}
.topbar__social {
  width: 30px;
  height: 30px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t);
}
.topbar__social:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--t);
  padding: 15px 0px;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
  border-radius: 0px 0px 30px 30px;
}
.header .navbar {
  padding: 0;
}
.header .navbar > .container-xl {
  min-height: 72px;
  display: flex;
  align-items: center;
}
.header .nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header .nav-phone__icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--black);
  flex-shrink: 0;
  transition:
    background var(--t),
    color var(--t);
}
.header .nav-phone:hover .header .nav-phone__icon {
  background: var(--black);
  color: var(--white);
}
.header .nav-phone__label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #aaa;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 3px;
}
.header .nav-phone__number {
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.header .nav-divider {
  width: 1px;
  height: 34px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.header .nav__links .nav__link {
  padding: 6px 12px !important;
  border-radius: var(--radius-sm);
  transition:
    color var(--t),
    background var(--t);
  color: var(--black);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
.header .nav__links .nav__link:hover,
.header .nav__links .nav__link.active {
  color: var(--white) !important;
  background: var(--black);
}
.header .nav__item--dropdown {
  position: relative;
}
.header .nav__item--dropdown:hover .nav__dropdown,
.header .nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header .nav__item--dropdown:hover .nav__chevron,
.header .nav__item--dropdown:focus-within .nav__chevron {
  transform: rotate(180deg);
}
.header .nav__dropdown-toggle {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.header .nav__chevron {
  font-size: 9px;
  transition: transform var(--t);
  opacity: 0.6;
}
.header .nav__dropdown {
  position: absolute;
  left: -80%;
  top: 100%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-deep);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 100;
}
.header .nav__dropdown::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  rotate: 45deg;
}
.header .nav__dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}
.header .nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--t);
}
.header .nav__dropdown-item:hover {
  background: var(--white-soft);
}

.header .nav__dropdown-item span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .nav__dropdown-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--white-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--black);
  flex-shrink: 0;
  transition:
    background var(--t),
    color var(--t);
}
.header .nav__dropdown-item:hover .nav__dropdown-icon {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.sidebar-trigger {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0, 0, 0, 0.13);
  border-radius: var(--radius-sm);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  cursor: none;
  flex-shrink: 0;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t);
}
.sidebar-trigger:hover,
.sidebar-trigger.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.toggler {
  background: none;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: none;
}
.toggler span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--black);
  transition: var(--t);
}

.sidebar {
  width: 340px !important;
  background: var(--black-2, #111111);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.sidebar__header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.sidebar__body {
  padding: 26px 24px;
  overflow-y: auto;
  flex: 1;
}
.sidebar__desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
}
.sidebar__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 22px 0;
}
.sidebar__contact-heading {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.sidebar__contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.sidebar__contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.sidebar__contact-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 3px;
  line-height: 1;
}
.sidebar__contact-val {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
  transition: color var(--t);
}
.sidebar__contact-val:hover {
  color: var(--white);
}
.sidebar__socials {
  display: flex;
  gap: 9px;
}
.sidebar__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t);
}
.sidebar__socials a:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: none;
  flex-shrink: 0;
  transition:
    background var(--t),
    color var(--t);
}
.close-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.offcanvas {
  background: var(--black);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.offcanvas .offcanvas-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
}
.offcanvas .offcanvas-header button {
  border-color: var(--border);
}
.offcanvas .offcanvas-body {
  padding: 16px 24px 32px;
}
.offcanvas .mobile-link {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: color var(--t) !important;
}
.offcanvas .mobile-link:hover,
.offcanvas .mobile-link.active {
  color: var(--white) !important;
}
.offcanvas .mobile-accordion__chevron {
  font-size: 10px;
  transition: transform var(--t);
  opacity: 0.5;
  width: 40%;
  text-align: end;
}
.offcanvas .mobile-accordion.open .mobile-accordion__chevron {
  transform: rotate(0deg);
}
.offcanvas .mobile-accordion__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}
.offcanvas .mobile-accordion__list > * {
  overflow: hidden;
}
.offcanvas .mobile-accordion__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition:
    color var(--t),
    background var(--t);
  border-radius: var(--radius-sm);
}
.offcanvas .mobile-accordion__list a i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  width: 16px;
}
.offcanvas .mobile-accordion__list a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}
.offcanvas .mobile-accordion__inner {
  overflow: hidden;
}
.offcanvas .mobile-accordion.open .mobile-accordion__list {
  grid-template-rows: 1fr;
}

.hero {
  position: relative;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  background-size: 110%;
  background-position: top;
  background-size: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.25) 100%
  );
}
.hero__nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  overflow: hidden;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}
.hero__nav-btn {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  color: var(--black);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition:
    background var(--t),
    color var(--t);
}
.hero__nav-btn:first-child {
  border-bottom: 1px solid var(--border);
}
.hero__nav-btn:hover {
  background: var(--black);
  color: var(--white);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}
.hero__left {
  color: var(--white);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
  padding: 12px 10px 12px 7px;
  border-radius: 10px;
}
.hero__badge-brand {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  line-height: 1;
}
.hero__badge-tag {
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}
.hero__heading {
  font-size: clamp(3.2rem, 7vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero__stats {
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat strong {
  font-family: var(--ff-serif);
  font-size: 1.9rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1;
}
.hero__stat span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}
.hero__right {
  display: flex;
  justify-content: flex-end;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-deep);
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1;
}
.booking-card__title {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  margin-bottom: 1.4rem;
}
.booking-card__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.error {
  color: red;
  margin-top: 5px;
}

.field {
  display: flex;
  flex-direction: column;
}
.field__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 5px;
  line-height: 1;
}
.field .field__select,
.field .field__input {
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  background: var(--white-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  width: 100%;
  outline: none;
  transition:
    border-color var(--t),
    background var(--t);
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}
.field .field__select:focus,
.field .field__input:focus {
  border-color: var(--black);
  background: var(--white);
}
.field .field__select::-moz-placeholder,
.field .field__input::-moz-placeholder {
  color: #bbb;
}
.field .field__select::placeholder,
.field .field__input::placeholder {
  color: #bbb;
}
.field__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: none;
}
.field__icon-wrap {
  position: relative;
}
.field__icon-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #bbb;
  pointer-events: none;
  z-index: 1;
}
.field__icon-wrap .field__input {
  padding-left: 34px;
}

.services {
  background: var(--white);
  padding: 50px 0px;
}
.services .svc-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  height: 100%;
  transition:
    box-shadow var(--t),
    transform var(--t);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 10px;
}

.services .svc-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.services .svc-card:hover .svc-card__icon {
  transform: rotate(20deg);
}
.services .svc-card:hover .svc-card__icon i {
  transform: rotateY(180deg);
}
.services .svc-card__img {
  position: relative;
  aspect-ratio: 16/9;
}
.services .svc-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.services .svc-card__img .svc-card__icon {
  position: absolute;
  bottom: -22px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--black);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  z-index: 1;
  transition: 0.3s;
}
.services .svc-card__img .svc-card__icon i {
  transition: 0.3s;
}
.services .svc-card:hover .services .svc-card__img img {
  transform: scale(1.05);
}
.services .svc-card__body {
  padding: 2rem 1.5rem 1.75rem;
  padding-top: 2.5rem;
}
.services .svc-card__title {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.services .svc-card__desc {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.services .svc-card__link {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding-bottom: 2px;
  transition:
    gap var(--t),
    border-color var(--t);
}
.services .svc-card__link i {
  font-size: 11px;
  transition: transform var(--t);
}
.services .svc-card__link:hover {
  border-color: var(--black);
}
.services .svc-card__link:hover i {
  transform: translateX(4px);
}

.ticker {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 2vw;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 35s linear infinite;
}
.ticker span:not(.wheel) {
  flex-shrink: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #0a0a0a, #a8a8a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ticker:hover .ticker__track {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.wheel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 5vw, 5rem);
  color: var(--black);
  flex-shrink: 0;
  animation: spin 6s linear infinite;
}
.wheel img {
  width: clamp(2rem, 4vw, 5rem);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.about {
  background: var(--white);
  padding: 50px 0px;
  overflow-x: hidden;
}
.about .about-thumb {
  width: 180px;
  flex-shrink: 0;
}
.about .about-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about .about-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about .about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #444;
  line-height: 1.5;
}
.about .about-checklist i {
  font-size: 11px;
  color: var(--black);
  margin-top: 3px;
  flex-shrink: 0;
}
.about .about-imgs {
  position: relative;
  height: 100%;
}
.about .about-imgs .about-imgs__main {
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  position: relative;
}
.about .about-imgs .about-imgs__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  transition: transform 0.8s ease;
}
.about .about-imgs__float {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 200px;
  border: 20px solid var(--white);
  border-radius: 30px 0px 0px 0px;
  background: var(--white);
}
.about .about-imgs__float img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}

.bite-card::after,
.bite-card::before {
  content: "";
  position: absolute;
  top: -49px;
  right: -41px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  background-image: radial-gradient(
    at top left,
    rgba(255, 255, 255, 0) 40%,
    #ffffff 42%
  );
}
.bite-card::before {
  background-color: transparent;
  top: unset;
  bottom: -41px;
  left: -49px;
  background-image: radial-gradient(
    at top left,
    rgba(255, 255, 255, 0) 40%,
    #ffffff 42%
  );
}

.how_it_work-cards {
  background: var(--white-soft);
  padding: 50px 0px;
}
.how_it_work-cards .fcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  position: relative;
  transition:
    box-shadow var(--t),
    transform var(--t);
  overflow: visible;
  position: relative;
}
.how_it_work-cards .fcard:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.how_it_work-cards .fcard--active {
  background: var(--black);
  border-color: var(--black);
}
.how_it_work-cards .fcard--active .fcard__title {
  color: var(--white);
}
.how_it_work-cards .fcard--active .fcard__desc {
  color: rgba(255, 255, 255, 0.62);
}
.how_it_work-cards .fcard--active .fcard__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.how_it_work-cards .fcard--active .fcard__notch::before {
  background: var(--black);
}
.how_it_work-cards .fcard--active .fcard__notch::after {
  background: var(--black);
}
.how_it_work-cards .fcard--active .fcard__num {
  border-color: rgba(255, 255, 255, 0.18);
}
.how_it_work-cards .fcard__top {
  margin-bottom: 10px;
}
.how_it_work-cards .fcard__title {
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.2;
}
.how_it_work-cards .fcard__desc {
  font-weight: 300;
  color: #666;
  line-height: 1.7;
  font-size: 14px;
}
.how_it_work-cards .fcard__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.how_it_work-cards .fcard__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--white-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--black);
  margin-bottom: 15px;
  flex-shrink: 0;
  transition: background var(--t);
}
.how_it_work-cards .fcard__notch {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: #fff;
  position: absolute;
  bottom: -1px;
  right: -1px;
  border-radius: 20px 0px 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px 0px 10px;
  border: 1px solid #dcdcdc;
}
.how_it_work-cards .fcard__notch .fcard__num {
  font-size: 20px;
  width: 100%;
  height: 100%;
  background: #ebebeb;
  display: grid;
  place-content: center;
  border-radius: 10px;
}
.how_it_work-cards .fcard--active .how_it_work-cards .fcard__notch::before {
  background: var(--black);
  box-shadow: -6px -6px 0 0 var(--white-soft);
  color: var(--white);
}

.fleet-section {
  background: var(--black);
  padding: 100px 0;
}
.fleet-section .section-label {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.15);
}
.fleet-section .section-label::before {
  background: rgba(255, 255, 255, 0.55);
}
.fleet-section .section-title {
  color: var(--white);
}
.fleet-section .section-title em {
  color: var(--white);
}
.fleet-section .fleet-slider {
  padding-bottom: 8px;
}

.fleet-card__img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 18px;
}
.fleet-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: transform 0.7s ease;
}
.fleet-card:hover .fleet-card__img img {
  transform: scale(1.04);
}
.fleet-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--black);
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  z-index: 1;
}
.fleet-card__share {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.fleet-card__socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
  background: var(--white);
  border-radius: 50px;
  padding: 5px;
}
.fleet-card__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background var(--t);
}
.fleet-card__socials a:hover {
  background: var(--charcoal);
}
.fleet-card__share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: none;
  transition: background var(--t);
  position: relative;
  z-index: 1;
}
.fleet-card__share-btn:hover {
  background: var(--charcoal);
}
.fleet-card:hover .fleet-card__socials,
.fleet-card__share:focus-within .fleet-card__socials {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fleet-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 4px;
}
.fleet-card__name {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  line-height: 1.2;
}
.fleet-card__role {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}
.fleet-card__book {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  flex-shrink: 0;
  transition:
    background var(--t),
    border-color var(--t);
}
.fleet-card__book:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.testimonials-section {
  background: var(--white-soft);
  padding: 100px 0;
}
.testimonials-section .tcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  min-height: 260px;
  transition:
    box-shadow var(--t),
    transform var(--t);
}
.testimonials-section .tcard:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.testimonials-section .tcard__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.testimonials-section .tcard__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.testimonials-section .tcard__name {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 2px;
}
.testimonials-section .tcard__role {
  font-size: 12px;
  color: var(--silver);
  font-weight: 400;
}
.testimonials-section .tcard__text {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
}
.testimonials-section .tcard__stars {
  display: flex;
  gap: 3px;
  color: #f5a623;
  font-size: 13px;
}

.faq-section {
  background: var(--white);
}
.faq-section .faq-illustration img {
  width: 100%;
  height: auto;
}
.faq-section .faq-list {
  display: flex;
  flex-direction: column;
}
.faq-section .faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-section .faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: none;
  text-align: left;
}
.faq-section .faq-item__q span {
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
  transition: color var(--t);
}
.faq-section .faq-item__q i {
  font-size: 12px;
  color: var(--black);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t),
    transform var(--t);
}
.faq-section .faq-item__q:hover span {
  color: var(--black);
}
.faq-section .faq-item__q:hover i {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.faq-section .faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-section .faq-item__a > div {
  overflow: hidden;
}
.faq-section .faq-item__a p {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  padding: 0 0 0;
  transition: padding var(--t);
}
.faq-section .faq-item.active .faq-item__a {
  grid-template-rows: 1fr;
}
.faq-section .faq-item.active .faq-item__a p {
  padding-bottom: 20px;
}
.faq-section .faq-item.active .faq-item__q i {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: rotate(0deg);
}
.faq-section .faq-item.active .faq-item__q span {
  font-weight: 600;
}

.app-section {
  background: var(--white);
  margin: 70px 0px;
}
.app-section .app-wrap {
  background: var(--black);
  border-radius: 28px;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.app-section .app-wrap__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.18;
}
.app-section .app-wrap__blob--1 {
  width: 400px;
  height: 400px;
  background: #fff;
  top: -100px;
  left: -80px;
}
.app-section .app-wrap__blob--2 {
  width: 300px;
  height: 300px;
  background: #fff;
  bottom: -80px;
  right: 10%;
}
.app-section .app-mockup {
  position: relative;
  display: inline-block;
}
.app-section .app-mockup img {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 32px 48px rgba(0, 0, 0, 0.5));
  animation: floatPhone 4s ease-in-out infinite;
}
.app-section .app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.app-section .app-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t);
}
.app-section .app-feature i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.app-section .app-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.app-section .app-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.app-section .app-btns .app-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
}
.app-section .app-btns .app-btn i {
  font-size: 24px;
  flex-shrink: 0;
  color: var(--black);
}
.app-section .app-btns .app-btn__sub {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #666;
  line-height: 1;
  margin-bottom: 3px;
}
.app-section .app-btns .app-btn__store {
  display: block;
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.app-section .app-btns .app-btn:hover {
  background: var(--white-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.app-section .app-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-section .app-rating__stars {
  display: flex;
  gap: 3px;
  color: #f5a623;
  font-size: 13px;
}
.app-section .app-rating__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.site-footer {
  background: var(--black);
  overflow: hidden;
}
.site-footer .footer-main {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}
.site-footer .footer-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
}
.site-footer .footer-card__logo {
  margin-bottom: 16px;
}
.site-footer .footer-card__logo img {
  width: 180px;
}
.site-footer .footer-card__desc {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
  margin: 24px 0px;
}
.site-footer .footer-card__hours {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .footer-card__hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
}
.site-footer .footer-card__hour-row span:last-child {
  font-weight: 600;
  color: var(--black);
}
.site-footer .footer-card__socials {
  display: flex;
  gap: 8px;
}
.site-footer .footer-card__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 12px;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t);
}
.site-footer .footer-card__socials a:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.site-footer .footer-col__heading {
  font-family: var(--ff-ui);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.site-footer .footer-col__desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}
.site-footer .footer-col__links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer .footer-col__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  transition:
    color var(--t),
    padding-left var(--t);
  display: inline-block;
}
.site-footer .footer-col__links a:hover {
  color: var(--white);
  padding-left: 4px;
}
.site-footer .footer-contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}
.site-footer .footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.site-footer .footer-contact-list__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  flex-shrink: 0;
}
.site-footer .footer-contact-list__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 3px;
  line-height: 1;
}
.site-footer .footer-contact-list__val {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  transition: color var(--t);
}
.site-footer .footer-contact-list__val:hover {
  color: var(--white);
}
.site-footer .footer-copy-bar {
  padding: 20px 0 28px;
  display: flex;
  justify-content: center;
}
.site-footer .footer-copy-pill {
  background: var(--white);
  border-radius: 999px;
  padding: 10px 28px;
}
.site-footer .footer-copy-pill span {
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  white-space: nowrap;
}

.story-section {
  background: var(--white);
  overflow-x: hidden;
}
.story-section .story-imgs {
  position: relative;
}
.story-section .story-imgs__main {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 5/4;
}
.story-section .story-imgs__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: transform 0.8s ease;
}
.story-section .story-imgs__main:hover img {
  transform: scale(1.03);
}
.story-section .story-imgs__stat {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.story-section .story-imgs__stat strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--white);
}
.story-section .story-imgs__stat span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  display: block;
}
.story-section .story-imgs__float {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-card);
}
.story-section .story-imgs__float img {
  width: 100%;
  height: 130px;
  -o-object-fit: cover;
  object-fit: cover;
}
.story-section .story-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.story-section .story-tl__item {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.story-section .story-tl__item:not(:last-child) .story-tl__marker::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 38px;
  width: 1px;
  height: calc(100% - 8px);
  /* background: var(--border); */
}
.story-section .story-tl__item:last-child {
  padding-bottom: 0;
}
.story-section .story-tl__marker {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  padding-top: 2px;
}
.story-section .story-tl__year {
  font-family: var(--ff-serif);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: var(--silver);
  width: 32px;
  text-align: right;
  line-height: 1.6;
  flex-shrink: 0;
}
.story-section .story-tl__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--border);
  flex-shrink: 0;
  margin-top: 4px;
  transition:
    background var(--t),
    box-shadow var(--t);
}
.story-section .story-tl__dot--active {
  background: var(--black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
}
.story-section .story-tl__item:hover .story-tl__dot {
  background: var(--black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.story-section .story-tl__content {
  padding-top: 0;
}
.story-section .story-tl__title {
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 5px;
  line-height: 1.3;
}
.story-section .story-tl__text {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.mv-section {
  background: var(--white-soft);
  padding: 50px 0px;
}
.mv-section .mv-card {
  border-radius: 24px;
  padding: 40px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.mv-section .mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.mv-section .mv-card--mission {
  background: var(--white);
  border: 1px solid var(--border);
}
.mv-section .mv-card--mission .mv-card__icon {
  background: var(--black);
  color: var(--white);
}
.mv-section .mv-card--mission .mv-card__tag {
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.15);
}
.mv-section .mv-card--mission .mv-card__list i {
  color: var(--black);
}
.mv-section .mv-card--mission::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--white-soft);
  pointer-events: none;
}
.mv-section .mv-card--vision {
  background: var(--black);
  border: 1px solid var(--black);
}
.mv-section .mv-card--vision .mv-card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.mv-section .mv-card--vision .mv-card__tag {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
}
.mv-section .mv-card--vision .mv-card__title {
  color: var(--white);
}
.mv-section .mv-card--vision .mv-card__text {
  color: rgba(255, 255, 255, 0.55);
}
.mv-section .mv-card--vision .mv-card__list li {
  color: rgba(255, 255, 255, 0.7);
}
.mv-section .mv-card--vision .mv-card__list i {
  color: var(--black);
}
.mv-section .mv-card--vision::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.mv-section .mv-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.mv-section .mv-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.mv-section .mv-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid;
  border-radius: 999px;
  padding: 4px 12px;
  line-height: 1;
}
.mv-section .mv-card__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 16px;
}
.mv-section .mv-card__text {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  margin-bottom: 24px;
}
.mv-section .mv-card__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mv-section .mv-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}
.mv-section .mv-card__list i {
  font-size: 9px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mv-section .mv-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.mv-section .mv-value {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
  transition: background var(--t);
}
.mv-section .mv-value:last-child {
  border-right: none;
}
.mv-section .mv-value:hover {
  background: var(--white-soft);
}
.mv-section .mv-value i {
  font-size: 22px;
  color: var(--black);
  margin-bottom: 14px;
  opacity: 0.75;
}
.mv-section .mv-value strong {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  margin-bottom: 4px;
  display: block;
}
.mv-section .mv-value span {
  font-size: 12px;
  color: var(--silver);
  font-weight: 300;
}

.stats {
  padding: 50px 6vw;
  position: relative;
  overflow: hidden;
}
.stats__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.stats__item {
  text-align: center;
  position: relative;
  padding: 20px 10px;
}
.stats__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 30px;
  height: 1px;
  background: var(--black);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform var(--t-slide);
}
.stats__item:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.stats__num {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-style: italic;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stats__label {
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta {
  padding: 60px 6vw;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(255, 255, 255, 0.06),
    transparent 60%
  );
  pointer-events: none;
}
.cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta__content {
  max-width: 675px;
}
.cta__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 18px;
}
.cta__title em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--white);
}
.cta__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
}
.cta__action {
  flex-shrink: 0;
}

.cta .commonbtn {
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.cta .commonbtn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}

.svc-pro {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--black);
  cursor: none;
}
.svc-pro__media {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.svc-pro__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-pro__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 10%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent
  );
  z-index: 1;
}
.svc-pro__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.12),
    transparent 40%
  );
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-pro:hover .svc-pro__overlay::after {
  transform: translateY(0);
}
.svc-pro__shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
  z-index: 2;
  transition: left 0s;
}
.svc-pro:hover .svc-pro__shine {
  left: 140%;
  transition: left 0.9s ease;
}
.svc-pro__icon {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition:
    background 0.4s ease,
    color 0.4s ease,
    transform 0.4s ease;
}
.svc-pro__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px;
  z-index: 3;
  text-align: left;
}
.svc-pro__content h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
  transition: 0.4s ease;
  line-height: 1.3;
  transform: translateY(85px);
}
.svc-pro__content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease 0.05s,
    transform 0.4s ease 0.05s;
}
.svc-pro__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease 0.1s,
    transform 0.4s ease 0.1s;
}
.svc-pro__link i {
  transition: transform var(--t);
}
.svc-pro:hover .svc-pro__media img {
  transform: scale(1.08);
}
.svc-pro:hover .svc-pro__icon {
  transform: scale(0.9) translateY(-4px);
  background: var(--black);
  color: var(--white);
}
.svc-pro:hover .svc-pro__content h4 {
  margin-bottom: 10px;
  transform: translateY(0px);
}
.svc-pro:hover .svc-pro__content p,
.svc-pro:hover .svc-pro__link {
  opacity: 1;
  transform: translateY(0);
}
.svc-pro:hover .svc-pro__link i {
  transform: translate(4px, -3px);
}

.svc-detail {
  background: var(--black);
  overflow: hidden;
  padding: 50px 0px;
}
.svc-detail .svc-detail__img-wrap {
  position: relative;
  padding: 24px;
}
.svc-detail .svc-detail__corner {
  position: absolute;
  width: 48px;
  height: 48px;
  z-index: 1;
}
.svc-detail .svc-detail__corner--tl {
  top: 0;
  left: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.4);
  border-left: 2px solid rgba(255, 255, 255, 0.4);
}
.svc-detail .svc-detail__corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  border-right: 2px solid rgba(255, 255, 255, 0.4);
}
.svc-detail .svc-detail__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.svc-detail .svc-detail__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.92);
}
.svc-detail .svc-detail__img:hover img {
  transform: scale(1.04);
}
.svc-detail .svc-detail__badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-detail .svc-detail__badge i {
  font-size: 20px;
  color: var(--white);
  opacity: 0.75;
}
.svc-detail .svc-detail__badge strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2px;
}
.svc-detail .svc-detail__badge span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}
.svc-detail .svc-detail__text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}
.svc-detail .svc-detail__features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 24px 0 28px;
}
.svc-detail .svc-detail__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.svc-detail .svc-detail__features i {
  font-size: 13px;
  color: var(--white);
  opacity: 0.6;
  flex-shrink: 0;
}
.svc-detail .svc-detail__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}
.svc-detail .svc-detail__cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.svc-detail .svc-detail__cta-heading {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  margin-bottom: 4px;
}
.svc-detail .svc-detail__cta-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
}

.features-section {
  background: var(--white-soft);
  padding: 50px 0px;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
}
.features-section .features-grid .feat-item:nth-child(-n + 3) {
  border-bottom: 1px solid var(--border);
}
.features-section .features-grid .feat-item:not(:nth-child(3n)) {
  border-right: 1px solid var(--border);
}
.features-section .feat-item {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.features-section .feat-item__inner {
  padding: 40px 32px;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.features-section .feat-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.features-section .feat-item:hover::before {
  transform: translateY(0);
}
.features-section .feat-item__icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.features-section .feat-item__icon-wrap i {
  font-size: 22px;
  color: var(--black);
  position: relative;
  z-index: 1;
  transition:
    color 0.4s ease,
    transform 0.4s ease;
}
.features-section .feat-item__icon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--white-soft);
  border: 1px solid var(--border);
  transition:
    background 0.4s ease,
    border-color 0.4s ease;
}
.features-section .feat-item__ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  transform: scale(1);
  opacity: 0;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}
.features-section .feat-item__num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--ff-serif);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: rgba(0, 0, 0, 0.18);
  transition: color 0.4s ease;
  z-index: 1;
}
.features-section .feat-item__title {
  font-family: var(--ff-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  transition: color 0.4s ease;
}
.features-section .feat-item__text {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  transition: color 0.4s ease;
}
.features-section .feat-item__line {
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-top: 24px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.features-section .feat-item:hover .feat-item__icon-wrap::before {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}
.features-section .feat-item:hover .feat-item__icon-wrap i {
  color: var(--white);
  transform: scale(1.1) rotate(-8deg);
}
.features-section .feat-item:hover .feat-item__ripple {
  transform: scale(1.8);
  opacity: 0;
  border-color: rgba(255, 255, 255, 0.3);
  animation: rippleOut 0.6s ease forwards;
}
.features-section .feat-item:hover .feat-item__num {
  color: rgba(255, 255, 255, 0.2);
}
.features-section .feat-item:hover .feat-item__title {
  color: var(--white);
}
.features-section .feat-item:hover .feat-item__text {
  color: rgba(255, 255, 255, 0.6);
}
.features-section .feat-item:hover .feat-item__line {
  transform: scaleX(1);
}
@keyframes rippleOut {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.svc-blocks {
  background: var(--white);
}
.svc-blocks .svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  position: relative;
}
.svc-blocks .svc-block + .svc-blocks .svc-block {
  border-top: 1px solid var(--border);
}
.svc-blocks .svc-block--reverse {
  flex-wrap: wrap-reverse;
}
.svc-blocks .svc-block--reverse .svc-block__media {
  order: 2;
}
.svc-blocks .svc-block--reverse .svc-block__body {
  order: 1;
}
.svc-blocks .svc-block__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.svc-blocks .svc-block__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s ease;
  filter: brightness(0.88) saturate(0.9);
}
.svc-blocks .svc-block__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    transparent
  );
  transition: opacity 0.5s ease;
}
.svc-blocks .svc-block__media:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.05);
}
.svc-blocks .svc-block__media:hover::after {
  opacity: 0.4;
}
.svc-blocks .svc-block__media-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.svc-blocks .svc-block__media-tag i {
  font-size: 10px;
  opacity: 0.8;
}
.svc-blocks .svc-block__body {
  position: relative;
}
.svc-blocks .svc-block__step {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.07);
  line-height: 1;
  margin-bottom: -1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: -webkit-text-stroke-color 0.4s ease;
}
.svc-blocks .svc-block__body:hover .svc-blocks .svc-block__step {
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.14);
}
.svc-blocks .svc-block__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
}
.svc-blocks .svc-block__title::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--black);
  margin-top: 10px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}
.svc-blocks .svc-block__body:hover .svc-blocks .svc-block__title::after {
  width: 48px;
}
.svc-blocks .svc-block__text {
  font-size: 15px;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}
.svc-blocks .svc-block__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-blocks .svc-block__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition:
    background var(--t),
    border-color var(--t),
    transform var(--t);
  cursor: none;
}
.svc-blocks .svc-block__list li:hover {
  background: var(--white-soft);
  border-color: var(--border);
  transform: translateX(5px);
}
.svc-blocks .svc-block__list i {
  font-size: 10px;
  color: var(--black);
  opacity: 0.4;
  flex-shrink: 0;
  transition:
    opacity var(--t),
    transform var(--t);
}
.svc-blocks .svc-block__list li:hover i {
  opacity: 1;
  transform: translateX(3px);
}

.fleet-grid-section {
  background: var(--white-soft);
  padding: 50px 0px;
}
.fleet-grid-section .fleet-tab {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 8px 20px;
  cursor: none;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t);
}
.fleet-grid-section .fleet-tab:hover {
  border-color: var(--black);
  color: var(--black);
}
.fleet-grid-section .fleet-tab.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.fleet-grid-section .fg-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform var(--t),
    box-shadow var(--t);
  height: 100%;
}
.fleet-grid-section .fg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.fleet-grid-section .fg-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.fleet-grid-section .fg-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: brightness(0.92);
  transition:
    transform 0.7s var(--t),
    filter 0.4s ease;
}
.fleet-grid-section .fg-card:hover .fleet-grid-section .fg-card__img img {
  transform: scale(1.06);
  filter: brightness(1);
}
.fleet-grid-section .fg-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  z-index: 1;
}
.fleet-grid-section .fg-card__badge--dark {
  background: var(--black);
  color: var(--white);
}
.fleet-grid-section .fg-card__actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1;
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.fleet-grid-section .fg-card:hover .fleet-grid-section .fg-card__actions {
  opacity: 1;
  transform: translateX(0);
}
.fleet-grid-section .fg-card__action {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition:
    background var(--t),
    color var(--t);
}
.fleet-grid-section .fg-card__action:hover {
  background: var(--black);
  color: var(--white);
}
.fleet-grid-section .fg-card__name {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.fleet-grid-section .fg-card__type {
  font-size: 12px;
  color: var(--silver);
}
.fleet-grid-section .fg-card__specs {
  border-bottom: 1px solid var(--border);
}
.fleet-grid-section .fg-card__specs span {
  font-size: 12px;
  color: var(--mid);
}
.fleet-grid-section .fg-card__specs i {
  color: var(--black);
  opacity: 0.4;
}
.fleet-grid-section .fg-col.hidden {
  display: none;
}
.fleet-grid-section .fg-col.visible {
  animation: cardIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.gallery-section {
  background: #000;
  overflow: hidden;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
  grid-auto-flow: dense;
}

/* ITEMS */
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}

/* IMAGE + VIDEO */
.gal-item img,
.gal-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s ease;
}

/* VIDEO */
.gal-item video {
  position: absolute;
  inset: 0;
  opacity: 0;
}

/* HOVER */
.gal-item:hover video {
  opacity: 1;
}

.gal-item:hover img,
.gal-item:hover video {
  transform: scale(1.05);
  filter: brightness(0.78);
}

/* LARGE ITEMS */
.gal-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gal-item-width-large {
  grid-column: span 2;
}

/* OVERLAY */
.gal-item__overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.05)
  );

  transition: opacity 0.3s ease;
}

.gal-item:hover .gal-item__overlay {
  opacity: 1;
}

/* BUTTON */
.gal-item__zoom {
  width: 54px;
  height: 54px;
  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: rgba(255, 255, 255, 0.14);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #fff;
  font-size: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: scale(0.85);

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.gal-item:hover .gal-item__zoom {
  transform: scale(1);
}

.gal-item__zoom:hover {
  background: #fff;
  color: #000;
}

/* MOBILE */
@media (max-width: 991px) {

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gal-item--large {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gal-item,
  .gal-item--large,
  .gal-item-width-large {
    grid-column: unset;
    grid-row: unset;
    height: 240px;
  }

  .gal-item--large {
    height: 320px;
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(4px);
}
.lightbox__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(90vw, 1100px);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img-wrap {
  width: 100%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img-wrap video,
.lightbox__img-wrap iframe {
  width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  background: #000;
}
.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  -o-object-fit: contain;
  object-fit: contain;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}
.lightbox.open .lightbox__img {
  transform: scale(1);
}
.lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background var(--t);
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.1);
}
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition:
    background var(--t),
    border-color var(--t);
}
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.lightbox__prev {
  left: 0;
}
.lightbox__next {
  right: 0;
}
.lightbox__counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
}
.gal-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Play icon little bigger */
.gal-item[data-type="video"] .gal-item__zoom,
.gal-item[data-type="youtube"] .gal-item__zoom {
  font-size: 16px;
}

.specs-section {
  background: var(--white-soft);
  overflow-x: hidden;
}
.specs-section .specs-table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.specs-section .specs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 22px;
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.specs-section .specs-row:last-child {
  border-bottom: none;
}
.specs-section .specs-row:hover {
  background: var(--white-soft);
}
.specs-section .specs-row__key {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  flex-shrink: 0;
}
.specs-section .specs-row__val {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  text-align: right;
}
.specs-section .spec-feat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t);
  cursor: none;
}
.specs-section .spec-feat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--black);
}
.specs-section .spec-feat:hover i {
  transform: scale(1.15) rotate(-8deg);
}
.specs-section .spec-feat i {
  font-size: 20px;
  color: var(--black);
  opacity: 0.7;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity var(--t);
  width: -moz-fit-content;
  width: fit-content;
}
.specs-section .spec-feat strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  display: block;
}
.specs-section .spec-feat span {
  font-size: 11px;
  color: var(--silver);
  font-weight: 400;
  line-height: 1.4;
}

.pricing-section {
  background: var(--white-soft);
  padding: 50px 0px;
}
.pricing-section .price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.pricing-section .price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.pricing-section .price-card--featured {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-8px);
}
.pricing-section .price-card--featured:hover {
  transform: translateY(-13px);
  box-shadow: var(--shadow-deep);
}
.pricing-section .price-card--featured .price-card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.pricing-section .price-card--featured .price-card__name {
  color: var(--white);
}
.pricing-section .price-card--featured .price-card__desc {
  color: rgba(255, 255, 255, 0.5);
}
.pricing-section .price-card--featured .price-card__from,
.pricing-section .price-card--featured .price-card__per {
  color: rgba(255, 255, 255, 0.45);
}
.pricing-section .price-card--featured .price-card__amount {
  color: var(--white);
}
.pricing-section .price-card--featured .price-card__list li {
  color: rgba(255, 255, 255, 0.7);
}
.pricing-section .price-card--featured .price-card__list i {
  color: var(--white);
  opacity: 0.6;
}
.pricing-section .price-card--featured .price-card__price {
  border-color: rgba(255, 255, 255, 0.1);
}
.pricing-section .price-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}
.pricing-section .price-card__head {
  margin-bottom: 24px;
}
.pricing-section .price-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--white-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 16px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-section .price-card:hover .pricing-section .price-card__icon {
  transform: scale(1.1) rotate(-6deg);
}
.pricing-section .price-card__name {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.pricing-section .price-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.65;
  margin: 0;
}
.pricing-section .price-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 20px 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-section .price-card__from,
.pricing-section .price-card__per {
  font-size: 12px;
  color: var(--silver);
  font-weight: 400;
}
.pricing-section .price-card__amount {
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  line-height: 1;
  flex: 1;
  text-align: center;
}
.pricing-section .price-card__list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-section .price-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: #555;
}
.pricing-section .price-card__list i {
  font-size: 10px;
  color: var(--black);
  opacity: 0.5;
  flex-shrink: 0;
}
.pricing-section .pricing-note {
  font-size: 13px;
  color: var(--silver);
  font-weight: 300;
}
.pricing-section .pricing-note i {
  color: var(--black);
  opacity: 0.4;
}
.pricing-section .pricing-note a {
  color: var(--black);
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}

.contact-page {
  background: var(--white-soft);
}

.cinfo-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t);
  cursor: none;
}
.cinfo-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-card);
  border-color: var(--black);
}
.cinfo-card:hover .cinfo-card__icon {
  background: var(--black);
  color: var(--white);
}
.cinfo-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--white-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--black);
  flex-shrink: 0;
  transition:
    background var(--t),
    color var(--t);
}
.cinfo-card__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 5px;
  line-height: 1;
}
.cinfo-card__val {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  transition: color var(--t);
}
.cinfo-card__val:hover {
  color: var(--charcoal);
}

.cinfo-social {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: 13px;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t);
}
.cinfo-social:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.cform-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
}
.cform-wrap__title {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  margin-bottom: 6px;
}
.cform-wrap__sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  margin-bottom: 28px;
}

.cform__textarea {
  resize: vertical;
  min-height: 130px;
}

.map-section {
  width: 100%;
}
.map-section .map-wrap {
  position: relative;
  height: clamp(320px, 50vw, 520px);
  overflow: hidden;
}
.map-section .map-wrap .place-details-compact-container {
  border-radius: 10px;
}
.map-section .map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.5s ease;
}
.map-section .map-wrap iframe:hover {
  filter: grayscale(0) contrast(1);
}

.desktop_form {
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.65);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.desktop_form .lf-bg-white,
.mobile-form .lf-bg-white {
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.02);
}

.desktop_form .lf-grid-cols-3 > div > button,
.mobile-form .lf-grid-cols-3 > div > button {
  background: 0 0;
  color: #888 !important;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.desktop_form .lf-grid-cols-3 .\!lf-border-\[--primary-color\],
.mobile-form .lf-grid-cols-3 .\!lf-border-\[--primary-color\] {
  color: #fff !important;
  border-bottom: 2px solid #fff !important;
}

.desktop_form .lf-grid-cols-3 > div > button:hover,
.mobile-form .lf-grid-cols-3 > div > button:hover {
  color: #fff !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}

.desktop_form label,
.mobile-form label {
  color: #ddd !important;
  font-weight: 500;
  font-size: 13px;
}

.desktop_form input,
.mobile-form input {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 8px 26px;
  transition: 0.3s;
  font-size: 14px;
}

.desktop_form .fa-calendar-day,
.desktop_form .fa-clock,
.desktop_form .fa-location-dot,
.desktop_form button[type="button"]:hover,
.desktop_form i.-lf-translate-y-2\/4,
.mobile-form .fa-calendar-day,
.mobile-form .fa-clock,
.mobile-form .fa-location-dot,
.mobile-form button[type="button"]:hover,
.mobile-form i.-lf-translate-y-2\/4 {
  color: #fff;
  font-size: 15px;
}

.desktop_form input::-moz-placeholder {
  color: #b2b2b2 !important;
}

.desktop_form input:focus,
.mobile-form input:focus {
  outline: 0;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 1px #fff,
    0 0 15px rgba(255, 255, 255, 0.1);
}

.desktop_form input::placeholder,
h5.lf-text-\[--primary-color\] {
  color: #777 !important;
}

.desktop_form button[type="button"],
.mobile-form button[type="button"] {
  color: #aaa;
  font-size: 14px !important;
  transition: 0.5s ease-in-out;
}

.lf-max-w-\[180px\] .lf-py-1\.5 button[type="button"] {
  font-size: 14px !important;
}

.desktop_form .hover\:lf-bg-gray-200:hover {
  background-color: transparent;
}

.desktop_form button[type="submit"],
.mobile-form button[type="submit"] {
  background: #fff;
  color: #000;
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 40px;
  transition: all 0.3s ease-in-out;
}

.desktop_form button[type="submit"]:focus,
.desktop_form button[type="submit"]:hover,
.mobile-form button[type="submit"]:focus,
.mobile-form button[type="submit"]:hover {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}

.mobile-form {
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-form input::-moz-placeholder {
  color: #b2b2b2 !important;
}

.mobile-form input::placeholder {
  color: #777 !important;
}

/* Get in Touch Form */

.contact-map-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.contact-map-section .map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.contact-map-section .map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.65) 30%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.contact-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-box .info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.5px;
}

.contact-info-box .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.contact-info-box img {
  width: 18px;
  filter: invert(1);
}

.hero-form {
  width: 480px;
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(20px);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.hero-form h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 500;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-form .form-row {
  display: flex;
  gap: 10px;
}

.hero-form .form-group {
  flex: 1;
  position: relative;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hero-form label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #aaa;
  pointer-events: none;
  transition: 0.25s ease;
}

.hero-form input:focus + label,
.hero-form input:not(:placeholder-shown) + label,
.hero-form select:valid + label,
.hero-form textarea:focus + label,
.hero-form textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 11px;
  color: #fff;
}

.hero-form textarea {
  min-height: 80px;
  resize: none;
}

.hero-form select option {
  color: #000;
}

.hero-form .form-footer {
  display: flex;
  justify-content: center;
}

.hero-form button {
  width: 100%;
  padding: 10px 0;
  border-radius: 40px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.hero-form button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}

.hero-form button span {
  position: relative;
  z-index: 1;
}

.hero-form button:hover::before {
  transform: scaleX(1);
}

.hero-form button:hover {
  color: #000;
}
.hero-form .error {
  color: #ff4d4d;
  font-size: 12px;
  margin-top: 6px;
}

.hero-form input:-webkit-autofill,
.hero-form input:-webkit-autofill:hover,
.hero-form input:-webkit-autofill:focus,
.hero-form textarea:-webkit-autofill,
.hero-form select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.04) inset !important;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* // fleet full screensection  */
.fleet-fullscreen {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.fleet-fullscreen .fleet-track {
  display: flex;
  height: 100%;
  width: max-content;
  overflow-x: hidden;
}

.fleet-fullscreen .fleet-slide {
  position: relative;
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  overflow: hidden;
}

/* Background Image */
.fleet-fullscreen .fleet-bg {
  width: 100%;
  height: 100%;
  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%);
}
.legal-section {
  background: var(--white);
  padding: 50px 0;
  position: relative;
}

/* subtle luxury divider */
.legal-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--black);
  opacity: 0.08;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.9;
  position: relative;
}

.legal-content p {
  margin-bottom: 22px;
}

/* headings */
.legal-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin: 38px 0 14px;
  position: relative;
  padding-left: 14px;
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
}
.legal-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 16px;
  background: var(--black);
  border-radius: 2px;
}

.legal-content ul {
  padding-left: 18px;
  margin-bottom: 22px;
}
.legal-content ul.has_number {
  list-style: none;
}

.legal-content li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 10px;
}

/* custom bullet */
.legal-content li::marker {
  color: var(--black);
}

/* subtle hover readability */
.legal-content li:hover {
  color: var(--black);
}

.legal-content strong {
  color: var(--black);
  font-weight: 600;
}

/* contact box */
.legal-content p:last-child {
  margin-top: 40px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: var(--white-soft);
  border: 1px solid var(--border);
  font-size: 14px;
}
/* Hide Google branding visually (autocomplete dropdown handled later) */
.pac-container {
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-family: inherit;
}

.pac-item {
  padding: 5px 14px;
  cursor: pointer;
}

.pac-item:hover {
  background-color: #f5f5f5;
}
.pac-logo::after {
  display: none;
}
/* fleet categroy section start here */
/* Section spacing fine-tune */

/* Section */
.fleet-cat {
  background: var(--white);
}
.fleet-cat .col-sm-6.col-md-4.col-lg-3.col-xl-2{
  padding: 0px 7px;
}
/* Card */
.fleet-cat__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  padding: 15px 10px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  text-align: left;
  transition: var(--t);
  height: 100%;
}

/* Icon */
.fleet-cat__icon {
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--t);
}

/* Title */
.fleet-cat__card h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* Meta */
.fleet-cat__meta {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.fleet-cat__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--mid);
}

/* Hover */
.fleet-cat__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--black);
}

.fleet-cat__card:hover .fleet-cat__icon {
  background: var(--charcoal);
  transform: scale(1.05);
}
/* categroy page start here  */

.price-tabs .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  border: none;
  position: relative;
  padding: 8px 12px;
}

.price-tabs .nav-link.active {
  color: var(--black);
}

.price-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--black);
}

/* Card */
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.price-section-title {
  font-size: 14px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  margin: 17px 8px 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row strong {
  font-weight: 500;
}

.price-row.static {
  background: var(--white-soft);
  margin-bottom: 10px;
  border-radius: var(--radius-md);
}

/* Accordion */
.price-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}

.price-accordion .accordion-button {
  font-size: 14px;
  background: var(--white);
  box-shadow: none;
}

.price-accordion .accordion-button:not(.collapsed) {
  background: var(--white-soft);
  color: var(--black);
}

.price-accordion .accordion-body {
  padding: 0;
}

/* Note */
.price-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--mid);
}

.price-note a {
  text-decoration: underline;
}

/* Tabs */
/* ================================
   DARK BASE
================================ */
.passenger-section {
  background: var(--black);
  color: var(--white);
}


/* ================================
   TABS (premium underline glow)
================================ */
.passenger-tabs .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  border: none;
  position: relative;
  padding-bottom: 8px;
  transition: var(--t);
}

.passenger-tabs .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--white);
  transition: var(--t-slide);
}

.passenger-tabs .nav-link:hover {
  color: var(--white);
}

.passenger-tabs .nav-link.active {
  color: var(--white);
}

.passenger-tabs .nav-link.active::after {
  width: 100%;
}


/* ================================
   IMAGE (glass + overlay)
================================ */
.passenger-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-deep);
  height: 100%;
}

.passenger-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.05)
  );
}

.passenger-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: var(--t);
}

.passenger-img:hover img {
  transform: scale(1.06);
}


/* ================================
   CARD (glass dark luxury)
================================ */
.passenger-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  transition: var(--t);
}
.passenger-card > h3{
  margin: 20px;
}
.passenger-card > p{
  padding-left: 20px;
}

.passenger-card:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: var(--shadow-deep);
  transform: translateY(-4px);
}


/* ================================
   ROW (soft interaction)
================================ */
.passenger-row {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--t);
}

.passenger-row:last-child {
  border-bottom: none;
}

.passenger-row span {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--white);
}

.passenger-row p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* hover effect */
.passenger-row:hover {
  background: rgba(255,255,255,0.03);
  padding-left: 22px;
}

.passenger-row:hover span {
  transform: translateX(2px);
}

.passenger-row span {
  transition: var(--t);
}


/* ================================
   NOTE (minimal premium)
================================ */
.passenger-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 10px;
}

.passenger-note i {
  font-size: 14px;
  color: var(--white);
  opacity: 0.8;
}
/* Tabs */
.luggage-tabs .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  border: none;
  position: relative;
}

.luggage-tabs .nav-link.active {
  color: var(--black);
}

.luggage-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--black);
}

/* Image */
.luggage-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  height: 100%;
}

.luggage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t);
}

.luggage-img:hover img {
  transform: scale(1.04);
}

/* Card */
.luggage-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}

/* Row */
.luggage-row {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.luggage-row:last-child {
  border-bottom: none;
}

.luggage-row span {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}

.luggage-row p {
  font-size: 14px;
  color: var(--mid);
  margin: 0;
}

/* Note */
.luggage-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.luggage-note i {
  color: var(--black);
}
/* Section */
.brand-slider {
  background: var(--black);
}

/* Wrapper (important for fade + overflow control) */
.brand-slider__wrapper {
  position: relative;
  overflow: hidden;
}

/* Fade edges */
.brand-slider__wrapper::before,
.brand-slider__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-slider__wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}

.brand-slider__wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

/* Track */
.brand-slider__track {
  display: flex;
  width: max-content;
  animation: brandScroll 28s linear infinite;
}

/* Group */
.brand-slider__group {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 24px;
}

/* Logos */
.brand-slider__group img {
  height: 90px;
  width: auto;
  opacity: 0.65;
  filter: grayscale(100%) brightness(1.1);
  transition: var(--t);
}

/* Hover */
.brand-slider__group img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: translateY(-2px) scale(1.05);
}

/* Animation */
@keyframes brandScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.brand-slider:hover .brand-slider__track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 991px) {
  .brand-slider__group {
    gap: 40px;
  }


}

@media (max-width: 575px) {
  .brand-slider__group {
    gap: 28px;
  }

  .brand-slider__group img {
    height: 56px;
  }
}

.amenities-box {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

/* Item */
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fafafa;
  transition: all 0.25s ease;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--charcoal);
}

/* Icon */
.amenity-item i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* Hover effect */
.amenity-item:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
}

/* Note */
.amenities-note {
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.6;
}
@media (max-width: 991px) {
  .hero__right {
    justify-content: center;
  }
  .hero__nav {
    display: none;
  }
  .booking-card {
    max-width: 100%;
  }
  .app-mockup img {
    max-width: 200px;
  }
  .footer-card {
    margin-bottom: 0;
  }
  .story-imgs__float {
    width: 110px;
    top: -0.5rem;
    right: -0.5rem;
  }
  .story-imgs__stat {
    bottom: -0.5rem;
    left: -0.5rem;
  }
  .stats__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta__action {
    margin-top: 10px;
  }
  .svc-detail__features {
    grid-template-columns: 1fr;
  }
  .svc-detail__badge {
    bottom: 4px;
    right: 4px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .features-grid .feat-item:nth-child(-n + 3) {
    border-bottom: none;
  }
  .features-grid .feat-item:not(:nth-child(3n)) {
    border-right: none;
  }
  .features-grid .feat-item:nth-child(-n + 4) {
    border-bottom: 1px solid var(--border);
  }
  .features-grid .feat-item:not(:nth-child(2n)) {
    border-right: 1px solid var(--border);
  }
  .feat-item__inner {
    padding: 28px 24px;
  }
  .svc-block {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .svc-block--reverse .svc-block__media,
  .svc-block--reverse .svc-block__body {
    order: unset;
  }
  .contact-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-form {
    width: 100%;
  }
  .gal-item {
    height: auto;
  }
  .gal-item-width-large,
  .gal-item--large {
    grid-column: auto;
    grid-row: auto;
  }
  .about .about-thumb {
    display: none;
  }
  .section-subtitle {
    max-width: 100%;
  }
  .section-head {
    margin-bottom: 20px;
  }
  .sidebar-trigger {
    display: none;
  }
}
@media (max-width: 767px) {
  .gallery-section .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 160px 160px;
  }
  .gallery-section .gal-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-section .lightbox__wrap {
    padding: 0 44px;
  }
  .about,
  .services,
  .features-section {
    padding: 30px 0px;
  }
  .testimonials-section {
    padding: 40px 0px;
  }
  .hero {
    min-height: calc(80vh - 100px);
  }
}
@media (max-width: 575px) {
  .hero__heading {
    font-size: 36px;
    line-height: 40px;
  }
  .hero__badge-tag {
    font-size: 9px;
  }
  .booking-card {
    padding: 1.5rem;
  }
  .footer-copy-pill span {
    font-size: 11px;
    white-space: normal;
    text-align: center;
  }
  .footer-copy-pill {
    padding: 10px 20px;
    border-radius: 16px;
  }
  .mv-card {
    padding: 28px 24px;
  }
  .mv-value {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .mv-value:last-child {
    border-bottom: none;
  }
  .stats {
    padding: 30px 5vw;
  }
  .stats__wrap {
    grid-template-columns: 1fr;
  }
  .cta {
    padding: 40px 5vw;
  }
  .features-grid {
    grid-template-columns: 1fr !important;
  }
  .features-grid .feat-item {
    border-right: none !important;
  }
  .features-grid .feat-item:not(:last-child) {
    border-bottom: 1px solid var(--border) !important;
  }
  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-section .gal-item--large {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-section .gal-item {
    aspect-ratio: 16/9;
  }
  .fleet-fullscreen {
    height: 85vh;
  }
  .fleet-fullscreen .fleet-content {
    left: 5%;
    width: 90%;
    transform: none;
    background: var(--black);
    top: 52%;
  }
  .fleet-fullscreen .fleet-bg {
    height: 50vh;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 320px 150px;
  }
  .stats__wrap {
    gap: 0;
  }
}
