:root {
    --black: #050505;
    --gold: #d1a24b;
    --bahama-blue: #00AEEF;
    --white: #ffffff;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--black);
  color: var(--white);
}

/* NAVBAR */
/* PREMIUM NAVIGATION */
.lux-navbar {
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid rgba(209, 162, 75, 0.32);
  padding: 11px 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  z-index: 999;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link-premium {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-link-premium::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--bahama-blue)
  );
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link-premium:hover,
.nav-link-premium.active {
  color: #ffffff;
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
  width: 100%;
}

.nav-link-premium:hover {
  transform: translateY(-1px);
}

/* BOOKING CTA */
.nav-book-button {
  padding: 12px 20px;
  color: #050505;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  box-shadow: 0 8px 22px rgba(209, 162, 75, 0.18);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-book-button:hover {
  color: #ffffff;
  background: var(--bahama-blue);
  border-color: var(--bahama-blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 174, 239, 0.25);
}

/* HERO */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.72) 38%,
      rgba(0, 0, 0, 0.25) 72%
    ),
    url("../images/fleet-hero.png");
  background-size: cover;
  background-position: center right;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 650px;}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero-text h1{
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 800;
  margin-bottom: 24px;
}

#fleet {background-color: #ddd;
  color: #00778b}

.hero-subtitle {
  color: #dddddd;
  font-size: 1.15rem;
  line-height: 1.7;
  text-align: center;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding:18px 36px;
}

.btn-gold {
  background-color: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
  padding: 14px 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-gold {
    background: var(--gold);
    color: #000;
    border: 2px solid var(--gold);
    transition: all .3s ease;
}

.btn-gold:hover {
    background: var(--bahama-blue);
    border-color: var(--bahama-blue);
    color: #fff;
}

.btn-outline-light {
  padding: 14px 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand img{
    height:100px;
}S

#form-status {
  min-height: 24px;
  color: #ffffff;
  font-weight: 600;
}
/* FLEET SECTION */
.fleet-section {
  background:
    linear-gradient(
      180deg,
      #0a0a0a 0%,
      #111111 50%,
      #080808 100%
    );
}

.section-eyebrow {
  color: var(--bahama-blue);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.fleet-section h2 {
  color: var(--gold);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.fleet-intro {
  color: #cccccc;
  max-width: 680px;
  margin: 15px auto 0;
}

.fleet-card {
  height: 100%;
  overflow: hidden;
  background: #121212;
  border: 1px solid rgba(209, 162, 75, 0.25);
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-8px);
  border-color: var(--bahama-blue);
  box-shadow: 0 22px 50px rgba(0, 174, 239, 0.14);
}

.fleet-image-wrapper {
  height: 270px;
  overflow: hidden;
  background: #050505;
}

.fleet-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.fleet-card:hover .fleet-image {
  transform: scale(1.04);
}

.fleet-card-body {
  padding: 28px;
}

.vehicle-category {
  margin-bottom: 8px;
  color: var(--bahama-blue);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.fleet-card h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.fleet-card p {
  color: #d0d0d0;
  line-height: 1.7;
}

.fleet-features {
  padding-left: 20px;
  margin: 22px 0;
  color: #eeeeee;
}

.fleet-features li {
  margin-bottom: 8px;
}

.fleet-book-button {
  width: 100%;
}

.fleet-note {
  color: #999999;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .fleet-image-wrapper {
    height: 230px;
  }

  .fleet-card-body {
    padding: 22px;
  }
}
.digital-card-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(0, 174, 239, 0.14), transparent 35%),
    #050505;
  color: white;
}

.digital-card-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.digital-card {
  width: 100%;
  max-width: 480px;
  padding: 36px 24px;
  text-align: center;
  background: #111;
  border: 1px solid rgba(209, 162, 75, 0.35);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.digital-card-logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.digital-card h1 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 10px;
}

.digital-card-tagline {
  color: #e5e5e5;
  margin-bottom: 8px;
}

.digital-card-location {
  color: var(--bahama-blue);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.digital-card-actions {
  display: grid;
  gap: 12px;
}

.digital-card-button {
  width: 100%;
  padding: 14px 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.secondary-card-button {
  color: white;
  background: #1a1a1a;
  border: 1px solid rgba(0, 174, 239, 0.45);
}

.secondary-card-button:hover {
  color: white;
  background: var(--bahama-blue);
  border-color: var(--bahama-blue);
}

.digital-card-note {
  color: #999;
  font-size: 0.82rem;
  margin-top: 22px;
  margin-bottom: 0;
}

/* MOBILE */


  .brand img {
    height: 60px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.75rem;
  }

  .hero-section {
    background-position: center;
    text-align: center;
  }

  .hero-text {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }
  .booking-form .form-label {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

input[type="datetime-local"] {
  color: #222222;
  background-color: #ffffff;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
/* DIGITAL CONCIERGE PAGE */
.concierge-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(
      circle at top center,
      rgba(0, 174, 239, 0.16),
      transparent 35%
    ),
    linear-gradient(180deg, #050505 0%, #0c0c0c 100%);
  color: #ffffff;
}

.concierge-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 36px 16px;
}

.concierge-card {
  width: 100%;
  max-width: 620px;
  padding: 40px 28px;
  text-align: center;
  background: rgba(15, 15, 15, 0.96);
  border: 1px solid rgba(209, 162, 75, 0.38);
  border-radius: 22px;
  box-shadow:
    0 28px 75px rgba(0, 0, 0, 0.55),
    0 0 35px rgba(0, 174, 239, 0.05);
}

.concierge-logo-link {
  display: inline-block;
}

.concierge-logo {
  width: 180px;
  max-width: 60%;
  height: auto;
  margin-bottom: 24px;
}

.concierge-eyebrow {
  margin-bottom: 10px;
  color: var(--bahama-blue);
  font-size: 0.76rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.concierge-card h1 {
  max-width: 500px;
  margin: 0 auto 18px;
  color: var(--gold);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.06;
}

.concierge-subtitle {
  max-width: 510px;
  margin: 0 auto;
  color: #d2d2d2;
  font-size: 1rem;
  line-height: 1.7;
}

.concierge-divider {
  width: 72px;
  height: 2px;
  margin: 30px auto;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--bahama-blue),
    transparent
  );
}

.concierge-actions {
  display: grid;
  gap: 13px;
}

.concierge-button {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 15px 18px;
  color: #ffffff;
  text-align: left;
  text-decoration: none;
  background: #181818;
  border: 1px solid rgba(0, 174, 239, 0.38);
  border-radius: 12px;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.concierge-button:hover {
  color: #ffffff;
  background: #202020;
  border-color: var(--bahama-blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 174, 239, 0.12);
}

.concierge-button-primary {
  color: #050505;
  background: var(--gold);
  border-color: var(--gold);
}

.concierge-button-primary:hover {
  color: #ffffff;
  background: var(--bahama-blue);
  border-color: var(--bahama-blue);
}

.concierge-icon {
  width: 40px;
  min-width: 40px;
  color: var(--gold);
  font-size: 1.35rem;
  text-align: center;
}

.concierge-button-primary .concierge-icon {
  color: #050505;
}

.concierge-button-primary:hover .concierge-icon {
  color: #ffffff;
}

.concierge-button span:last-child {
  display: flex;
  flex-direction: column;
}

.concierge-button strong {
  font-size: 1rem;
}

.concierge-button small {
  margin-top: 3px;
  color: #aaaaaa;
  font-size: 0.78rem;
}

.concierge-button-primary small {
  color: rgba(0, 0, 0, 0.7);
}

.concierge-button-primary:hover small {
  color: rgba(255, 255, 255, 0.78);
}

.concierge-fleet h2 {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 2rem;
}

.concierge-fleet-grid {
  display: grid;
  gap: 14px;
}

.concierge-vehicle {
  display: grid;
  grid-template-columns: 125px 1fr;
  align-items: center;
  overflow: hidden;
  text-align: left;
  background: #171717;
  border: 1px solid rgba(209, 162, 75, 0.22);
  border-radius: 12px;
}

.concierge-vehicle img {
  width: 125px;
  height: 95px;
  object-fit: cover;
}

.concierge-vehicle div {
  padding: 12px 16px;
}

.concierge-vehicle h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 1rem;
}

.concierge-vehicle p {
  margin: 0;
  color: var(--bahama-blue);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.concierge-service-area {
  margin-top: 30px;
}

.concierge-service-area p {
  margin-bottom: 6px;
  color: #e0e0e0;
}

.concierge-service-area small {
  color: #888888;
}

@media (max-width: 520px) {
  .concierge-card {
    padding: 30px 18px;
    border-radius: 16px;
  }

  .concierge-logo {
    width: 150px;
  }

  .concierge-button {
    padding: 14px;
  }

  .concierge-vehicle {
    grid-template-columns: 105px 1fr;
  }

  .concierge-vehicle img {
    width: 105px;
    height: 88px;
  }
}
/* PREMIUM SERVICES SECTION */
.services-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(0, 174, 239, 0.09),
      transparent 28%
    ),
    linear-gradient(180deg, #080808 0%, #101010 55%, #080808 100%);
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 90px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(209, 162, 75, 0.65)
  );
}

.services-heading {
  max-width: 760px;
  margin: 0 auto 62px;
}

.services-heading h2 {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
}

.services-intro {
  margin: 0 auto;
  color: #c9c9c9;
  font-size: 1.05rem;
  line-height: 1.8;
}

.services-list {
  border-top: 1px solid rgba(209, 162, 75, 0.22);
}

.service-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 38px 22px;
  overflow: hidden;
  border-bottom: 1px solid rgba(209, 162, 75, 0.22);
  transition:
    background-color 0.3s ease,
    padding-left 0.3s ease,
    border-color 0.3s ease;
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--gold),
    var(--bahama-blue)
  );
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.service-panel:hover {
  padding-left: 34px;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(0, 174, 239, 0.45);
}

.service-panel:hover::before {
  transform: scaleY(1);
}

.service-number {
  color: rgba(209, 162, 75, 0.45);
  font-family: Georgia, serif;
  font-size: 2rem;
  letter-spacing: 2px;
}

.service-content {
  max-width: 760px;
}

.service-label {
  margin-bottom: 8px;
  color: var(--bahama-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.service-content h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 500;
}

.service-content p:last-child {
  margin: 0;
  color: #bdbdbd;
  line-height: 1.75;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.service-link span {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.service-link:hover {
  color: var(--bahama-blue);
  transform: translateX(3px);
}

.service-link:hover span {
  transform: translateX(5px);
}

/* FALCON STANDARD */
.falcon-standard {
  margin-top: 95px;
  padding: 52px;
  background:
    linear-gradient(
      135deg,
      rgba(209, 162, 75, 0.07),
      rgba(0, 174, 239, 0.045)
    ),
    #111111;
  border: 1px solid rgba(209, 162, 75, 0.26);
  border-radius: 8px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.28);
}

.standard-heading {
  max-width: 680px;
  margin-bottom: 38px;
}

.standard-heading h2 {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 40px;
}

.standard-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.standard-mark {
  margin-top: 4px;
  color: var(--bahama-blue);
  font-size: 0.8rem;
}

.standard-item h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.standard-item p {
  margin: 0;
  color: #9f9f9f;
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .service-panel {
    grid-template-columns: 55px minmax(0, 1fr);
  }

  .service-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 650px) {
  .services-section {
    padding: 85px 0;
  }

  .services-heading {
    margin-bottom: 42px;
  }

  .service-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 12px;
  }

  .service-panel:hover {
    padding-left: 20px;
  }

  .service-number {
    font-size: 1.25rem;
  }

  .service-link {
    grid-column: auto;
    margin-top: 6px;
  }

  .falcon-standard {
    margin-top: 65px;
    padding: 34px 22px;
  }

  .standard-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}