:root {
  --color-onyx: #050505;
  --color-rich-black: #0a0a0a;
  --color-dark-grey: #1a1a1a;
  --color-gold: #d4af37;
  --color-silver: #c0c0c0;
  --color-white: #ffffff;

  /* Typography Scale */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  background-color: var(--color-onyx);
  color: var(--color-silver);
  font-family: var(--font-body);
  font-size: 1.1875rem;
  /* 19px base */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-inline: 0;
}

@media (min-width: 768px) {
  body {
    padding-inline: 3rem;
  }
}

/* Old Money Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--color-white);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

p {
  font-size: 1.1875rem;
  /* 19px */
  line-height: 1.7;
}

/* Utility Classes Ported from Tailwind/React */
.text-gold {
  color: var(--color-gold) !important;
}

.bg-gold {
  background-color: var(--color-gold) !important;
}

.border-gold {
  border-color: var(--color-gold) !important;
}

.text-silver {
  color: var(--color-silver) !important;
}

.bg-onyx {
  background-color: var(--color-onyx) !important;
}

.font-display {
  font-family: var(--font-display);
}

.font-body {
  font-family: var(--font-body);
}

.text-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.text-nav {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.text-spec {
  font-family: var(--font-body);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.text-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.1875rem;
  line-height: 1.7;
}

/* Custom Component Styles */

/* Navigation Styles */
.top-bar {
  background-color: var(--color-onyx);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem 3rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-silver);
}

.top-bar-divider {
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Remove default list styles from menus */
header nav ul,
header nav li,
#mobileMenuOverlay ul,
#mobileMenuOverlay li {
  list-style: none;
  padding: 0;
  margin: 0;
}

header {
  position: absolute;
  /* Absolute instead of fixed so it scrolls away if not fixed on top */
  top: 38px;
  /* Offset for top-bar */
  left: 3rem;
  right: 3rem;
  z-index: 1000;
  transition: all 0.5s ease;
  padding: 1rem 0;
}

header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.7rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.not-scrolled {
  background: transparent;
}

/* Aspect Ratios */
.aspect-4-3 {
  aspect-ratio: 4 / 3;
}

/* Page Hero Slider */
.page-hero-container {
  height: 50vh;
  position: relative;
  overflow: hidden;
}

/* Section Spacing */
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

/* Home Hero Customization */
.hero-section {
  height: 100vh;
  position: relative;
}

.hero-section .page-hero-container {
  height: 100vh;
}

.text-nav {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 0.3s ease;
}

/* Text Opacity Utilities (Parity & Readability) */
.text-white-10 {
  color: rgba(255, 255, 255, 0.1) !important;
}

.text-white-20 {
  color: rgba(255, 255, 255, 0.2) !important;
}

.text-white-30 {
  color: rgba(255, 255, 255, 0.3) !important;
}

.text-white-40 {
  color: rgba(255, 255, 255, 0.4) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.9) !important;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
}

.hero-btn-primary {
  background-color: var(--color-gold);
  color: var(--color-onyx);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.25rem 3.5rem;
  transition: all 0.3s ease;
  border-radius: 0;
  text-decoration: none;
}

.hero-btn-primary:hover {
  background-color: #e5bf4a;
  color: var(--color-onyx);
  transform: translateY(-2px);
}

.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.hero-dot {
  width: 48px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-dot.active {
  background-color: var(--color-gold);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  opacity: 0.3;
  transition: opacity 0.3s ease;
  font-size: 2rem;
  z-index: 10;
  padding: 1rem;
}

.hero-arrow:hover {
  opacity: 1;
}

.hero-arrow-prev {
  left: 1rem;
}

.hero-arrow-next {
  right: 1rem;
}

.page-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 1;
}

.page-hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Gallery Navigation Overlay */
.image-stack-container {
  position: relative;
}

.gallery-nav-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.image-stack-container:hover .gallery-nav-overlay {
  opacity: 1;
}

.gallery-prev,
.gallery-next {
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--color-gold);
  color: black;
}

.gallery-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 11;
}

.gallery-dot {
  width: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-dot.active {
  width: 24px;
  background: var(--color-gold);
}

.nav-link-custom {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-link-custom::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 1px;
  background-color: var(--color-gold);
  width: 0;
  transition: width 0.3s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 100%;
}

/* Buttons */
.btn-luxury-primary {
  background-color: var(--color-gold);
  color: var(--color-onyx);
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 1.25rem !important;
  transition: all 0.3s ease;
  border-radius: 0;
}

.btn-luxury-primary:hover {
  background-color: #c4a030;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-luxury-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: all 0.3s ease;
  border-radius: 0;
}

.btn-luxury-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Hero Section */
#hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s ease-in-out;
  opacity: 0;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 1));
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Card Stack Effect */
.card-stack-item {
  position: absolute;
  inset: 0;
  background-color: white;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease;
}

/* Page Hero */
.page-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-onyx);
}

.page-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.page-hero-slide.active {
  opacity: 1;
}

/* Vehicle Cards & Stack Effect */
.vehicle-card {
  transition: border-color 0.5s ease;
  background-color: var(--color-rich-black);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vehicle-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.image-stack-container {
  position: relative;
  margin-bottom: 2rem;
}

.image-stack-base-1 {
  position: absolute;
  top: 12px;
  left: 12px;
  right: -3px;
  bottom: -3px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  transform: rotate(1deg);
  transition: all 0.5s ease;
}

.image-stack-base-2 {
  position: absolute;
  top: 6px;
  left: 6px;
  right: -1.5px;
  bottom: -1.5px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transform: rotate(-0.5deg);
  transition: all 0.5s ease;
}

.vehicle-card:hover .image-stack-base-1 {
  transform: rotate(2deg);
  top: 16px;
  left: 16px;
}

.vehicle-card:hover .image-stack-base-2 {
  transform: rotate(-1deg);
  top: 8px;
  left: 8px;
}

.main-image-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.main-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.gallery-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-stack-container:hover .gallery-nav {
  opacity: 1;
}

.gallery-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  color: #000;
  transition: color 0.3s ease;
}

.gallery-btn:hover {
  color: var(--color-gold);
}

.image-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.indicator-dot {
  height: 2px;
  width: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  width: 24px;
  background-color: var(--color-gold);
}

/* Mobile Menu Overlay */
#mobileMenuOverlay {
  position: fixed;
  inset: 0;
  background-color: var(--color-onyx);
  z-index: 2000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#mobileMenuOverlay.active {
  display: flex;
  opacity: 1;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-white);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--color-gold);
}

.mobile-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--color-white);
}

.mobile-menu-logo {
  margin-bottom: 3rem;
}

.mobile-contact-info {
  margin-top: 3rem;
  text-align: center;
}

.mobile-contact-info a {
  display: block;
  color: var(--color-silver);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Typography Helpers */
.font-light {
  font-weight: 300 !important;
}

.italic {
  font-style: italic !important;
}

.tracking-widest {
  letter-spacing: 0.3em !important;
}

/* About Slider */
.about-slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-slider-container {
    height: 600px;
  }
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.about-slide.active {
  opacity: 1;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Hero Slider (Parity) */
.about-slider-wrapper {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 2px;
}

@media (min-width: 992px) {
  .about-slider-wrapper {
    height: 600px;
  }
}

.about-main-slider {
  height: 100%;
  position: relative;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.about-slide.active {
  opacity: 1;
  z-index: 2;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-progress-indicator {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.about-progress-bar {
  flex: 1;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.about-progress-bar .fill {
  position: absolute;
  inset: 0;
  background-color: var(--color-gold);
  transform: translateX(-100%);
}

.about-progress-bar.active .fill {
  transform: translateX(0);
  transition: transform 5s linear;
}

.about-progress-bar.completed .fill {
  transform: translateX(0);
}

/* Quick Booking Section */
.quick-booking-container {
  margin-top: -3rem;
  /* Adjusted from -4rem to match React spacing flow */
  z-index: 100;
  position: relative;
}

.quick-booking-card {
  background: var(--color-onyx);
  border: 4px solid rgba(212, 175, 55, 0.4);
  /* Increased intensity */
  padding: 2.5rem 2rem;
  /* Increased vertical padding */
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.quick-booking-form select,
.quick-booking-form input {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding-left: 3rem !important;
  height: 56px;
  border-radius: 8px !important;
  /* Refined radius */
}

.quick-booking-form select:focus,
.quick-booking-form input:focus {
  border-color: var(--color-gold);
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: none;
  color: white;
}

.quick-booking-form input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  opacity: 1;
}

.quick-booking-form .btn {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  border-radius: 8px !important;
}

.input-icon-wrapper {
  position: relative;
}

.input-icon-wrapper i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
}

/* Fleet Preview Stacked Cards */
.fleet-collection-header {
  margin-bottom: 5rem;
}

.vehicle-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
  height: 100%;
}

.vehicle-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.vehicle-stack-container {
  position: relative;
  width: 85%;
  margin: 2rem auto;
  aspect-ratio: 16/10;
}

.vehicle-stack-item {
  position: absolute;
  inset: 0;
  background: white;
  padding: 8px;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.vehicle-stack-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fan positioning for cards */
.stack-top {
  z-index: 30;
  transform: scale(1) rotate(0) translateY(0);
  opacity: 1;
}

.stack-1 {
  z-index: 20;
  transform: scale(0.95) rotate(8deg) translateY(12px) translateX(15px);
  opacity: 1;
}

.stack-2 {
  z-index: 10;
  transform: scale(0.91) rotate(-12deg) translateY(24px) translateX(-20px);
  opacity: 1;
}

.stack-3 {
  z-index: 5;
  transform: scale(0.87) rotate(15deg) translateY(36px) translateX(25px);
  opacity: 0.8;
}

.vehicle-details {
  padding: 2rem;
  text-align: left;
}

.spec-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  margin: 1.5rem 0;
}

.spec-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
}

.spec-value {
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
}

/* Service Map Section */
#service-map {
  height: 500px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-marker {
  width: 24px;
  height: 24px;
  background: var(--color-gold);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.location-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.location-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.location-item:hover .location-icon-box {
  border-color: var(--color-gold);
}

.location-item:hover i {
  color: var(--color-gold) !important;
}

/* About Story Slider */
.about-story-slider {
  height: 600px;
  position: relative;
  overflow: hidden;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.about-slide.active {
  opacity: 1;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-progress-container {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.about-progress-item {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.about-progress-fill {
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateX(-100%);
  transition: none;
}

.about-progress-item.active .about-progress-fill {
  transform: translateX(0);
  transition: transform 5s linear;
}

.about-progress-item.completed .about-progress-fill {
  transform: translateX(0);
}

/* Page-specific and Extracted Styles */

/* Hero Line (from index.html) */
.hero-line {
  width: 1px;
  height: 64px;
  background-color: var(--color-gold);
  margin-bottom: 2rem;
}

/* Feature Dot (from services.html) */
.feature-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
  display: inline-block;
  margin-right: 12px;
}

/* Partner Logos (from partners.html) */
.partner-logo {
  height: 64px;
  object-fit: contain;
  filter: invert(1) grayscale(1);
  opacity: 0.5;
  transition: all 0.5s ease;
}

.partner-logo:hover {
  filter: invert(1) grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

/* Custom Form Controls (from book-now.html) */
.form-control-custom {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: white;
  padding: 1rem 0;
  transition: border-color 0.3s ease;
  font-weight: 300;
}

.form-control-custom:focus {
  background: transparent;
  box-shadow: none;
  border-color: var(--color-gold);
  color: white;
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-label-custom {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

select.form-control-custom {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(212, 175, 55, 0.5)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 16px 12px;
}

select.form-control-custom option {
  background-color: #0a0a0a;
  color: white;
}

/* Extra Utility Classes for Inline Styles */
.max-w-600 {
  max-width: 600px !important;
}

.max-w-700 {
  max-width: 700px !important;
}

.max-w-800 {
  max-width: 800px !important;
}

.bg-rich-black-custom {
  background-color: #0a0a0a !important;
}

.bg-footer-custom {
  background-color: #050505 !important;
}

.h-40vh {
  height: 40vh !important;
}

/* Hero Slide Backgrounds - Index Page */
.hero-slide-index-1 {
  background-image: url("https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=2000&q=80");
}

.hero-slide-index-2 {
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2000&q=80");
}

.hero-slide-index-3 {
  background-image: url("https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?auto=format&fit=crop&w=2000&q=80");
}

/* Hero Slide Backgrounds - Services Page */
.hero-slide-services-1 {
  background-image: url("https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=2000&q=80");
}

.hero-slide-services-2 {
  background-image: url("https://images.unsplash.com/photo-1540962351504-03099e0a754b?auto=format&fit=crop&w=2000&q=80");
}

.hero-slide-services-3 {
  background-image: url("https://images.unsplash.com/photo-1552519507-da3b142c6e3d?auto=format&fit=crop&w=2000&q=80");
}

/* Hero Slide Backgrounds - Book Now Page */
.hero-slide-book-1 {
  background-image: url("https://images.unsplash.com/photo-1563720223185-11003d516935?auto=format&fit=crop&w=2000&q=80");
}

.hero-slide-book-2 {
  background-image: url("https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?auto=format&fit=crop&w=2000&q=80");
}

.hero-slide-book-3 {
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2000&q=80");
}

/* Hero Slide Backgrounds - About Page */
.hero-slide-about-1 {
  background-image: url("https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=2000&q=80");
}

.hero-slide-about-2 {
  background-image: url("https://images.unsplash.com/photo-1485291571150-772bcfc10da5?auto=format&fit=crop&w=2000&q=80");
}

.hero-slide-about-3 {
  background-image: url("https://images.unsplash.com/photo-1563720223185-11003d516935?auto=format&fit=crop&w=2000&q=80");
}

/* Hero Slide Backgrounds - Contact Page */
.hero-slide-contact-1 {
  background-image: url("https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=2000&q=80");
}

.hero-slide-contact-2 {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=80");
}

.hero-slide-contact-3 {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=2000&q=80");
}

/* Hero Slide Backgrounds - Fleet Page */
.hero-slide-fleet-1 {
  background-image: url("https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?auto=format&fit=crop&w=2000&q=80");
}

.hero-slide-fleet-2 {
  background-image: url("https://images.unsplash.com/photo-1563720223185-11003d516935?auto=format&fit=crop&w=2000&q=80");
}

.hero-slide-fleet-3 {
  background-image: url("https://images.unsplash.com/photo-1631295868223-63265b40d9e4?auto=format&fit=crop&w=2000&q=80");
}

.lh-2 {
  line-height: 2 !important;
}

/* Hero Slide Backgrounds - Partners Page */
.hero-slide-partners-1 {
  background-image: url("https://images.unsplash.com/photo-1563720223185-11003d516935?auto=format&fit=crop&w=2000&q=80");
}

.hero-slide-partners-2 {
  background-image: url("https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?auto=format&fit=crop&w=2000&q=80");
}

.hero-slide-partners-3 {
  background-image: url("https://images.unsplash.com/photo-1631295868223-63265b40d9e4?auto=format&fit=crop&w=2000&q=80");
}

.text-xs-custom {
  font-size: 0.65rem !important;
}

/* UI Refinements */
@media (min-width: 1200px) {
  .container {
    max-width: 1600px !important;
  }
}

.fleet-section-spacer {
  margin-top: 6rem;
}

#fleet-preview {
  padding-top: 8rem !important;
}