@charset "UTF-8";
:root {
  /* ── Core Colors ───────────────── */
  --black: #000000;
  --charcoal: #1a1a1a;
  --mid: #555555;
  --silver: #888888;

  --white: #ffffff;
  --white-soft: #e5e5e5;

  --border: rgba(197, 182, 101, 0.15);
  --text: #666666;

  /* ── Platinum Luxury Accent ───── */
  --gold: #c5b665;
  --gold-light: #d7ca84;
  --gold-deep: #a99949;
  --gold-dark: #7d7136;

  --gold-gradient: linear-gradient(
    135deg,
    #d7ca84 0%,
    #c5b665 50%,
    #a99949 100%
  );

  /* ── Semantic Colors ──────────── */
  --accent: var(--gold);
  --accent-hover: var(--gold-deep);

  --heading-color: var(--black);

  --text-primary: #222222;
  --text-secondary: #555555;
  --text-muted: #777777;

  --bg-primary: #ffffff;
  --bg-secondary: #f8f8f8;
  --bg-dark: #000000;

  /* ── Inputs ───────────────────── */
  --input-bg: #ffffff;
  --input-border: rgba(0, 0, 0, 0.1);

  /* ── Header ───────────────────── */
  --header-top-bg: rgba(0, 0, 0, 0.03);

  /* ── Typography ───────────────── */
  --ff-ui: "dmsans", system-ui, sans-serif;
  --ff-serif: "playfair", Georgia, serif;

  /* ── Radius ───────────────────── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* ── Motion ───────────────────── */
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slide: 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Shadows ──────────────────── */
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.15);
}
html {
  scroll-behavior: auto !important;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

p {
  line-height: 1.75;
}

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

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

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

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

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

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

.section-label {
  display: inline-flex;
  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 #ecb860;
  padding: 5px 14px 5px 10px;
  margin-bottom: 18px;
  line-height: 1;
}
.section-label--light {
  color: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.18);
}

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

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

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

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

.commonbtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 25px;

  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;

  border-radius: 999px;

  text-decoration: none;
  overflow: hidden;

  transition: all var(--t);

  isolation: isolate;
}
.commonbtn i {
  margin-left: 8px;
  transition: var(--t);
}

.commonbtn::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 100%
  );

  transform: translateX(-150%);
  transition: transform 0.8s ease;

  z-index: -1;
}

.commonbtn:hover::before {
  transform: translateX(150%);
}

.commonbtn:hover {
  transform: translateY(-3px);
}

.commonbtn:active {
  transform: scale(0.98);
}
/* dark */
.commonbtn.dark {
  background: var(--black);
  color: var(--white);

  border: 1px solid var(--black);

  box-shadow: var(--shadow-card);
}

.commonbtn.dark:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
/* gold  */
.commonbtn.gold {
  background: var(--gold);
  color: var(--black);

  border: 1px solid var(--gold);

  font-weight: 700;
}

.commonbtn.gold:hover {
  background: transparent;
  color: var(--gold-dark);

  border-color: var(--gold-dark);
}
/* light */
.commonbtn.light {
  background: var(--white);
  color: var(--black);

  border: 1px solid var(--white);
}

.commonbtn.light:hover {
  background: var(--gold);
  border-color: var(--gold);
}
/* outline */
.commonbtn.outline-dark {
  background: transparent;

  color: var(--black);

  border: 1px solid rgba(0, 0, 0, 0.15);
}

.commonbtn.outline-dark:hover {
  background: var(--black);
  color: var(--white);
}
.commonbtn.sm {
  padding: 12px 24px;
  font-size: 13px;
}
.navbar-brand {
  padding: 0px;
}
.logo img {
  width: 80px;
}

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

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

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

.booking_engine_container .lf-flex.lf-rounded-full button {
  color: var(--white-soft) !important;
  font-weight: 500;
  border-radius: 999px;
  padding: 10px 18px;
  background: transparent;
}

.booking_engine_container .lf-flex.lf-rounded-full button.lf-bg-black {
  background: var(--gold-gradient) !important;
  color: var(--black) !important;
  box-shadow: 0 8px 24px rgba(197, 182, 101, 0.35);
}

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

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

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

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

.booking_engine_container #differentAddress {
  margin-bottom: 0 !important;
}

.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 {
  border-top: 1px solid rgba(197, 182, 101, 0.12);
  padding: 12px 0;
  margin-top: 10px;
}

.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button {
  color: var(--white-soft) !important;
  font-weight: 500;
}

.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button .lf-text-sm {
  border: 1px solid var(--gold) !important;
  color: var(--gold);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 16px;
  font-size: 11px;
  margin-right: 8px;
  background: rgba(197, 182, 101, 0.08);
}

.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button .lf-text-sm::before {
  margin-left: 3px;
}

.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner {
  box-shadow: none !important;
}

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

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

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

.booking_engine_container .lf-top-2\/4 {
  top: 38% !important;
  color: var(--gold);
}
.booking_engine_container .lf-text-\[--primary-color\] button{
color:var(--white-soft) !important;
}
.booking_engine_container h5.lf-text-\[--primary-color\]{
  color:var(--white-soft) !important;
}
button.lf-delay-150{
  color:var(--white-soft) !important
}
 .lf-z-\[9999999\] {
  z-index: 1 !important;
}
/* header  */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  transition: var(--t);
  background: var(--charcoal);
}

.site-header.scrolled {
  position: fixed;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  padding: 12px 0;
}

.site-header .navbar {
  padding: 0;
}

.site-header .navbar-nav {
  gap: 10px;
}

.site-header .nav-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 30px 14px;
  position: relative;
}

.site-header .nav-link::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 14px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--t);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--gold);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
  width: calc(100% - 28px);
}
.dropdown-parent {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
}

.sub-menu li a {
  display: block;
  padding: 10px 15px;
  color: var(--black);
  border-bottom: 1px solid #eee;
  transition: var(--t);
}

.sub-menu li a:hover {
  background: #fafafa;
  color: var(--gold-deep);
  padding-left: 28px;
}

.dropdown-parent:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-parent {
  position: static;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;

  transform: translateX(-50%) translateY(15px);

  width: 960px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;

  padding: 15px;

  background: #fff;

  border-top: 4px solid var(--gold);

  border-radius: 0 0 14px 14px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;

  z-index: 999;
}

.mega-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-card {
  position: relative;

  display: flex;
  gap: 15px;

  align-items: flex-start;

  padding: 10px;

  border-radius: 12px;

  transition: 0.3s ease;

  background: #fafafa;

  border: 1px solid #efefef;
}

.mega-card:hover {
  background: rgba(212, 175, 55, 0.06);

  border-color: rgba(212, 175, 55, 0.25);

  transform: translateY(-3px);
}

.mega-card a {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.mega-icon {
  width: 52px;
  height: 52px;

  min-width: 52px;

  border-radius: 12px;

  background: rgba(212, 175, 55, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-icon i {
  font-size: 20px;
  color: var(--gold);
}

.mega-card h6 {
  font-size: 16px;
  font-weight: 600;

  color: var(--black);

  margin-bottom: 4px;
}

.mega-card p {
  font-size: 13px;
  line-height: 1.5;

  color: #777;

  margin: 0;
}

@media (max-width: 991px) {
  .mega-menu {
    display: none;
  }
}
.navbar-toggler i {
  color: var(--white-soft);
}
.mobile-menu {
  width: 350px !important;
  background: #000;
}

.mobile-menu .offcanvas-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-menu .logo img {
  width: 85px;
}

.mobile-menu .btn-close {
  font-size: 22px;
  color: var(--white-soft);
}

.mobile-menu .offcanvas-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-nav {
  padding: 20px;
}

.mobile-nav > li {
  margin-bottom: 5px;
}

.mobile-nav a,
.mobile-dropdown button {
  width: max-content;
  border: none;
  background: none;
  color: #fff;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-dropdown button {
  padding: 0px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.mobile-nav a:hover,
.mobile-dropdown button:hover {
  color: var(--gold);
}

.mobile-dropdown ul {
  display: none;
  padding-left: 15px;
  margin-bottom: 10px;
}

.mobile-dropdown.active ul {
  display: block;
}

.mobile-dropdown ul a {
  font-size: 14px;
  color: #bdbdbd;
  padding: 8px 0;
}

.mobile-dropdown.active i {
  transform: rotate(180deg);
}

.mobile-dropdown i {
  transition: 0.3s;
}

.mobile-menu__buttons {
  padding: 0 20px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-contact {
  padding: 25px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-contact a,
.mobile-address {
  display: flex;
  gap: 12px;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.7;
}

.mobile-contact i {
  color: var(--gold);
  width: 18px;
  margin-top: 4px;
}

.mobile-social {
  margin-top: auto;
  padding: 20px;
  display: flex;
  gap: 20px;
}

.mobile-social a {
  color: #fff;
  font-size: 18px;
}

.mobile-social a:hover {
  color: var(--gold);
}

/* banner start  */
.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: end;

  background: url("../images/home-bg.webp") no-repeat;
  background-position: top;

  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.65) 45%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.hero-banner .container {
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;

  padding: 8px 16px;

  border: 1px solid rgba(197, 182, 101, 0.35);

  color: var(--gold);

  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: var(--ff-serif);

  font-size: 3.5rem;

  line-height: 1.05;

  color: var(--white);

  margin-bottom: 25px;
}
.hero-banner.common .hero-content {
  text-align: center;
}
.hero-banner.common .hero-content .hero-contact,
.hero-banner.common .hero-content .hero-btns {
  justify-content: center;
}

.hero-content h1 em {
  color: var(--gold);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  margin-bottom: 15px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  align-items: center;
  justify-content: center;
}

.hero-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-contact a i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 18px;
  transition: all 0.3s ease;
}

.hero-contact a:hover {
  color: #d4af37;
}

.hero-contact a:hover i {
  background: #d4af37;
  color: #fff;
  transform: translateY(-3px);
}
.hero-form {
  background: rgba(255, 255, 255, 0.96);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(15px);
  margin: 50px 0px;
}
.hero-form .iti.iti--allow-dropdown {
  width: 100%;
}
.hero-form h3 {
  font-size: 30px;
  margin-bottom: 12px;
  color: var(--black);
}

.hero-form .section-subtitle {
  max-width: 100%;
  margin-bottom: 0;
}

.hero-form .form-control {
  height: 54px;
  border-radius: var(--radius-md);
  border: 1px solid #ddd;
  box-shadow: none;
  font-size: 14px;
}

.hero-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: none;
}

.hero-form .commonbtn {
  justify-content: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 180px;
  gap: 15px;
  align-items: center;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.luxury-services {
  position: relative;
}

.luxury-service {
  position: sticky;
  top: 0;

  height: 100vh;
  overflow: hidden;

  display: flex;
  align-items: center;
}

.luxury-service__bg {
  position: absolute;
  inset: 0;
}

.luxury-service__bg img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.1);
}

.luxury-service__bg::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.6) 45%,
    rgba(0, 0, 0, 0.25) 100%
  );

  z-index: 1;
}

.luxury-service__content {
  position: relative;
  z-index: 5;

  width: 100%;
  max-width: 650px;

  margin-left: 8%;

  color: #fff;
}

.service-no {
  display: block;

  font-size: clamp(60px, 8vw, 110px);
  font-weight: 700;

  line-height: 1;

  color: rgba(255, 255, 255, 0.12);

  margin-bottom: 10px;
}

.luxury-service__content h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;

  margin-bottom: 20px;

  color: #fff;
}

.luxury-service__content p {
  max-width: 540px;

  font-size: 18px;
  line-height: 1.8;

  margin-bottom: 30px;

  color: rgba(255, 255, 255, 0.85);
}

.luxury-services__all {
  height: 100vh;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 80px 20px;

  background: #111;
  color: #fff;
}

.luxury-services__all h2 {
  max-width: 900px;

  font-size: clamp(38px, 5vw, 70px);

  margin: 20px auto 30px;
}
.luxury-services__all {
  position: relative;

  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 100px 20px;

  background: var(--black);

  overflow: hidden;
  z-index: 3;
}

.luxury-services__all::before {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top center,
    rgba(236, 184, 96, 0.15),
    transparent 60%
  );

  pointer-events: none;
}

.luxury-services__all .section-label {
  margin-bottom: 20px;
}

.luxury-services__all h2 {
  max-width: 900px;

  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;

  color: var(--white);

  margin-bottom: 35px;
}

.luxury-services__all .commonbtn {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .luxury-service__content {
    margin-left: 25px;
    margin-right: 25px;
  }

  .luxury-service__content p {
    font-size: 16px;
  }
}
/* about us start here  */
.about-home__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about-home__image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-home__experience {
  position: absolute;
  bottom: 25px;
  right: 25px;

  background: var(--black);
  color: var(--white);

  padding: 20px 25px;
  border-radius: var(--radius-md);

  text-align: center;

  border-left: 4px solid var(--gold);
}

.about-home__experience strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  color: var(--gold);
}

.about-home__experience span {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-home p {
  color: var(--text);
  margin-bottom: 20px;
}
.about-home .section-title {
  color: var(--text);
  max-width: 100%;
}
.about-home__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 18px;

  background: #f8f8f8;
  border-radius: var(--radius-md);
}

.about-feature i {
  color: var(--gold);
}

.about-feature span {
  font-size: 14px;
  font-weight: 500;
}
/* dark */
.about-home.dark {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.about-home.dark::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(180px);
  opacity: 0.05;
}

.about-home.dark .section-label {
  color: var(--gold);
  border-color: rgba(197, 182, 101, 0.3);
  background: rgba(197, 182, 101, 0.08);
}

.about-home.dark .section-title {
  color: var(--white);
}

.about-home.dark .section-title em {
  color: var(--gold);
}

.about-home.dark .section-subtitle,
.about-home.dark p {
  color: rgba(255, 255, 255, 0.7);
}

.about-home.dark .about-feature {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.about-home.dark .about-feature span {
  color: var(--white);
}

.about-home.dark .about-feature i {
  color: var(--gold);
}

.about-home.dark .about-home__experience {
  background: rgba(0, 0, 0, 0.9);
  border-left: 4px solid var(--gold);
}

.about-home.dark .about-home__experience strong {
  color: var(--gold);
}

.about-home.dark .about-home__experience span {
  color: rgba(255, 255, 255, 0.75);
}

.about-home.dark .about-home__image img {
  filter: brightness(0.9);
}
/* fleet section start here  */
.fleet-section {
  background: var(--charcoal);
}
.fleet-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: 0.3s;
}

.fleet-card:hover {
  transform: translateY(-6px);
}

.fleet-card__image {
  position: relative;
  overflow: hidden;
}

.fleet-card__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s;
}

.fleet-card:hover img {
  transform: scale(1.05);
}

.fleet-badge {
  position: absolute;
  left: 15px;
  bottom: 15px;

  background: var(--black);
  color: #fff;

  font-size: 12px;
  padding: 6px 14px;
  border-radius: 30px;
}

.fleet-card__body {
  padding: 20px;
}

.fleet-card__body h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.fleet-spec {
  display: flex;
  gap: 18px;
  margin-bottom: 15px;
}

.fleet-spec li {
  font-size: 13px;
  color: #666;
}

.fleet-spec i {
  color: var(--gold);
  margin-right: 4px;
}

.fleet-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
/* brand slider */
.brand-strip {
  background: #f8f8f8;
  overflow: hidden;
}

.brand-slider {
  position: relative;
  overflow: hidden;
}

.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brandScroll 30s linear infinite;
}

.brand-slider:hover .brand-track {
  animation-play-state: paused;
}

.brand-item {
  flex: 0 0 auto;
  width: 220px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  opacity: 0.75;
  transition: var(--t);
  filter: grayscale(100%);
}

.brand-item:hover img {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

@keyframes brandScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
/* service section start here  */
.services-section {
  background: #f8f8f8;
}

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 420px;
  color: var(--white);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.35));
  z-index: 1;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
}

.service-card__icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(197, 182, 101, 0.15);
  border: 1px solid rgba(197, 182, 101, 0.3);

  margin-bottom: 20px;
}

.service-card__icon i {
  color: var(--gold);
  font-size: 20px;
}

.service-card h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 15px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

.service-card span i {
  transition: 0.3s;
}

.service-card:hover span i {
  transform: translateX(6px);
}

/* testimonial start here */
.testimonial-home__feature {
  background: #0d0d0d;
  color: #fff;
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-home__feature h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.testimonial-home__feature p {
  color: rgba(255, 255, 255, 0.75);
}

.testimonial-home__gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-home__gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.testimonial-home__gallery img:first-child {
  grid-column: 1/3;
  height: 220px;
}

.testimonial-home__stats {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-home__stats strong {
  display: block;
  color: var(--gold);
  font-size: 1.4rem;
}

.testimonial-home__stats span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

/* slider */

.testimonial-slider-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-card {
  text-align: center;
  padding: 15px;
}

.testimonial-quote {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(241, 193, 96, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 25px;
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 650px;
  margin: 0 auto 30px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-user img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h5 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-user span {
  color: #777;
  font-size: 0.85rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonial-nav button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  transition: 0.3s;
}

.testimonial-nav button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
/* faq start here  */

.faq-home {
  background: #050505;
  position: relative;
  overflow: hidden;
}
.faq-home .section-label {
  color: var(--white-soft);
}

.faq-home::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-deep), transparent 70%);
  opacity: 0.08;
  top: -200px;
  right: -150px;
}

.faq-home .section-title,
.faq-home .section-subtitle {
  color: var(--white);
}

.faq-home .section-title em {
  color: var(--gold);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(241, 193, 96, 0.4);
  transform: translateY(-3px);
}

.faq-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--gold);
}

.faq-accordion .accordion-button::after {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--gold-deep);
  background-position: center;
  background-size: 14px;
  flex-shrink: 0;
}

.faq-accordion .accordion-body {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  padding: 0 16px 16px;
  font-size: 15px;
}

@media (max-width: 991px) {
  .faq-accordion .accordion-button {
    font-size: 16px;
    padding: 18px;
  }

  .faq-accordion .accordion-body {
    padding: 0 18px 18px;
  }
}

/* HOME CONtact section start here */
.contact-cta {
  background: #050505;
  position: relative;
  overflow: hidden;
  margin: 1px 0px;
}
.contact-cta .section-label {
  color: var(--white-soft);
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  opacity: 0.08;
}

.contact-cta__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 25px;
}

.contact-cta__features li {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-cta__features i {
  color: var(--gold);
}

.contact-form-box {
  background: #fff;
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.contact-form-box .iti.iti--allow-dropdown {
  width: 100%;
}
.contact-form-box__head {
  margin-bottom: 25px;
}

.contact-form-box__head h3 {
  font-size: 30px;
  margin-bottom: 8px;
}

.contact-form-box__head p {
  color: #777;
  margin: 0;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
  height: 58px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 0 18px;
  box-shadow: none;
}

.contact-form-box textarea.form-control {
  height: auto;
  padding: 15px 18px;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(241, 193, 96, 0.15);
}

@media (max-width: 991px) {
  .contact-form-box {
    padding: 25px;
  }

  .contact-form-box__head h3 {
    font-size: 24px;
  }
}

/* footer start here  */
.footer {
  background: #000;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
  padding: 40px 0 20px 0px;
}

.footer a {
  transition: var(--t);
}

.footer a:hover {
  color: var(--gold);
}

.footer__brand {
  margin-bottom: 25px;
}

.footer__brand img {
  width: 80px;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.65);
}

.footer__meta li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 10px;
}

.footer__title {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 25px;
  font-family: var(--ff-serif);
  font-weight: 500;
}

.footer__links li {
  margin-bottom: 14px;
}

.footer__links li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  display: inline-block;
}

.footer__links li a:hover {
  transform: translateX(6px);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.footer__contact i {
  color: var(--gold);
  font-size: 15px;
  margin-top: 5px;
}

.footer__contact span {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);

  color: var(--white);

  transition: var(--t);
}

.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 20px 0;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.footer::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(180px);
  opacity: 0.05;
  top: -150px;
  left: -150px;
}

.footer::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(180px);
  opacity: 0.05;
  bottom: -120px;
  right: -120px;
}
.whatsapp-container {
  background-color: #42db87;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  box-shadow: 2px 2px 3px #000;
  position: fixed;
  right: 15px;
  bottom: 20px;
  z-index: 7;
}
/* about us page start here */
.about-home--split .section-label {
  color: var(--white-soft);
}
.about-home--split {
  background: linear-gradient(
    90deg,
    #050505 0%,
    #050505 68%,
    #f7f7f7 68%,
    #f7f7f7 100%
  );
}
.about-home--split .about-home__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.about-home--split .about-home__image img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.about-home--split .about-home__badge {
  position: absolute;
  left: 25px;
  bottom: 25px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.about-home--split .about-home__badge strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  color: var(--gold);
}

.about-home--split .about-feature {
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  align-items: center;
}

.about-home--split .about-feature i {
  font-size: 28px;
  color: var(--gold);
  padding: 10px;
  background: var(--white-soft);
  border-radius: 8px;
  min-width: 55px;
  text-align: center;
}

.about-home--split .about-feature h6 {
  color: #fff;
  margin-bottom: 6px;
}

.about-home--split .about-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.about-home.dark {
  background: linear-gradient(90deg, #050505 0%, #1f1f1f 100%);
}

.about-home__content {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 50px;
}

.about-home__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.9;
  max-width: 650px;
}
.commitment-home {
  background: #1f1f1f;
}
.commitment-home .section-label {
  color: var(--white-soft);
}

.commitment-home__image,
.commitment-home__image img {
  height: 100%;
}

.commitment-home__image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.commitment-home__content {
  padding: 50px;
  height: 100%;
}

.commitment-item {
  display: flex;
  align-items: center;
  gap: 30px;

  padding: 25px 0;

  color: #fff;
  text-decoration: none;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  transition: 0.35s;
}

.commitment-item:hover {
  transform: translateX(10px);
}

.commitment-item .number {
  min-width: 48px;

  font-size: 42px;
  font-weight: 700;

  color: var(--gold);
  opacity: 0.9;
}

.commitment-item h5 {
  color: #fff;
  margin-bottom: 6px;
}

.commitment-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.commitment-item i {
  margin-left: auto;

  min-width: 42px;
  height: 42px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.08);

  transition: 0.35s;
}

.commitment-item:hover i {
  background: var(--gold);
  color: #000;
}
/* main fleet page  */
/* ===================================
   Fleet Layout
=================================== */
/* ===================================
   Smooth Scroll
=================================== */
html {
  scroll-behavior: smooth;
}
.fleet-sidebar {
  position: sticky;
  top: 120px;
  z-index: 10;

  background: #fff;
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

/* ===================================
   Sidebar Navigation
=================================== */

.fleet-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 20px;

  font-size: 15px;
  font-weight: 500;

  color: var(--black);
  text-decoration: none;

  border-bottom: 1px solid #ececec;

  transition: 0.35s ease;
}

.fleet-nav:last-child {
  border-bottom: 0;
}

.fleet-nav i {
  font-size: 13px;
  transition: 0.35s ease;
}

.fleet-nav:hover {
  background: #111;
  color: #fff;
}

.fleet-nav:hover i {
  transform: translateX(5px);
}

.fleet-nav.active {
  background: var(--black);
  color: #fff;
}

.fleet-nav.active i {
  transform: translateX(5px);
}

/* ===================================
   Fleet Content
=================================== */

.fleet-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ===================================
   Fleet Card
=================================== */

.fleet-detail-card {
  padding: 20px;

  background: #fff;
  border-radius: 22px;

  scroll-margin-top: 140px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  transition: 0.35s ease;
}

.fleet-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ===================================
   Left Side
=================================== */

.fleet-detail-card__left {
  text-align: center;
}

.fleet-detail-card__image {
  padding: 15px;
  border-radius: 18px;
  background: #f8f8f8;

  margin-bottom: 20px;
}

.fleet-detail-card__image img {
  width: 100%;
  display: block;
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
}

/* ===================================
   Price Box
=================================== */

.fleet-detail-card__price-box {
  padding: 16px 18px;
  border-radius: 14px;

  background: #111;

  margin-bottom: 20px;
}

.fleet-detail-card__price-item {
  display: flex;
  align-items: center;
  gap: 10px;

  color: #fff;

  font-size: 14px;
  margin-bottom: 10px;
}

.fleet-detail-card__price-item:last-child {
  margin-bottom: 0;
}

.fleet-detail-card__price-item i {
  color: var(--gold);
}

/* ===================================
   Right Content
=================================== */

.fleet-detail-card__content h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.fleet-detail-card__content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* ===================================
   Features Tags
=================================== */

.fleet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-bottom: 25px;
}

.fleet-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 16px;

  border-radius: 50px;

  background: #f4f4f4;

  font-size: 14px;
  font-weight: 500;

  transition: 0.3s;
}

.fleet-tags span:hover {
  background: #111;
  color: #fff;
}

.fleet-tags span i {
  font-size: 13px;
}

/* ===================================
   Know More Link
=================================== */

.fleet-detail-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--black);
  font-weight: 600;
  text-decoration: none;

  transition: 0.3s;
}

.fleet-detail-card__link:hover {
  color: var(--gold);
}

.fleet-detail-card__link i {
  transition: 0.3s;
}

.fleet-detail-card__link:hover i {
  transform: translateX(5px);
}

/* ===================================
   Electric Badge
=================================== */

.fleet-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 12px;

  border-radius: 30px;

  background: var(--gold);
  color: #fff;

  font-size: 12px;
  font-weight: 600;

  margin-bottom: 15px;
}

/* fleet single page start here  */
.fleet-gallery-modal .modal-content {
  background: #000;
  border: 0;
}

.fleet-gallery-modal .modal-body {
  padding: 0;
}

.fleet-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 30px 50px;

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;

  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
}

.fleet-gallery-header h3 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
}

.fleet-gallery-close {
  width: 60px;
  height: 60px;

  border: 0;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);
  color: #fff;

  font-size: 22px;
  transition: 0.3s;
}

.fleet-gallery-close:hover {
  background: var(--gold);
  color: #000;
}

.fleetGallerySwiper {
  height: 100vh;
}

.fleetGallerySwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleetGallerySwiper .swiper-slide img {
  width: 82%;
  height: 78vh;

  object-fit: cover;
  border-radius: 24px;
}

.gallery-prev,
.gallery-next {
  width: 60px !important;
  height: 60px !important;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);

  color: #fff !important;
}

.gallery-prev:after,
.gallery-next:after {
  font-size: 20px !important;
}

.fleetGallerySwiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.fleetGallerySwiper .swiper-pagination-bullet-active {
  opacity: 1;
}
.fleet-benefits__wrapper {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.fleet-benefits__col {
  padding: 40px;
  height: 100%;
}

.fleet-benefits__col--border {
  border-left: 1px solid #ececec;
}

.fleet-benefit-item {
  display: flex;
  gap: 20px;

  padding: 22px 0;

  border-bottom: 1px solid #f2f2f2;

  transition: 0.3s;
}

.fleet-benefit-item:last-child {
  border-bottom: 0;
}

.fleet-benefit-item:hover {
  transform: translateX(8px);
}

.fleet-benefit-item__icon {
  width: 65px;
  height: 65px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: var(--black);
  color: #fff;

  font-size: 22px;
}

.fleet-benefit-item h4 {
  margin-bottom: 10px;
  font-size: 28px;
}

.fleet-benefit-item p {
  margin: 0;
  color: #666;
}

.fleet-benefit-item__number {
  min-width: 70px;

  font-size: 48px;
  line-height: 1;

  font-weight: 700;

  color: #d9d9d9;
}
/* service main page  */
.service-showcase {
  padding: 30px 0;
  border-bottom: 1px solid #ececec;
  scroll-margin-top: 150px;
}

.service-showcase:last-child {
  border-bottom: 0;
}

.service-showcase__image {
  overflow: hidden;
  border-radius: 24px;
}

.service-showcase__image img {
  width: 100%;
  object-fit: cover;
}

.service-showcase__number {
  display: block;

  font-size: 60px;
  line-height: 1;

  font-weight: 700;

  color: #efefef;

  margin-bottom: 15px;
}

.service-showcase__content h3 {
  margin-bottom: 20px;
  font-size: 32px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin: 30px 0;
}

.service-features span {
  padding: 12px 18px;

  background: #f6f6f6;
  border-radius: 50px;

  font-size: 14px;
}

.service-features i {
  color: var(--gold);
  margin-right: 6px;
}
/* service single page start here */
.airport-meet__wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.15) 100%
    ),
    url("../images/airport-transfer.webp") center/cover;
}
.airport-meet__wrap .section-label,
.airport-meet__wrap .section-title {
  color: var(--white-soft);
}
.airport-meet__wrap .airport-meet__content {
  max-width: 650px;
  color: #fff;
}

.airport-meet__features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.airport-meet__features span {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 50px;
}
.airport-benefits-card {
  height: 100%;
  padding: 40px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}

.benefit-item i {
  color: var(--gold);
}

.airport-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.airport-cover-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.airport-chip {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 22px;

  border-radius: 50px;

  background: #fff;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.airport-chip:hover {
  transform: translateY(-4px);
}

.airport-chip i {
  color: var(--gold);
}
.booking-steps {
  background: #fff;
}

.steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 60px;
}

.step-card {
  position: relative;
  flex: 1;

  padding: 40px 30px;

  background: #fff;
  border-radius: 20px;

  text-align: center;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
  height: 100%;
}
.booking-steps.private-jet .step-card {
  flex: auto;
}
.step-card:hover {
  transform: translateY(-8px);
}

.step-number {
  position: absolute;
  top: 18px;
  right: 20px;

  font-size: 42px;
  font-weight: 800;

  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
}

.step-icon {
  width: 90px;
  height: 90px;

  margin: 0 auto 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #111, #333);

  color: var(--gold);
  font-size: 34px;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.step-card p {
  margin: 0;
  color: #666;
}

.step-line {
  width: 80px;
  height: 2px;

  background: linear-gradient(to right, var(--gold), rgba(212, 175, 55, 0.2));

  position: relative;
}

.step-line::after {
  content: "";
  position: absolute;

  right: 0;
  top: 50%;

  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: var(--gold);

  transform: translateY(-50%);
}
/* contact us section start here */
.contact-modern {
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.contact-box {
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}
.contact-box .section-label,
.contact-box .section-title {
  color: var(--white-soft);
}

.contact-info-panel {
  position: relative;
  height: 100%;
}

.contact-info-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info-panel::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.85));
}

.contact-info-overlay {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  z-index: 2;

  color: #fff;
}

.contact-info-overlay h2 {
  margin: 12px 0 15px;
  font-size: 38px;
}

.contact-info-overlay p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 25px;
}

.contact-info-list {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 16px;
}

.contact-info-list i {
  color: var(--gold);
}

.contact-social {
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-decoration: none;

  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);

  transition: 0.35s;
}

.contact-social a:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.contact-form-panel {
  height: 100%;
  padding: 30px;
  background: #0b0b0b;
}

.contact-form-panel .form-control {
  height: 55px;

  border: none;
  border-radius: 14px;

  background: #151515;
  color: #fff;

  padding: 0 20px;
}
.contact-form-panel .iti.iti--allow-dropdown {
  width: 100%;
}
.contact-form-panel textarea.form-control {
  height: auto;
  padding: 18px 20px;
}

.contact-form-panel .form-control:focus {
  box-shadow: none;
  border-color: var(--gold);
  background: #1a1a1a;
}

.contact-form-panel .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.g-recaptcha {
  transform-origin: left center;
}
.contact-map {
  overflow: hidden;
  border-radius: 24px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}
/* book now page start here */
/* =========================
   QUOTE FORM SECTION
========================= */

.quote-form-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.quote-form-wrap .iti.iti--allow-dropdown {
  width: 100%;
}
.quote-form {
  background: #fff;
  border-radius: 28px;
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.quote-form-head {
  text-align: center;
  margin-bottom: 45px;
}

.quote-form-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(201, 168, 106, 0.12);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.quote-form-head h2 {
  margin-bottom: 14px;
}

.quote-form-head p {
  max-width: 700px;
  margin: auto;
  color: #666;
}

/* =========================
   FORM FIELD
========================= */

.quote-field {
  position: relative;
}

.quote-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black);
}

.quote-form-premium .form-control,
.quote-form-premium .form-select {
  height: 58px;
  border-radius: 14px;
  border: 1px solid #e3e3e3;
  background: #fafafa;
  padding-inline: 18px;
  font-size: 15px;
  box-shadow: none;
  transition: 0.3s;
}

.quote-form-premium textarea.form-control {
  height: 160px;
  padding-top: 16px;
  resize: none;
}

.quote-form-premium .form-control:focus,
.quote-form-premium .form-select:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.12);
}

/* =========================
   RADIO STYLE
========================= */

.quote-contact-method {
  padding: 25px;
  border-radius: 18px;
  background: #fafafa;
  border: 1px solid #ececec;
}

.radio-label {
  position: relative;
  cursor: pointer;
}

.radio-label input {
  display: none;
}

.radio-label span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 50px;
  border: 1px solid #ddd;
  background: #fff;
  transition: 0.3s;
  font-weight: 500;
}

.radio-label span::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ccc;
  transition: 0.3s;
}

.radio-label input:checked + span {
  border-color: var(--gold);
  background: rgba(201, 168, 106, 0.08);
  color: var(--black);
}

.radio-label input:checked + span::before {
  border-color: var(--gold);
  background: var(--gold);
}
/* google address suggestion modification */
.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;
}

/* =========================
   FOOTER AREA
========================= */

.quote-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 15px;
}

.quote-form-footer__left {
  flex: 1;
}

.quote-form-footer__right {
  width: 280px;
}

.quote-form-footer .commonbtn {
  height: 60px;
}

/* =========================
   CAPTCHA
========================= */

.recaptcha-box {
  display: inline-block;
}

/* =========================
   PRIVACY TEXT
========================= */

.quote-form__privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  color: #666;
  font-size: 14px;
}

.quote-form__privacy i {
  color: var(--gold);
}

/* =========================
   ERROR
========================= */

.quote-form .error {
  display: block;
  color: #dc3545;
  margin-top: 6px;
  font-size: 13px;
}

/* =========================
   HOVER EFFECT
========================= */

.quote-field:hover .form-control,
.quote-field:hover .form-select {
  border-color: #d2d2d2;
}
/* legal pages start here */

.legal-section-wrapper {
  background: #f8fafc;
}

.legal-header {
  max-width: 850px;
  margin: auto;
  margin-top: 70px;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 50px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 14px;
  font-weight: 600;
}

.legal-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #111827;
}

.legal-description {
  color: #6b7280;
  max-width: 700px;
  margin: auto;
}

.legal-company-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-block {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.legal-block h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #111827;
  font-weight: 700;
}

.legal-block h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #1f2937;
  font-weight: 600;
}

.legal-block p,
.legal-block li {
  color: #4b5563;
  line-height: 1.9;
}

.legal-block ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.legal-block li + li {
  margin-top: 12px;
}
/* concierge service section start here  */
.concierge-overview {
  background: #fff;
  padding: 50px 0px;
}

.concierge-overview__content {
  max-width: 650px;
}

.concierge-overview__content p {
  margin-bottom: 18px;
  color: #666;
}

.concierge-overview__stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.stat-box {
  min-width: 140px;
  padding: 20px;

  border-radius: 12px;

  background: #fafafa;

  border: 1px solid #ececec;
}

.stat-box h3 {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 5px;
}

.stat-box span {
  font-size: 14px;
  color: #666;
}

.concierge-overview__features {
  display: grid;
  gap: 20px;
}

.feature-card {
  display: flex;
  gap: 20px;

  padding: 24px;

  background: #fff;

  border: 1px solid #ececec;

  border-radius: 16px;

  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-card i {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-size: 22px;
}

.feature-card h4 {
  margin-bottom: 8px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: #666;
}

.concierge-why {
  background: #fafafa;
}
.concierge-why p {
  margin: 0px auto 30px;
}
.concierge-why .why-card {
  height: 100%;

  padding: 35px 30px;

  background: #fff;

  border-radius: 16px;

  border: 1px solid #ececec;

  transition: 0.35s ease;

  position: relative;

  overflow: hidden;
}
.concierge-why .why-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: var(--gold);

  transform: scaleX(0);

  transition: 0.35s ease;
}
.concierge-why .why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.concierge-why .why-card:hover::before {
  transform: scaleX(1);
}
.concierge-why .why-card__icon {
  width: 70px;
  height: 70px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  background: rgba(212, 175, 55, 0.12);

  color: var(--gold);

  font-size: 28px;
}
.concierge-why .why-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.concierge-why .why-card p {
  margin: 0 auto;
  color: #666;
  line-height: 1.8;
}
.executive-support {
  background: #fff;
}

.executive-support__wrapper {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}

.executive-support__wrapper::before {
  content: "";
  position: absolute;

  left: 30px;
  top: 0;
  bottom: 0;

  width: 2px;

  background: linear-gradient(to bottom, var(--gold), rgba(212, 175, 55, 0.15));
}

.executive-item {
  display: flex;
  gap: 25px;

  position: relative;

  padding-left: 90px;
  margin-bottom: 40px;
}

.executive-item:last-child {
  margin-bottom: 0;
}

.executive-item__icon {
  position: absolute;

  left: 0;
  top: 0;

  width: 62px;
  height: 62px;

  border-radius: 50%;

  background: var(--black);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gold);
  font-size: 22px;

  border: 4px solid #fff;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.executive-item__content {
  flex: 1;

  padding: 25px;

  border-radius: 16px;

  background: #fff;

  border: 1px solid #ececec;

  transition: 0.3s;
}

.executive-item:hover .executive-item__content {
  transform: translateY(-5px);

  border-color: rgba(212, 175, 55, 0.3);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.executive-item h4 {
  margin-bottom: 10px;
}

.executive-item p {
  margin: 0;
  color: #666;
}

.visitor-journey {
  background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
}

.visitor-journey__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;

  margin-top: 60px;

  position: relative;
}

.visitor-stop {
  position: relative;

  padding: 35px 25px;

  background: #fff;

  border-radius: 20px;

  text-align: center;

  border: 1px solid #ececec;

  transition: 0.35s;
}

.visitor-stop:hover {
  transform: translateY(-8px);

  border-color: rgba(212, 175, 55, 0.35);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.visitor-stop__number {
  position: absolute;

  top: 15px;
  right: 18px;

  font-size: 55px;
  font-weight: 700;

  color: rgba(212, 175, 55, 0.12);

  line-height: 1;
}

.visitor-stop i {
  width: 75px;
  height: 75px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 20px;

  border-radius: 50%;

  background: rgba(212, 175, 55, 0.12);

  color: var(--gold);

  font-size: 28px;
}

.visitor-stop h4 {
  margin-bottom: 12px;
}

.visitor-stop p {
  margin: 0;
  color: #666;
}
.concierge-cta__box {
  position: relative;

  padding: 80px 70px;

  overflow: hidden;

  border-radius: 30px;

  background: linear-gradient(135deg, #0f0f0f 0%, #171717 55%, #242424 100%);
}

.concierge-cta__box::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  right: -120px;
  top: -120px;

  border-radius: 50%;

  background: radial-gradient(rgba(212, 175, 55, 0.18), transparent 70%);
}

.concierge-cta__box::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  left: -100px;
  bottom: -100px;

  border-radius: 50%;

  background: radial-gradient(rgba(212, 175, 55, 0.08), transparent 70%);
}

.concierge-cta .section-title {
  margin-bottom: 20px;
}

.concierge-cta .section-title em {
  color: var(--gold);
  font-style: normal;
}

.concierge-cta p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
}

.concierge-cta__features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;

  margin-top: 30px;
}

.concierge-cta__features span {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;

  border-radius: 50px;

  color: #fff;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.concierge-cta__features i {
  color: var(--gold);
}

.concierge-cta__action {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.concierge-cta__action .commonbtn {
  justify-content: center;
}
.jet-overview {
  background: #0f0f0f;
  color: #fff;
}

.jet-overview .section-title,
.jet-overview .section-subtitle {
  color: #fff;
}

.jet-card {
  position: relative;
  height: 100%;

  padding: 35px 25px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;

  transition: 0.35s;
  overflow: hidden;
}

.jet-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold);
}

.jet-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.35);
}

.jet-card__icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(212, 175, 55, 0.12);

  margin-bottom: 20px;
}

.jet-card__icon i {
  font-size: 28px;
  color: var(--gold);
}

.jet-card__number {
  position: absolute;
  top: 18px;
  right: 20px;

  font-size: 60px;
  font-weight: 700;

  color: rgba(255, 255, 255, 0.05);
}

.jet-card h4 {
  color: #fff;
  margin-bottom: 12px;
}

.jet-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.private-airports {
  background: #0d0d0d;
  color: #fff;
}

.private-airports .section-title,
.private-airports .section-subtitle {
  color: #fff;
}

.airport-network {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}

.airport-node {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.airport-item {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 22px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 18px;

  transition: 0.3s;
}

.airport-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
}

.airport-item i {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(212, 175, 55, 0.12);

  color: var(--gold);

  font-size: 22px;
}

.airport-item h4 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 18px;
}

.airport-item span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.airport-showcase {
  height: 100%;
}

.hub-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;

  border: 1px solid rgba(212, 175, 55, 0.15);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 175, 55, 0.08);
}

.hub-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.hub-image:hover img {
  transform: scale(1.05);
}

.hub-image::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );

  z-index: 1;
}

.hub-icon {
  position: absolute;
  top: 25px;
  left: 25px;

  width: 85px;
  height: 85px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #d4af37, #f7df7d);

  border: 5px solid #0d0d0d;

  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);

  z-index: 3;
}

.hub-icon i {
  font-size: 30px;
  color: #111;
}

.hub-content {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 35px;

  z-index: 3;
}

.hub-content span {
  display: inline-block;

  padding: 8px 16px;
  margin-bottom: 15px;

  border-radius: 50px;

  background: rgba(212, 175, 55, 0.15);

  color: var(--gold);

  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hub-content h3 {
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 991px) {
  .hub-content h3 {
    font-size: 24px;
  }

  .hub-icon {
    width: 70px;
    height: 70px;
  }
}

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

.airport-mini-card {
  position: relative;

  padding: 22px;

  border-radius: 18px;

  background: #fff;

  border: 1px solid #eee;
  overflow: hidden;
  transition: 0.35s;
}

.airport-mini-card:hover {
  transform: translateY(-5px);

  border-color: var(--gold);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.airport-mini-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 4px;
  height: 100%;

  background: var(--gold);
}

.airport-mini-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 15px;
}

.airport-mini-card__top i {
  color: var(--gold);
  font-size: 18px;
}

.airport-mini-card__top span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;

  color: var(--gold);
}

.airport-mini-card h3 {
  margin: 0;

  font-size: 20px;
}

.vip-travel-box {
  height: 100%;

  padding: 40px;

  background: #fff;

  border-radius: 24px;

  border: 1px solid #ececec;

  transition: 0.35s;
}

.vip-travel-box:hover {
  transform: translateY(-6px);

  border-color: rgba(212, 175, 55, 0.35);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.vip-travel-box__head {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 25px;
}

.vip-travel-box__icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: rgba(212, 175, 55, 0.12);

  color: var(--gold);

  font-size: 26px;
}

.vip-travel-box h3 {
  margin: 0;
}

.vip-travel-list {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.vip-travel-list li {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 0;

  border-bottom: 1px solid #f1f1f1;
}

.vip-travel-list li:last-child {
  border-bottom: 0;
}

.vip-travel-list i {
  color: var(--gold);
}
.meet-greet {
  position: relative;
  background: #0f0f0f;
}

.meet-greet::before {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at right center,
    rgba(212, 175, 55, 0.12),
    transparent 60%
  );
}

.meet-greet__content {
  position: sticky;
  top: 120px;
}
.meet-greet__content .section-label {
  color: #f1f1f1;
}
.meet-greet__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 25px;

  padding: 14px 20px;

  border-radius: 60px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(212, 175, 55, 0.2);

  color: var(--gold);
}

.arrival-journey {
  position: relative;
  padding-left: 90px;
}

.arrival-journey__line {
  position: absolute;

  left: 45px;
  top: 0;
  bottom: 0;

  width: 2px;

  background: linear-gradient(to bottom, var(--gold), rgba(212, 175, 55, 0.15));
}

.arrival-step {
  position: relative;

  margin-bottom: 25px;

  padding: 28px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.4s;
}

.arrival-step:hover {
  transform: translateX(10px);

  border-color: rgba(212, 175, 55, 0.4);

  background: rgba(255, 255, 255, 0.06);
}

.arrival-step__icon {
  position: absolute;

  left: -72px;
  top: 28px;

  width: 52px;
  height: 52px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--gold);

  color: #111;

  font-size: 18px;

  box-shadow: 0 0 0 8px #0f0f0f;
}

.arrival-step__content h4 {
  color: #fff;
  margin-bottom: 10px;
}

.arrival-step__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.arrival-step:last-child {
  margin-bottom: 0;
}
.concierge-services-showcase .service-row {
    padding: 40px 0;
    border-bottom: 1px solid #e8e8e8;
}

.concierge-services-showcase .service-row:last-child {
    border-bottom: 0;
}

.service-row__image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.service-row__image img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transition: .6s;
}

.service-row:hover .service-row__image img {
    transform: scale(1.05);
}

.service-row__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.05) 0%,
        rgba(0,0,0,.45) 100%
    );
    z-index: 1;
}

.service-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 3;

    background: var(--gold);
    color: var(--black);

    padding: 10px 20px;
    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-row__content {
    padding: 0 30px;
}

.service-number {
    display: block;

    font-size: 80px;
    line-height: 1;

    font-weight: 700;

    color: rgba(198,166,100,.18);

    margin-bottom: 15px;
}

.service-row__content h3 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.service-row__content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-row__content ul {
    padding: 0;
    margin: 0 0 35px;
    list-style: none;
}

.service-row__content ul li {
    position: relative;

    padding-left: 32px;
    margin-bottom: 16px;

    color: #444;
    font-size: 17px;
}

.service-row__content ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    left: 0;
    top: 0;

    color: var(--gold);
}

.service-row__actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-row__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    margin-bottom: 30px;
}

.service-stat {
    display: flex;
    align-items: center;
    gap: 10px;

    border: 1px solid #e4e4e4;

    padding: 14px 18px;
    border-radius: 12px;

    background: #fff;
}

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

.service-stat span {
    font-size: 15px;
    color: #555;
}

@media(max-width:991px){

    .concierge-services-showcase .service-row {
        padding: 20px 0;
    }

    .service-row__content {
        padding: 0;
    }

    .service-row__image img {
        height: 420px;
    }

    .service-number {
        font-size: 40px;
    }

    .service-row__content h3 {
        font-size: 30px;
    }
}

@media(max-width:767px){

    .service-row__image img {
        height: 320px;
    }

    .service-number {
        font-size: 25px;
    }

    .service-row__content h3 {
        font-size: 22px;
    }

    .service-row__content p {
        font-size: 16px;
    }

    .service-row__content ul li {
        font-size: 15px;
    }
}
@media (max-width: 991px) {
  .meet-greet__content {
    position: relative;
    top: auto;
  }
}
/* ===================================
   Responsive
=================================== */
@media (max-width: 991px) {
  .hero-banner.common .hero-content {
    text-align: left;
  }
  .hero-banner.common .hero-content .hero-contact,
  .hero-banner.common .hero-content .hero-btns {
    justify-content: start;
  }

  .about-home__image img {
    height: 450px;
  }

  .about-home__features {
    grid-template-columns: 1fr;
  }
  .testimonial-slider-wrap {
    padding: 25px;
  }

  .testimonial-home__feature {
    padding: 25px;
  }

  .testimonial-home__feature h3 {
    font-size: 1.6rem;
  }

  .testimonial-card p {
    font-size: 1rem;
  }
  .hero-content {
    padding: 120px 0px 40px 0px;
  }
  .hero-form {
    margin-bottom: 50px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }

  /* about us page start here */
  .about-home--split {
    background: #050505;
  }

  .about-home--split .about-home__image {
    margin-top: 20px;
  }

  .about-home--split .about-feature {
    border-right: 0;
  }
  .about-home__content {
    border: 0;
    padding-left: 0;
  }
  .commitment-home__content {
    padding: 40px 25px;
  }

  .commitment-item {
    gap: 15px;
  }

  .commitment-item .number {
    font-size: 28px;
    min-width: 35px;
  }
  /* fleet start here */
  .fleet-sidebar {
    position: relative;
    top: auto;
    margin-bottom: 30px;
  }

  .fleet-detail-card {
    padding: 20px;
  }
  .fleet-detail-card__content h3 {
    font-size: 24px;
    margin-top: 25px;
  }
  .fleet-tags {
    gap: 8px;
  }
  .fleet-tags span {
    font-size: 13px;
    padding: 8px 12px;
  }
  .fleet-gallery-header {
    padding: 20px;
  }

  .fleet-gallery-header h3 {
    font-size: 26px;
  }

  .fleet-gallery-close {
    width: 50px;
    height: 50px;
  }

  .fleetGallerySwiper .swiper-slide img {
    width: 92%;
    height: 65vh;
  }

  .gallery-prev,
  .gallery-next {
    display: none;
  }
  .fleet-benefits__col {
    padding: 35px 25px;
  }

  .fleet-benefits__col--border {
    border-left: 0;
    border-top: 1px solid #ececec;
  }

  .fleet-benefit-item__number {
    min-width: 50px;
    font-size: 34px;
  }

  .fleet-benefit-item h4 {
    font-size: 22px;
  }
  .airport-benefits-card {
    padding: 20px;
  }
  .steps-wrapper {
    flex-direction: column;
  }

  .step-line {
    width: 2px;
    height: 60px;
  }

  .step-line::after {
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(50%);
  }
  /* contact us start here */
  .contact-form-panel {
    padding: 35px 25px;
  }

  .contact-info-panel {
    min-height: 450px;
  }

  .contact-info-overlay {
    left: 25px;
    right: 25px;
    bottom: 25px;
  }

  .contact-info-overlay h2 {
    font-size: 30px;
  }
  .contact-map iframe {
    height: 350px;
  }
  .quote-form {
    padding: 35px;
  }

  .quote-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .quote-form-footer__right {
    width: 100%;
  }
  .concierge-cta__box {
    padding: 50px 30px;
  }
  .visitor-journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .airport-network {
    grid-template-columns: 1fr;
  }

  .airport-hub {
    margin: auto;
  }
  .airport-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .visitor-journey__grid {
    grid-template-columns: 1fr;
  }
  .executive-item {
    padding-left: 75px;
  }

  .executive-item__icon {
    width: 52px;
    height: 52px;
    font-size: 18px;
  }
  .quote-form {
    padding: 15px;
    border-radius: 20px;
  }

  .quote-form-head {
    margin-bottom: 30px;
  }

  .quote-contact-method {
    padding: 20px;
  }

  .radio-label {
    width: 100%;
  }

  .radio-label span {
    justify-content: center;
  }

  .recaptcha-box {
    transform: scale(0.9);
    transform-origin: left center;
  }
  .legal-block {
    padding: 24px;
  }
}
@media (max-width: 575px) {
  .fleet-nav {
    font-size: 14px;
    padding: 15px;
  }
  .fleet-detail-card {
    border-radius: 16px;
  }
  .fleet-detail-card__content h3 {
    font-size: 22px;
  }
  .fleet-detail-card__price-item {
    font-size: 13px;
  }
  .contact-box {
    padding: 0;
  }
  .contact-info-panel {
    min-height: 575px;
  }
  .contact-info-overlay {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .airport-mini-grid {
    grid-template-columns: 1fr;
  }
}
