/* ===== 40 CAR RENTALS — Ultra Luxury Design System ===== */

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@200;300;400;500;600&family=Playfair+Display:wght@400;700;900&display=swap');

:root {
  --bg: #050505;
  --bg-deep: #000000;
  --surface: #0C0C0C;
  --surface-elevated: #141414;
  --surface-hover: #1A1A1A;
  --border-subtle: rgba(180, 180, 180, 0.08);
  --border-medium: rgba(180, 180, 180, 0.15);

  --white: #FFFFFF;
  --off-white: #F0F0F0;
  --silver: #A8A8A8;
  --chrome: #C8C8C8;
  --platinum: #D8D8D8;
  --gold: #C9A84C;
  --gold-muted: rgba(201, 168, 76, 0.6);

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ===== Subtle Grain Texture Overlay ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== Typography ===== */

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.display-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
}

.label-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--silver);
}

/* ===== Layout ===== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 120px 0;
  position: relative;
}

/* Decorative dividers */
.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--chrome), transparent);
  margin: 0 auto;
}

.divider-wide {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--chrome) 30%, var(--chrome) 70%, transparent);
  margin: 0 auto;
}

.divider-star {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.divider-star::before,
.divider-star::after {
  content: '';
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--chrome));
}

.divider-star::after {
  background: linear-gradient(90deg, var(--chrome), transparent);
}

.divider-star span {
  font-size: 0.55rem;
  color: var(--chrome);
  line-height: 1;
}

/* ===== Scroll Animations ===== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.5s var(--ease-luxury);
}

nav.scrolled {
  padding: 16px 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
}

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

/* Nav Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 0.3s var(--ease-luxury);
}

nav.scrolled .nav-logo-img {
  width: 38px;
  height: 38px;
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--silver);
  margin-top: 3px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--silver);
  transition: color 0.3s var(--ease-luxury);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--chrome);
  transition: width 0.4s var(--ease-luxury);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--chrome);
  transition: all 0.3s var(--ease-luxury);
}

/* ===== Buttons ===== */

.btn {
  display: inline-block;
  padding: 16px 44px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
  border: none;
  position: relative;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-medium);
  color: var(--chrome);
}

.btn-ghost:hover {
  border-color: var(--chrome);
  color: var(--white);
  background: rgba(200, 200, 200, 0.05);
}

.btn-solid {
  background: var(--white);
  color: var(--bg);
}

.btn-solid:hover {
  background: var(--chrome);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08);
}

.btn-chrome {
  background: linear-gradient(135deg, var(--chrome), var(--silver));
  color: var(--bg);
  font-weight: 600;
}

.btn-chrome:hover {
  background: linear-gradient(135deg, var(--white), var(--chrome));
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(200, 200, 200, 0.15);
}

.btn-lg {
  padding: 20px 64px;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
}

/* ===== Hero — Full Viewport ===== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  transform: scale(1.08);
}

.hero-slideshow .slide.active {
  opacity: 1;
  animation: heroZoom 8s ease-in-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.75) 70%,
    rgba(5, 5, 5, 1) 100%
  );
  z-index: 1;
}

/* Vignette overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-emblem {
  width: clamp(140px, 22vw, 220px);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(200, 200, 200, 0.1));
  animation: emblemReveal 1.5s var(--ease-luxury) forwards;
  opacity: 0;
}

@keyframes emblemReveal {
  0% {
    opacity: 0;
    transform: scale(0.9);
    filter: drop-shadow(0 0 0px rgba(200, 200, 200, 0));
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 60px rgba(200, 200, 200, 0.1));
  }
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--silver);
  letter-spacing: 0.08em;
  animation: fadeUp 1s var(--ease-luxury) 0.6s forwards;
  opacity: 0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--silver);
  animation: fadeUp 1s var(--ease-luxury) 0.9s forwards;
  opacity: 0;
}

.hero-cta {
  animation: fadeUp 1s var(--ease-luxury) 1.2s forwards;
  opacity: 0;
  margin-top: 8px;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator .scroll-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(168, 168, 168, 0.4);
}

.scroll-indicator .scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(168, 168, 168, 0.4), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
  50% { opacity: 0.7; transform: scaleY(1); }
}

/* ===== Intro / Welcome Section ===== */

.intro {
  padding: 140px 0;
  background: var(--bg);
  text-align: center;
}

.intro-content {
  max-width: 680px;
  margin: 0 auto;
}

.intro-label {
  display: block;
  margin-bottom: 28px;
}

.intro h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: none;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 28px;
  color: var(--off-white);
}

.intro p {
  font-size: 1rem;
  color: var(--silver);
  line-height: 1.9;
  margin-bottom: 48px;
  font-weight: 300;
}

/* ===== Events We Serve ===== */

.events-section {
  padding: 120px 0;
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  font-size: 0.95rem;
  color: var(--silver);
  max-width: 500px;
  margin: 20px auto 0;
  line-height: 1.7;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
}

.event-card {
  background: var(--surface);
  padding: 56px 36px;
  text-align: center;
  transition: all 0.5s var(--ease-luxury);
  position: relative;
}

.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 200, 200, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxury);
}

.event-card:hover {
  background: var(--surface-elevated);
}

.event-card:hover::before {
  opacity: 1;
}

.event-icon {
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: block;
  opacity: 0.7;
}

.event-card h3 {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  color: var(--off-white);
}

.event-card p {
  font-size: 0.82rem;
  color: var(--silver);
  line-height: 1.6;
}

/* ===== How It Works ===== */

.how-it-works {
  background: var(--bg);
  padding: 120px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}

/* Connecting line between steps */
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-medium) 15%, var(--border-medium) 85%, transparent);
}

.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--chrome);
  width: 64px;
  height: 64px;
  line-height: 64px;
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  margin: 0 auto 28px;
  position: relative;
  background: var(--bg);
  z-index: 1;
  transition: all 0.4s var(--ease-luxury);
}

.step:hover .step-number {
  border-color: var(--chrome);
  box-shadow: 0 0 24px rgba(200, 200, 200, 0.05);
}

.step h3 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  color: var(--off-white);
}

.step p {
  font-size: 0.82rem;
  color: var(--silver);
  line-height: 1.6;
}

/* ===== Fleet Preview (Homepage) ===== */

.fleet-preview {
  padding: 120px 0;
  background: var(--surface);
}

.fleet-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.fleet-preview-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.fleet-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

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

.fleet-preview-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.4s var(--ease-luxury);
}

.fleet-preview-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.fleet-preview-card h3 {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.fleet-preview-card .card-price {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--silver);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== CTA Banner ===== */

.cta-banner {
  background: var(--bg);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 200, 200, 0.02), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: none;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--silver);
  font-size: 0.95rem;
  margin-bottom: 44px;
  letter-spacing: 0.02em;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== Exclusivity Bar ===== */

.exclusivity-bar {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 32px 0;
  text-align: center;
}

.exclusivity-bar p {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--silver);
}

/* ===== Fleet Header (fleet.html) ===== */

.fleet-header {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--bg);
}

.fleet-header h1 {
  margin-bottom: 20px;
  font-weight: 400;
}

.fleet-header .divider {
  margin-bottom: 28px;
}

.fleet-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--silver);
  font-weight: 300;
}

/* ===== Fleet Showcase (fleet.html) ===== */

.fleet-section {
  padding: 40px 0 100px;
}

.fleet-showcase {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
  padding-bottom: 120px;
  border-bottom: 1px solid var(--border-subtle);
}

.fleet-showcase:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.fleet-showcase.reverse {
  grid-template-columns: 1fr 1.3fr;
}

.fleet-showcase.reverse .fleet-showcase-img {
  order: 2;
}

.fleet-showcase.reverse .fleet-showcase-info {
  order: 1;
}

.fleet-showcase-img {
  overflow: hidden;
  position: relative;
}

.fleet-showcase-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-subtle);
  pointer-events: none;
}

.fleet-showcase-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.fleet-showcase-img:hover img {
  transform: scale(1.04);
}

.fleet-showcase-info .label-text {
  display: block;
  margin-bottom: 12px;
  color: var(--chrome);
}

.fleet-showcase-info h2 {
  margin-bottom: 8px;
  font-weight: 400;
}

.fleet-showcase-model {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--silver);
  margin-bottom: 28px;
}

.fleet-showcase-tagline {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 32px;
}

.pricing-row {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.price-tag {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-tag .price-amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}

.price-tag .price-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--silver);
}

.event-types {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.event-types li {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--silver);
  padding: 8px 16px;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease-luxury);
}

.event-types li:hover {
  border-color: var(--border-medium);
  color: var(--chrome);
}

.fleet-showcase .btn {
  padding: 14px 36px;
}

/* ===== Pricing Note ===== */

.pricing-note {
  padding: 40px 0 100px;
}

.note-box {
  background: var(--surface);
  border-left: 1px solid var(--chrome);
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
}

.note-box h3 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  color: var(--chrome);
}

.note-box p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.9;
  margin-bottom: 10px;
}

.note-box p:last-child {
  margin-bottom: 0;
}

.note-box a {
  color: var(--white);
  border-bottom: 1px solid var(--border-medium);
  transition: all 0.3s ease;
}

.note-box a:hover {
  color: var(--chrome);
  border-color: var(--chrome);
}

.note-box strong {
  color: var(--white);
  font-weight: 500;
}

/* ===== Inquiry Page ===== */

.inquiry-section {
  padding: 160px 0 120px;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.inquiry-intro h1 {
  margin-bottom: 24px;
  font-weight: 400;
}

.inquiry-intro .display-text {
  font-size: 1.15rem;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 20px;
}

.inquiry-intro p {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 48px;
}

.inquiry-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inquiry-contact-info a {
  font-size: 0.95rem;
  color: var(--silver);
  transition: color 0.3s ease;
}

.inquiry-contact-info a:hover {
  color: var(--white);
}

.inquiry-contact-info .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(168, 168, 168, 0.5);
  margin-bottom: -8px;
}

/* Vetting notice */
.vetting-notice {
  margin-top: 40px;
  padding: 28px;
  border: 1px solid var(--border-subtle);
  background: var(--surface);
}

.vetting-notice h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--chrome);
  margin-bottom: 12px;
}

.vetting-notice p {
  font-size: 0.82rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Form Styles */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-section-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--chrome);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
  margin-top: 16px;
}

.form-section-label:first-child {
  margin-top: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--silver);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  color: var(--white);
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--chrome);
  box-shadow: 0 0 0 1px rgba(200, 200, 200, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(168, 168, 168, 0.3);
  font-weight: 300;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23A8A8A8' d='M5 7L1 3h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-group select option {
  background: var(--surface);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-hint {
  font-size: 0.7rem;
  color: rgba(168, 168, 168, 0.4);
  margin-top: -4px;
  font-weight: 300;
}

.inquiry-form .btn {
  width: 100%;
  text-align: center;
  margin-top: 12px;
  padding: 18px 44px;
}

/* ===== Footer ===== */

footer {
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 48px;
  background: var(--bg-deep);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.8;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand-sub {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--silver);
  margin-top: 2px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-info p {
  font-size: 0.8rem;
  color: var(--silver);
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-socials {
  display: flex;
  gap: 28px;
}

.footer-socials a {
  color: var(--silver);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
}

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

.footer-legal {
  font-size: 0.65rem;
  color: rgba(168, 168, 168, 0.3);
  letter-spacing: 0.05em;
}

.footer-copyright {
  width: 100%;
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.65rem;
  color: rgba(168, 168, 168, 0.3);
  letter-spacing: 0.08em;
}

/* ===== Responsive ===== */

@media (max-width: 968px) {
  .fleet-showcase,
  .fleet-showcase.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fleet-showcase.reverse .fleet-showcase-img,
  .fleet-showcase.reverse .fleet-showcase-info {
    order: unset;
  }

  .fleet-showcase-img img {
    height: 340px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .steps::before {
    display: none;
  }

  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-preview-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .fleet-preview-card {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .container {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 99;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.25em;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
  }

  .intro {
    padding: 100px 0;
  }

  .btn-lg {
    padding: 18px 44px;
    font-size: 0.72rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .fleet-header {
    padding: 140px 0 60px;
  }

  .pricing-row {
    flex-direction: column;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    text-align: center;
    align-items: center;
  }

  .cta-actions {
    flex-direction: column;
  }

  .note-box {
    padding: 32px;
  }

  .fleet-showcase {
    margin-bottom: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .hero-emblem {
    width: 130px;
  }

  .fleet-showcase-img img {
    height: 260px;
  }

  .nav-logo-text {
    display: none;
  }

  .event-card {
    padding: 40px 24px;
  }
}
