@charset "UTF-8";
:root {
  /* ── Core Colors ───────────────── */
  --black: #000000;
  --charcoal: #2d2d2d;
  --mid: #555555;
  --silver: #888888;
  --border: #e1e1e140;
  --text: #4a5565;
  --white: #ffffff;
  --white-soft: #d0d0d0;
  /* ── Luxury Accent (Gold System) ── */
  --gold: #f1c160;
  --gold-deep: #8c5b23;
  --gold-dark: #582c06;
  /* optional gradient for premium UI */
  --gold-gradient: linear-gradient(135deg, #f1c160, #8c5b23);
  /* ── Semantic Colors ───────────── */
  --text-primary: #ffffff;
  --text-secondary: #d1d1d1;
  --text-muted: #a0a0a0;
  --heading-color: #ffffff;
  --bg-primary: #000000;
  --bg-soft: #000000;
  /* Accent usage */
  --accent: var(--gold);
  --accent-hover: var(--gold-deep);
  /* ── Inputs ───────────────────── */
  --input-bg: #6b6b6bd9;
  --input-border: #e1e1e140;
  /* ── Header ───────────────────── */
  --header-top-bg: #0000000f;
  /* ── Typography ───────────────── */
  --ff-ui: "dmsans", system-ui, sans-serif;
  --ff-serif: "playfair", Georgia, serif;
  /* ── Radius ───────────────────── */
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 16px;
  /* ── Motion ───────────────────── */
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slide: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  /* ── Shadows ──────────────────── */
  --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.4);
  --shadow-deep: 0 18px 50px rgba(0, 0, 0, 0.6);
}

@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: auto !important;
}

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

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

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

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

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
}
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;
}

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

@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: 5.5rem;
  right: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  border: 4px solid var(--gold);
  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.25rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 10px;
  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;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background var(--t), color var(--t), box-shadow var(--t);
}
.commonbtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.commonbtn span,
.commonbtn i {
  position: relative;
  z-index: 2;
}
.commonbtn span {
  padding: 14px 24px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 15px;
  font-weight: 600;
}
.commonbtn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  min-height: 46px;
  border-radius: 50%;
  margin: 4px;
  font-size: 12px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background var(--t), color var(--t);
}
.commonbtn i::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.commonbtn:hover {
  transform: translateY(-3px);
}
.commonbtn:hover::before {
  transform: translateX(140%);
}
.commonbtn:hover span {
  transform: translateX(2px);
}
.commonbtn:hover i {
  transform: rotate(-10deg) scale(1.08);
}
.commonbtn:hover i::before {
  opacity: 1;
}
.commonbtn:active {
  transform: scale(0.98);
}

.commonbtn.dark {
  background: var(--black);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 30px rgba(0, 0, 0, 0.2);
}
.commonbtn.dark i {
  background: var(--white);
  color: var(--black);
}
.commonbtn.dark:hover {
  background: #111;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.commonbtn.light {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.commonbtn.light i {
  background: var(--black);
  color: var(--white);
}
.commonbtn.light:hover {
  background: #f7f7f7;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.commonbtn.outline-light {
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.commonbtn.outline-light i {
  background: var(--white);
  color: var(--black);
}
.commonbtn.outline-light:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.commonbtn.outline-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(236, 184, 96, 0.5);
}
.commonbtn.outline-dark span {
  color: var(--white);
}
.commonbtn.outline-dark:hover {
  background: var(--black);
  color: var(--white);
}
.commonbtn.outline-dark:hover span {
  color: var(--white);
}

.commonbtn.sm span {
  padding: 11px 18px;
}
.commonbtn.sm i {
  width: 40px;
  min-height: 40px;
  font-size: 11px;
}

.logo img {
  width: 150px;
}


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

.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--black);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--t);
}
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.header .navbar {
  padding: 0;
}
.header {
  /* LOGO */
}
.header .logo img {
  width: 150px;
}
.header {
  /* NAV LINKS */
}
.header .nav__links .nav__link {
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--white-soft);
  padding: 6px 4px !important;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
  transition: color var(--t);
}
.header .nav__links .nav__link:hover {
  color: var(--gold);
}
.header .nav__links .nav__link.active {
  color: var(--gold);
}
.header .nav__links .nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width var(--t);
}
.header .nav__links .nav__link:hover::after {
  width: 100%;
}
.header {
  /* CTA BUTTON FIX */
}
.header .header_btn {
  animation: none;
  background: #000;
  color: #fff;
}
.header .header_btn span {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
}
.header .header_btn {
  border-radius: 6px;
}
.header .header_btn:hover {
  background: #111;
}
.header .header_btn::before {
  display: none;
}
.header .header_btn i {
  display: none;
}
.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: -100px;
  top: 100%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  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--wide {
  display: flex;
  min-width: 550px;
}
.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);
  text-transform: capitalize;
}
.header .nav__dropdown-item:hover {
  background: var(--gold-gradient);
}
.header .nav__dropdown-item strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 2px;
}
.header .nav__dropdown-item span {
  display: block;
  font-size: 11px;
  color: var(--silver);
  font-weight: 400;
}
.header .nav__dropdown-item .nav__dropdown-icon {
  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);
}

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

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

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

.offcanvas {
  background: var(--black);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.offcanvas .logo {
  width: 150px;
}
.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 p {
  color: var(--white-soft);
}
.offcanvas p i {
  margin-right: 10px;
}
.offcanvas p a {
  color: var(--white-soft);
}
.offcanvas .mobile-accordion__chevron {
  font-size: 10px;
  transition: transform var(--t);
  opacity: 0.5;
  width: 40%;
  text-align: end;
}
/* .offcanvas .mobile-accordion.open .mobile-accordion__chevron {
  transform: rotate(180deg);
} */
.offcanvas .mobile-accordion__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}
.offcanvas .mobile-accordion__list > * {
  overflow: hidden;
}
.offcanvas .mobile-accordion__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t), background var(--t);
  border-radius: var(--radius-sm);
}
.offcanvas .mobile-accordion__list a i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  width: 16px;
}
.offcanvas .mobile-accordion__list a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}
.offcanvas .mobile-accordion__inner {
  overflow: hidden;
}
.offcanvas .mobile-accordion.open .mobile-accordion__list {
  grid-template-rows: 1fr;
}

.hero {
  position: relative;
  min-height: calc(90vh - 140px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero.hm {
  min-height: calc(100vh - 140px);
}
.hero__overlay,
.hero .hero-img {
  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 .hero-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__left {
  color: var(--white);
}
.hero__badge {
  backdrop-filter: blur(15px);
  border: 1px solid var(--gold);
  margin-bottom: 28px;
  padding: 7px 25px;
  font-size: 13px;
  font-weight: 400;
  border-radius: var(--radius-md);
  width: -moz-max-content;
  width: max-content;
}
.hero__heading {
  font-size: 60px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--ff-serif);
  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: 1.25rem;
  max-width: 550px;
}
.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);
  display: none;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), transparent);
  animation: scrollPulse 2s ease infinite;
}

.hero.common_banner {
  min-height: 80vh;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
/* ── Contact Form ───────────────────────────── */
.contact-form.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-deep);
}
.contact-form .section-head {
  margin-bottom: 20px;
}
.contact-form .recaptcha-box {
  transform: scale(0.7);
  transform-origin: 0 0;
}
.contact-form .field {
  display: flex;
  flex-direction: column;
}
.contact-form .field .phone {
  padding-left: 50px;
}
.contact-form .field label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.contact-form .field input,
.contact-form .field textarea,
.contact-form .field select {
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text-primary) !important;
  font-size: 14px;
  transition: var(--t);
}
.contact-form .field input::-moz-placeholder, .contact-form .field textarea::-moz-placeholder, .contact-form .field select::-moz-placeholder {
  color: var(--text-muted);
}
.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder,
.contact-form .field select::placeholder {
  color: var(--text-muted);
}
.contact-form .field input:focus,
.contact-form .field textarea:focus,
.contact-form .field select:focus {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}
.contact-form .field input:-webkit-autofill,
.contact-form .field input:-webkit-autofill:hover,
.contact-form .field input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #fff !important;
}
.contact-form .field select option {
  color: #000;
}
.contact-form .field textarea {
  min-height: 80px;
  resize: none;
}
.contact-form .error {
  font-size: 11px;
  color: #ff6b6b;
  margin-top: 4px;
}
.contact-form {
  /* ── Select ───────────────── */
}
.contact-form .select-wrap {
  position: relative;
}
.contact-form .select-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-form .select-wrap::after {
  content: "=";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-primary);
  font-size: 13px;
  pointer-events: none;
}
.contact-form {
  /* ── Divider ───────────────── */
}
.contact-form .form-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 24px 0;
}

.about {
  background: #f9fafb;
  padding: 50px 0;
}
.about__media-col::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-deep));
  border-radius: 3px;
  z-index: 1;
}
.about .about__media {
  position: absolute;
  width: 120%;
  height: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(241, 193, 96, 0.044), var(--shadow-card);
}
.about .about__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__media-badge {
  position: absolute;
  top: 18px;
  left: 10%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(241, 193, 96, 0.3);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-family: var(--ff-ui);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.about__media-badge span {
  color: var(--gold);
  margin-right: 4px;
}
.about__media-rating {
  position: absolute;
  bottom: 18px;
  left: 10%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}
.about__media-rating .stars {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1px;
}
.about__media-rating .rating-text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-family: var(--ff-ui);
}
.about__experience {
  position: absolute;
  right: 0;
  bottom: 50%;
  transform: translateY(50%);
  background: var(--white);
  padding: 20px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(241, 193, 96, 0.18);
}
.about__experience::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: var(--gold);
  border-radius: 3px;
}
.about__experience p,
.about__experience h3 {
  margin-bottom: 0;
  padding-bottom: 0;
}
.about__content .section-subtitle {
  max-width: 100%;
}
.about__divider {
  width: 40px;
  height: 2px;
  background: var(--black);
  margin-bottom: 18px;
}
.about__stats {
  margin-top: 20px;
}
.about .stat {
  position: relative;
  padding-left: 16px;
}
.about .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 2px;
  height: 40px;
  background: var(--gold);
}
.about .stat h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
}
.about .stat h4 span {
  color: var(--gold-deep);
  font-weight: 500;
  margin-left: 2px;
}
.about .stat p {
  font-size: 12px;
  color: var(--mid);
}
.about__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e8e8e8;
}
.about__trust .trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--mid);
}
.about__trust .trust-icon {
  width: 26px;
  height: 26px;
  background: #fdf3e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gold-deep);
}

.why {
  overflow-x: hidden;
  position: relative;
}
.why__features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why__item h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}
.why__item p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}
.why__icon {
  width: 38px;
  height: 38px;
  background: var(--black);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(241, 193, 96, 0.18);
}
.why__media {
  position: relative;
  height: 100%;
}
.why__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 55%);
  pointer-events: none;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.why__media img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  -o-object-fit: cover;
     object-fit: cover;
}
.why__media-strip {
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-deep));
  z-index: 1;
}
.why__badge {
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(241, 193, 96, 0.3);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-family: var(--ff-ui);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  right: 15px;
  top: 15px;
}
.why__badge span {
  color: var(--gold);
  margin-right: 4px;
}
.why__card {
  position: absolute;
  left: 40px;
  bottom: -30px;
  background: var(--black);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(241, 193, 96, 0.15);
  border-left: 3px solid var(--gold);
  z-index: 2;
}
.why__card h3 {
  font-size: 26px;
  margin-bottom: 4px;
  color: var(--gold);
  font-family: var(--ff-serif);
}
.why__card p {
  font-size: 11px;
  color: var(--white-soft);
}

.how-it-works {
  background: var(--white);
}
.how-it-works .section-head {
  margin-bottom: 60px;
}
.how-it-works__steps {
  position: relative;
  margin-bottom: 50px;
}
.how-it-works__steps::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, #e5e5e5 15%, #e5e5e5 85%, transparent);
  z-index: 0;
}
@media (max-width: 991px) {
  .how-it-works__steps::before {
    display: none;
  }
}
.how-it-works__cta {
  margin-top: 10px;
}

.how-step__circle {
  width: 56px;
  height: 56px;
  background: var(--black);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 0 0 6px var(--white), 0 0 0 7px rgba(241, 193, 96, 0.25);
}
.how-step__circle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(241, 193, 96, 0.35);
}
.how-step__icon {
  width: 36px;
  height: 36px;
  background: rgba(241, 193, 96, 0.08);
  border: 1px solid rgba(241, 193, 96, 0.28);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin: 0 auto 12px;
  color: var(--gold-deep);
}
.how-step__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}
.how-step__desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}

.how-connector {
  position: absolute;
  top: 28px;
  width: 28px;
  height: 28px;
  background: var(--white);
  border: 1px solid rgba(241, 193, 96, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gold-deep);
  z-index: 2;
}
.how-connector--1 {
  left: calc(33.33% - 14px);
}
.how-connector--2 {
  left: calc(66.66% - 14px);
}
@media (max-width: 991px) {
  .how-connector {
    display: none;
  }
}

.video-hero {
  padding: 0;
  position: relative;
}
.video-hero__wrap {
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .video-hero__wrap {
    height: 380px;
  }
}
.video-hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.video-hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  transition: all var(--t);
  cursor: pointer;
}
.video-hero__play i {
  margin-left: 3px;
}
.video-hero__play:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%) scale(1.08);
}
.video-hero__play::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 130%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  animation: pulse 2s infinite;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* ── Modal Styling ───────────────── */
.video-modal .modal-content {
  background: transparent;
  border: none;
}
.video-modal iframe {
  border-radius: 12px;
}
.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  z-index: 2;
}

.premium-services {
  background: #f7f7f7;
  overflow-x: hidden;
  /* Feature list */
}
.premium-services .ps-features {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}
.premium-services .ps-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
  transition: background var(--t);
}
.premium-services .ps-feat:last-child {
  border-bottom: none;
}
.premium-services .ps-feat.active .ps-feat__icon {
  background: var(--black);
  box-shadow: 0 0 0 4px rgba(241, 193, 96, 0.15);
}
.premium-services .ps-feat.active .ps-feat__title {
  color: var(--black);
}
.premium-services .ps-feat__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: #1a1a1a;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: box-shadow var(--t);
}
.premium-services .ps-feat__body {
  flex: 1;
}
.premium-services .ps-feat__title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 5px;
  transition: color var(--t);
}
.premium-services .ps-feat__desc {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  margin-bottom: 0;
}
.premium-services .ps-feat__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.premium-services .ps-feat__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--gold);
  border: 1px solid rgba(241, 193, 96, 0.3);
}
.premium-services .ps-feat__tag--light {
  background: rgba(241, 193, 96, 0.1);
  color: var(--gold-deep);
  border-color: rgba(241, 193, 96, 0.28);
}
.premium-services .ps-feat__list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  padding: 0;
}
.premium-services .ps-feat__list li {
  font-size: 12.5px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}
.premium-services .ps-feat__list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.premium-services .ps-feat {
  /* auto-play progress bar */
}
.premium-services .ps-feat__progress {
  height: 2px;
  background: #ececec;
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}
.premium-services .ps-feat__bar {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-deep));
  width: 0;
  transition: width 4s linear;
}
.premium-services {
  /* Right media */
}
.premium-services .ps-media {
  position: relative;
}
.premium-services .ps-media__wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
}
.premium-services .ps-media__wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 55%);
  pointer-events: none;
}
.premium-services .ps-media__wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.premium-services .ps-media__strip {
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-deep));
  z-index: 1;
}
.premium-services .ps-media__badge {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(241, 193, 96, 0.3);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.premium-services .ps-media__badge i {
  color: var(--gold);
  margin-right: 4px;
}
.premium-services .ps-media__label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: opacity 0.4s;
}
.premium-services .ps-media {
  /* floating stat card */
}
.premium-services .ps-media__stat {
  position: absolute;
  left: -22px;
  bottom: 32px;
  z-index: 2;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(241, 193, 96, 0.18);
  border-left: 3px solid var(--gold);
  min-width: 150px;
}
.premium-services .ps-media__stat-num {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.premium-services .ps-media__stat-label {
  font-size: 10.5px;
  color: #888;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 3px;
}
@media (max-width: 991px) {
  .premium-services .ps-media__stat {
    left: 10px;
  }
}

.fleet {
  background: #f6f6f6;
}
.fleet .extra-fleet {
  display: none;
}
.fleet .commonbtn span {
  color: var(--black);
}
.fleet .commonbtn:hover span {
  color: var(--white);
}
.fleet .commonbtn.dark span {
  color: var(--white);
}
.fleet .fleet-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-lg);
  padding: 15px;
  height: 100%;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.fleet .fleet-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-deep));
  opacity: 0;
  transition: var(--t);
}
.fleet .fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.fleet .fleet-card:hover::before {
  opacity: 1;
}
.fleet .fleet-card__img {
  text-align: center;
  margin-bottom: 14px;
  background: #f8f8f8;
  border-radius: var(--radius-md);
  /* padding: 18px 10px; */
  position: relative;
}
.fleet .fleet-card__img img {
  border-radius: 8px;
}
.fleet .fleet-card__img .fleet-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
}
.fleet .fleet-card__content h5 {
  font-weight: 600;
  margin-bottom: 3px;
}
.fleet .fleet-card__content .fleet-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.fleet .fleet-card__content .fleet-card__rating .stars {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1px;
}
.fleet .fleet-card__content .fleet-card__rating .rating-val {
  font-size: 11px;
  color: #888;
}
.fleet .fleet-card__content p {
  color: #777;
  margin-bottom: 14px;
  font-size: 13px;
}
.fleet .fleet-card__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.fleet .fleet-card__features div {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 6px 8px;
  text-align: center;
  border: 1px solid transparent;
  transition: var(--t);
}
.fleet .fleet-card__features div:hover {
  border-color: rgba(241, 193, 96, 0.4);
  background: #fdf8ee;
}
.fleet .fleet-card__features div i {
  display: block;
  font-size: 13px;
  color: var(--gold-deep);
  margin-bottom: 2px;
}
.fleet .fleet-card__features div span {
  display: block;
  font-size: 9px;
  color: #aaa;
}
.fleet .fleet-card__features div strong {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.fleet .fleet-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fleet .fleet-card__meta {
  display: flex;
  gap: 10px;
  background: #f5f5f5;
  padding: 8px 12px;
  border-radius: 8px;
}
.fleet .fleet-card__meta div {
  text-align: center;
}
.fleet .fleet-card__meta i {
  display: block;
  font-size: 12px;
  color: var(--gold-deep);
}
.fleet .fleet-card__meta span {
  font-size: 10px;
  color: #888;
  display: block;
}
.fleet .fleet-card__meta strong {
  font-size: 13px;
}
.fleet .fleet-card__meta .line {
  width: 1px;
  background: #dfdfdf;
  margin: 0 5px;
}

.services {
  background: #f9fafb;
}
.services .extra-service {
  display: none;
}
.services .service-card {
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #ebebeb;
  transition: var(--t);
}
.services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.services .service-card:hover .service-card__img img {
  transform: scale(1.05);
}
.services .service-card:hover .service-card__link {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}
.services .service-card__img {
  position: relative;
  overflow: hidden;
  height: 190px;
  background: #1a1a1a;
  margin-bottom: 0;
}
.services .service-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform 0.5s ease;
  object-position: top;
}
.services .service-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.38) 0%, transparent 55%);
  pointer-events: none;
}
.services .service-card__tag {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(241, 193, 96, 0.35);
  color: rgba(255, 255, 255, 0.85);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.services .service-card__tag i {
  color: var(--gold);
  margin-right: 4px;
  font-size: 9px;
}
.services .service-card__content {
  padding: 20px 20px 22px;
}
.services .service-card__content h5 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.services .service-card__content p {
  color: #777;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 95%;
  font-size: 13px;
}
.services .service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services .service-card__icon {
  width: 32px;
  height: 32px;
  background: rgba(241, 193, 96, 0.08);
  border: 1px solid rgba(241, 193, 96, 0.28);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.services .service-card__link {
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
  transition: var(--t);
  border-bottom: 1px solid var(--black);
}
.services .service-card__link i {
  font-size: 11px;
  transition: transform 0.2s ease;
}
.services .service-card__link:hover i {
  transform: translateX(4px);
}

.contact {
  overflow-x: hidden;
}
.contact__title {
  font-family: var(--ff-serif);
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.contact__title em {
  display: block;
  font-size: 40px;
  color: #5c6670;
}
.contact__divider {
  width: 40px;
  height: 2px;
  background: var(--black);
  margin-bottom: 18px;
}
.contact__desc {
  font-size: 15px;
  color: #6b6b6b;
  max-width: 520px;
  margin-bottom: 30px;
}
.contact__info li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.contact__info li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact__info li .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(241, 193, 96, 0.12);
}
.contact__info li h6 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}
.contact__info li p {
  font-size: 13px;
  color: #6f6f6f;
  margin: 0;
}
.contact__form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}
.contact__form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-deep));
}
.contact__form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.contact__form-badge {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(241, 193, 96, 0.1);
  border: 1px solid rgba(241, 193, 96, 0.35);
  color: var(--gold-deep);
  padding: 4px 10px;
  border-radius: 20px;
}
.contact__form h4 {
  font-family: var(--ff-serif);
  font-size: 22px;
  margin-bottom: 0;
}
.contact__form label {
  font-size: 12px;
  margin-bottom: 5px;
  display: block;
  color: #444;
  font-weight: 500;
}
.contact__form .radio-label {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.contact__form .form-control,
.contact__form .form-select {
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid #e3e3e3;
  font-size: 13px;
  padding: 10px 12px;
  background: #fafafa;
  transition: border-color var(--t), background var(--t);
}
.contact__form .form-control:focus,
.contact__form .form-select:focus {
  border-color: var(--black);
  box-shadow: none;
  background: var(--white);
}
.contact__form textarea.form-control {
  height: auto;
  resize: none;
}
.contact__form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact__form .commonbtn {
  margin-top: 6px;
  height: 48px;
  font-size: 14px;
  width: 100%;
  justify-content: center;
}
.contact__form .error {
  color: red;
}
.contact__form__privacy {
  text-align: center;
  font-size: 11px;
  color: #aaa;
  margin-top: 10px;
}
.contact__form__privacy i {
  color: var(--gold-deep);
  margin-right: 3px;
}
.contact__form .iti.iti--allow-dropdown {
  width: 100%;
}
.contact__form .recaptcha-box {
  transform: scale(0.8);
}
.contact .section-label {
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .contact__title {
    font-size: 34px;
  }
  .contact__title em {
    font-size: 30px;
  }
  .contact__form {
    padding: 26px;
  }
  .contact__form .form-row {
    grid-template-columns: 1fr;
  }
}

.faq {
  background: #f7f7f7;
  overflow-x: hidden;
}
.faq__title {
  font-family: var(--ff-serif);
  font-size: 42px;
  margin-bottom: 10px;
}
.faq__title em {
  color: #5c6670;
  font-style: italic;
}
.faq__subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 40px;
}
.faq__accordion {
  margin: 0 auto;
  text-align: left;
}
.faq .accordion-item {
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: var(--radius-md) !important;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t);
}
.faq .accordion-item.show, .faq .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(241, 193, 96, 0.45);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}
.faq .accordion-button {
  background: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 17px 20px;
  color: #222;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq .accordion-button::before {
  content: attr(data-num);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-deep);
  background: rgba(241, 193, 96, 0.1);
  border: 1px solid rgba(241, 193, 96, 0.28);
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.faq .accordion-button::after {
  font-family: "Font Awesome 6 Free";
  content: "+";
  font-weight: 900;
  background-image: none;
  transform: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--mid);
  margin-left: auto;
  flex-shrink: 0;
  transition: background var(--t), color var(--t), transform var(--t);
}
.faq .accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--black);
}
.faq .accordion-button:not(.collapsed)::after {
  content: "+";
  transform: rotate(45deg);
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}
.faq .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion-body {
  color: #666;
  font-size: 13.5px;
  line-height: 1.7;
  padding: 0 20px 18px;
  text-align: left;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}
.faq__cta {
  margin-top: 40px;
}
.faq__cta p {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}
.faq__cta .commonbtn {
  border-radius: var(--radius-md);
  padding: 0;
}
.faq__cta .commonbtn span {
  padding: 10px 18px;
}
.faq .commonbtn span {
  color: var(--black);
}
.faq .commonbtn:hover span {
  color: var(--white);
}
@media (max-width: 768px) {
  .faq__title {
    font-size: 30px;
  }
}

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

.editorial-story {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #fafafa, #f5f5f5);
}
.editorial-story .row {
  margin-bottom: 30px;
}
.editorial-story::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -260px;
  right: -240px;
  background: radial-gradient(circle, rgba(236, 184, 96, 0.08), transparent 72%);
  pointer-events: none;
}
.editorial-story__content--right {
  margin-left: auto;
}
.editorial-story__content .section-title {
  margin-bottom: 22px;
}
.editorial-story__content .section-title em {
  color: var(--gold-deep);
}
.editorial-story__content .section-subtitle {
  margin-bottom: 18px;
}
.editorial-story__content .section-subtitle:last-child {
  margin-bottom: 0;
}
.editorial-story__media {
  position: relative;
  padding: 22px;
  height: 100%;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  overflow: hidden;
}
.editorial-story__media:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.12);
}
.editorial-story__media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(236, 184, 96, 0.28), transparent, rgba(236, 184, 96, 0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.editorial-story__media--left {
  margin-left: auto;
}
.editorial-story__image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 100%;
}
.editorial-story__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.2s ease, filter 1.2s ease;
}
.editorial-story__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.14), transparent 42%);
  pointer-events: none;
}
.editorial-story__media:hover .editorial-story__image img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.why-choose {
  position: relative;
  background: linear-gradient(to bottom, #fafafa, #f5f5f5);
  overflow: hidden;
}
.why-choose::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(236, 184, 96, 0.08), transparent 72%);
  pointer-events: none;
}
.why-choose .container {
  position: relative;
  z-index: 2;
}
.why-choose .why-card {
  position: relative;
  height: 100%;
  padding: 38px 26px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
  overflow: hidden;
}
.why-choose .why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  transition: width 0.5s ease;
}
.why-choose .why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(236, 184, 96, 0.18);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}
.why-choose .why-card:hover::before {
  width: 100%;
}
.why-choose .why-card:hover .why-card__icon {
  transform: scale(1.08) rotate(-6deg);
  background: linear-gradient(135deg, rgba(236, 184, 96, 0.18), rgba(236, 184, 96, 0.06));
}
.why-choose .why-card:hover .why-card__icon i {
  color: var(--gold-deep);
}
.why-choose .why-card__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(236, 184, 96, 0.12), rgba(236, 184, 96, 0.04));
  border: 1px solid rgba(236, 184, 96, 0.14);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s ease;
}
.why-choose .why-card__icon i {
  font-size: 28px;
  color: var(--gold);
  transition: color 0.4s ease;
}
.why-choose .why-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}
.why-choose .why-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #69707d;
  margin: 0;
}

.mission-values {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #f8f8f8, #f3f3f3);
}
.mission-values .container {
  position: relative;
  z-index: 2;
}
.mission-values .mission-card,
.mission-values .values-card {
  position: relative;
  height: 100%;
  padding: 48px;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.mission-values .mission-card:hover,
.mission-values .values-card:hover {
  transform: translateY(-8px);
}
.mission-values .mission-card__label,
.mission-values .values-card__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.7;
}
.mission-values .mission-card__title,
.mission-values .values-card__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 600;
  font-family: var(--ff-serif);
}
.mission-values .mission-card {
  background: linear-gradient(135deg, #050505, #111111);
  color: var(--white);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}
.mission-values .mission-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -120px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 184, 96, 0.14), transparent 72%);
}
.mission-values .mission-card:hover {
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32);
}
.mission-values .mission-card__label {
  color: rgba(255, 255, 255, 0.58);
}
.mission-values .mission-card__title {
  color: var(--white);
}
.mission-values .mission-card__text {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}
.mission-values .values-card {
  background: linear-gradient(135deg, #f1c160, #e9b146);
  color: var(--black);
  box-shadow: 0 25px 60px rgba(236, 184, 96, 0.22);
}
.mission-values .values-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  bottom: -120px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), transparent 72%);
}
.mission-values .values-card:hover {
  box-shadow: 0 40px 90px rgba(236, 184, 96, 0.32);
}
.mission-values .values-card__label {
  color: rgba(0, 0, 0, 0.55);
}
.mission-values .values-card__title {
  color: var(--black);
}
.mission-values .values-card__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.mission-values .values-card__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}
.mission-values .values-card__list li i {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  font-size: 15px;
  flex-shrink: 0;
}

/* =========================================
Service Strip
========================================= */
.service-strip {
  background: #f5f1e7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px 0;
}
.service-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.service-strip__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(236, 184, 96, 0.35);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.65);
}
.service-strip h6 {
  font-size: 16px;
  margin-bottom: 3px;
  font-weight: 600;
}
.service-strip p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* =========================================
Featured Service
========================================= */
.featured-service__card {
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .featured-service__card {
    grid-template-columns: 1fr;
  }
}
.featured-service__content {
  padding: clamp(32px, 5vw, 65px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-service__list {
  margin: 10px 0 28px;
}
.featured-service__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}
.featured-service__list li:not(:last-child) {
  margin-bottom: 16px;
}
.featured-service__list li i {
  color: var(--gold);
  font-size: 13px;
}
.featured-service__image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.featured-service__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.4s ease;
}
.featured-service__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.28), transparent 20%);
}
.featured-service__card:hover .featured-service__image img {
  transform: scale(1.06);
}
.featured-service .section-label {
  color: var(--white);
}
.featured-service .commonbtn,
.featured-service .section-label {
  width: -moz-max-content;
  width: max-content;
}
.featured-service .section-title {
  font-size: 36px;
}
.featured-service h3 {
  font-size: 24px;
  color: var(--heading-color);
}

.main-services {
  background: #f6f6f6;
}
.main-services .service-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: var(--t);
  height: 100%;
}
.main-services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}
.main-services .service-card:hover .service-card__image img {
  transform: scale(1.06);
}
.main-services .service-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/8;
}
.main-services .service-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-services .service-card__body {
  padding: 28px;
}
.main-services .service-card__top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.main-services .service-card__top h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
}
.main-services .service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--black);
  font-size: 15px;
}
.main-services .service-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  max-width: 95%;
}
.main-services .service-card ul {
  margin-bottom: 24px;
}
.main-services .service-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: #777;
}
.main-services .service-card ul li:not(:last-child) {
  margin-bottom: 10px;
}
.main-services .service-card ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 9px;
}

/* =========================================
Airport Transfer
========================================= */
.airport-transfer {
  background: radial-gradient(circle at top left, rgba(241, 193, 96, 0.08), transparent 30%), #f7f7f7;
}

/* =========================================
Airport Card
========================================= */
.airport-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 440px;
  isolation: isolate;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
.airport-card:hover .airport-card__image img {
  transform: scale(1.08);
}
.airport-card:hover .airport-card__overlay {
  opacity: 0.92;
}
.airport-card:hover .airport-card__content {
  transform: translateY(-10px);
}
.airport-card:hover .airport-card__icon {
  background: var(--gold);
  color: var(--black);
}
.airport-card__image {
  position: absolute;
  inset: 0;
}
.airport-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.airport-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.35), transparent);
  transition: var(--t);
}
.airport-card__content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 32px;
  z-index: 2;
  transition: var(--t-slide);
}
.airport-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: var(--white);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--t);
  font-size: 18px;
}
.airport-card__text span {
  display: inline-block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.airport-card__text h3 {
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: 14px;
  line-height: 1.15;
  font-weight: 600;
}
.airport-card__text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  max-width: 300px;
  margin: 0;
}

/* =========================================
Premium CTA
========================================= */
.premium-cta {
  padding: 30px 0;
  background: radial-gradient(circle at top left, rgba(241, 193, 96, 0.08), transparent 30%), #050505;
  overflow: hidden;
}
.premium-cta__wrap {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: clamp(20px, 6vw, 40px);
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  isolation: isolate;
}
.premium-cta {
  /* Glow */
}
.premium-cta__blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.14;
  z-index: -1;
}
.premium-cta__blur--one {
  width: 260px;
  height: 260px;
  background: var(--gold);
  top: -100px;
  left: -60px;
}
.premium-cta__blur--two {
  width: 220px;
  height: 220px;
  background: #ffffff;
  bottom: -120px;
  right: -80px;
}
.premium-cta__content {
  max-width: 760px;
  margin-inline: auto;
}
.premium-cta__content .section-title {
  margin-bottom: 20px;
}
.premium-cta__content .section-title em {
  color: var(--gold);
}
.premium-cta__content .section-subtitle {
  /* max-width: 620px; */
  margin-inline: auto;
  margin-bottom: 34px;
  font-size: 16px;
}
.premium-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.premium-cta {
  /* Bottom Accent Line */
}
.premium-cta__line {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 50px;
}

.fleet-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #fafafa, #f5f5f5);
}
.fleet-showcase::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -280px;
  right: -240px;
  background: radial-gradient(circle, rgba(236, 184, 96, 0.08), transparent 72%);
  pointer-events: none;
}
.fleet-showcase .container {
  position: relative;
  z-index: 2;
}
.fleet-showcase .fleet-card {
  position: relative;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease, border-color 0.6s ease;
}
.fleet-showcase .fleet-card:hover {
  transform: translateY(-12px);
  border-color: rgba(236, 184, 96, 0.18);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.12);
}
.fleet-showcase .fleet-card:hover .fleet-card__media img {
  transform: scale(1.08);
}
.fleet-showcase .fleet-card:hover .fleet-card__tag {
  transform: translateY(0);
  opacity: 1;
}
.fleet-showcase .fleet-card__media {
  position: relative;
  display: block;
  overflow: hidden;
}
.fleet-showcase .fleet-card__media img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.2s ease;
}
.fleet-showcase .fleet-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent 42%);
  z-index: 1;
}
.fleet-showcase .fleet-card__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  transition: transform 0.45s ease, opacity 0.45s ease;
  transform: translateY(-6px);
  opacity: 0.9;
}
.fleet-showcase .fleet-card__content {
  padding: 28px;
}
.fleet-showcase .fleet-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.fleet-showcase .fleet-card__top h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0;
  font-weight: 600;
}
.fleet-showcase .fleet-card__top h3 a {
  color: var(--black);
  transition: color var(--t);
}
.fleet-showcase .fleet-card__top h3 a:hover {
  color: var(--gold-deep);
}
.fleet-showcase .fleet-card__price {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-deep);
}
.fleet-showcase .fleet-card__price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
}
.fleet-showcase .fleet-card__meta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.fleet-showcase .fleet-card__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #69707d;
}
.fleet-showcase .fleet-card__meta-item i {
  color: var(--gold);
  font-size: 14px;
}

.location-map {
  position: relative;
  background: linear-gradient(to bottom, #fafafa, #f5f5f5);
  overflow: hidden;
}
.location-map::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -260px;
  right: -220px;
  background: radial-gradient(circle, rgba(236, 184, 96, 0.08), transparent 72%);
  pointer-events: none;
}
.location-map .container {
  position: relative;
  z-index: 2;
}
.location-map__wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.location-map__wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.1);
}
.location-map__wrapper iframe {
  width: 100%;
  height: 520px;
  border: none;
  border-radius: 22px;
  filter: grayscale(100%) contrast(1.05);
}
.location-map__info {
  position: absolute;
  left: 30px;
  bottom: 30px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.location-map__info span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}
.location-map__info span i {
  color: var(--gold);
}
@media (max-width: 768px) {
  .location-map__wrapper {
    border-radius: 24px;
  }
  .location-map__wrapper iframe {
    height: 400px;
    border-radius: 18px;
  }
  .location-map__info {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 12px 14px;
  }
  .location-map__info span {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .location-map__wrapper {
    padding: 8px;
  }
  .location-map__wrapper iframe {
    height: 320px;
  }
}

/* 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;
}

.policy-section {
  background: #f8f8f8;
}
.policy-section .policy-box {
  padding: 50px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}
.policy-section .policy-box__head {
  margin-bottom: 40px;
}
.policy-section .policy-group:not(:last-child) {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.policy-section .policy-group h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.policy-section .policy-group h4 i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(236, 184, 96, 0.12);
  color: var(--gold-deep);
  font-size: 14px;
}
.policy-section .policy-group p,
.policy-section .policy-group li {
  font-size: 15px;
  line-height: 1.8;
  color: #69707d;
}
.policy-section .policy-group ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.policy-section .policy-group li {
  position: relative;
  padding-left: 24px;
}
.policy-section .policy-group li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.policy-section .policy-waiting {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.policy-section .policy-waiting__item {
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(236, 184, 96, 0.08);
  border: 1px solid rgba(236, 184, 96, 0.12);
}
.policy-section .policy-waiting__item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-dark);
}
@media (max-width: 768px) {
  .policy-section .policy-box {
    padding: 32px 22px;
  }
  .policy-section .policy-group p,
  .policy-section .policy-group li {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .hero__right {
    justify-content: center;
  }
  .hero .hero__heading {
    font-size: 40px;
  }
  .about .about__media {
    position: static;
    transform: none;
    width: 100%;
  }
  .editorial-story__media {
    margin-bottom: 25px;
  }
  .mobilebkng .contact-form {
    background: var(--black);
  }
}
@media (max-width: 575px) {
  .topbar {
    display: none;
  }
  .section-pad {
    padding: 30px 0;
  }
  .why-choose .why-card {
    padding: 30px 22px;
    border-radius: 20px;
  }
  .why-choose .why-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }
  .why-choose .why-card__icon i {
    font-size: 24px;
  }
  .why-choose .why-card h4 {
    font-size: 16px;
  }
  .why-choose .why-card p {
    font-size: 13px;
    line-height: 1.7;
  }
  .booking-form .recaptcha-box {
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */