/* ================================================================
   CAPACITY ELITE — Master Stylesheet
   Design: Black & Gold Luxury | LuxeDrive aesthetic
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ────────────────────────────────────────────── */
:root {
  --black:      #080808;
  --dark:       #0f0f0f;
  --dark2:      #161616;
  --dark3:      #1e1e1e;
  --dark4:      #262626;
  --gold:       #c9a84c;
  --gold2:      #e8c870;
  --gold3:      #a88530;
  --gold-pale:  rgba(201,168,76,0.1);
  --gold-glow:  rgba(201,168,76,0.25);
  --white:      #ffffff;
  --off-white:  #f0ede8;
  --gray:       #888888;
  --light-gray: #bbbbbb;
  --border:     rgba(255,255,255,0.08);
  --border-gold: rgba(201,168,76,0.3);

  --serif:  'Cormorant Garant', 'Times New Roman', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--sans); }
::selection { background: var(--gold); color: var(--black); }

/* ── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold3); border-radius: 2px; }

/* ── TYPOGRAPHY ────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--serif); font-weight: 400; line-height: 1.2; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title strong {
  font-weight: 600;
}
.section-subtitle {
  font-size: 15px;
  color: var(--gray);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.8;
}

/* ── LAYOUT ────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3  { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-sm { padding: 10px 24px; font-size: 10px; letter-spacing: 2px; }

/* ── DIVIDER ───────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-gold);
}
.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── GOLD LINE ─────────────────────────────────────────── */
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}
.gold-line-center { margin: 0 auto 28px; }

/* ── HEADER ────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: stretch;
  height: 80px;
  padding: 0 50px;
}
#header.transparent .header-inner { background: transparent; }
#header.solid .header-inner {
  background: var(--dark);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 200px;
}
.header-logo img { height: 52px; width: auto; }

.header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.header-nav a:hover,
.header-nav a.active { color: var(--gold); }
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark2);
  border: 1px solid var(--border-gold);
  min-width: 180px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s var(--ease);
  pointer-events: none;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 9px 22px;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--light-gray);
  transition: all 0.2s;
}
.dropdown a:hover { color: var(--gold); background: var(--gold-pale); padding-left: 28px; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}
.header-phone .phone-icon {
  width: 34px; height: 34px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  transition: all 0.3s;
}
.header-phone:hover .phone-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  overflow-y: auto;
  padding: 30px 40px;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-gold);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ── HERO ──────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

/* Dark gradient overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0.1) 40%, rgba(8,8,8,0.4) 70%, rgba(8,8,8,0.92) 100%),
    linear-gradient(to right, rgba(8,8,8,0.6) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  margin-top: -80px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(50px, 7vw, 90px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s var(--ease-out) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s var(--ease-out) forwards;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s var(--ease-out) forwards;
}

/* Booking bar */
.booking-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-gold);
}
.booking-bar-inner {
  display: flex;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
}
.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.booking-field:first-child { padding-left: 0; }
.booking-field label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.booking-field input,
.booking-field select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  font-family: var(--sans);
  width: 100%;
}
.booking-field input::placeholder { color: var(--gray); }
.booking-field select { cursor: pointer; }
.booking-field select option { background: var(--dark2); color: var(--white); }
.booking-submit {
  display: flex;
  align-items: center;
  padding-left: 24px;
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active { background: var(--gold); }

/* ── PAGE HEADER (inner pages) ─────────────────────────── */
.page-header {
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 80px;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.5), rgba(8,8,8,0.75));
}
.page-header-content { position: relative; z-index: 2; }
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.breadcrumb {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
}
.breadcrumb span { color: var(--gold); }

/* ── INTRO STRIP ───────────────────────────────────────── */
.intro-strip {
  background: var(--dark2);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 50px 0;
}
.intro-strip-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.intro-text { flex: 1; }
.intro-text p {
  font-size: 16px;
  color: var(--light-gray);
  font-weight: 300;
  line-height: 1.9;
}
.intro-phone {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.intro-phone-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}
.intro-phone-text span {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.intro-phone-text a {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}
.intro-phone-text a:hover { color: var(--gold); }

/* ── VEHICLE CARDS ─────────────────────────────────────── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.vehicle-card {
  position: relative;
  background: var(--dark2);
  overflow: hidden;
  cursor: pointer;
  group: true;
}
.vehicle-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.vehicle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.06); }
.vehicle-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 60%);
}
.vehicle-card-body {
  padding: 24px 28px 28px;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.vehicle-card:hover .vehicle-card-body { border-color: var(--border-gold); }
.vehicle-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.vehicle-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  transition: color 0.3s;
}
.vehicle-card:hover .vehicle-name { color: var(--gold); }
.vehicle-desc {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
}
.vehicle-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.vehicle-price .from { font-size: 11px; color: var(--gray); letter-spacing: 1px; }
.vehicle-price .amount {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}
.vehicle-price .period { font-size: 12px; color: var(--gray); }
.vehicle-card-footer {
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark3);
}
.vehicle-specs {
  display: flex;
  gap: 20px;
}
.vehicle-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gray);
}
.vehicle-spec .icon { color: var(--gold); font-size: 13px; }
.vehicle-book {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.vehicle-book::after {
  content: '→';
  transition: transform 0.3s;
}
.vehicle-card:hover .vehicle-book { gap: 12px; }

/* Coming soon card */
.vehicle-card.coming-soon .vehicle-card-img {
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 8px 20px;
}

/* ── FEATURES SECTION ──────────────────────────────────── */
.features-section {
  background: var(--dark2);
}
.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.features-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.features-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--dark2));
}
.features-content {
  padding: 80px 70px;
}
.feature-item {
  display: flex;
  gap: 24px;
  margin-bottom: 42px;
}
.feature-item:last-child { margin-bottom: 0; }
.feature-icon-wrap {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.feature-item:hover .feature-icon-wrap {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.feature-text h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-text p {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.8;
}

/* ── DARK CTA SECTION ──────────────────────────────────── */
.dark-cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.dark-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.dark-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.5) 60%, rgba(8,8,8,0.2) 100%);
}
.dark-cta-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 560px;
}
.dark-cta h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.dark-cta p {
  font-size: 15px;
  color: var(--light-gray);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 36px;
}

/* ── STATS ─────────────────────────────────────────────── */
.stats-section {
  position: relative;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.85);
}
.stats-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 70px 20px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.6s var(--ease);
}
.stat-item:hover::before { width: 60%; }
.stat-number {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--light-gray);
}

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-section {
  background: var(--dark2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testimonial-card {
  background: var(--dark3);
  padding: 42px 38px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-bottom-color: var(--gold);
  background: var(--dark4);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.star { color: var(--gold); font-size: 13px; }
.testimonial-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  display: block;
}
.author-city {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
}

/* ── PRICING ───────────────────────────────────────────── */
.pricing-section {
  background: var(--black);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.pricing-card {
  background: var(--dark2);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  border-top: 3px solid transparent;
}
.pricing-card.featured {
  background: var(--dark3);
  border-top-color: var(--gold);
}
.pricing-card:hover {
  background: var(--dark3);
  border-top-color: var(--gold);
  transform: translateY(-4px);
}
.pricing-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
}
.pricing-car-img {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.pricing-car-img img { max-height: 100%; width: auto; filter: brightness(0.9); transition: filter 0.3s; }
.pricing-card:hover .pricing-car-img img { filter: brightness(1.1); }
.pricing-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}
.pricing-price {
  margin-bottom: 28px;
}
.pricing-price .from { font-size: 12px; color: var(--gray); display: block; margin-bottom: 6px; }
.pricing-price .amount {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.pricing-price .unit { font-size: 14px; color: var(--gray); }
.pricing-divider {
  width: 40px; height: 1px;
  background: var(--border-gold);
  margin: 0 auto 24px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}
.pricing-features li {
  font-size: 13px;
  color: var(--light-gray);
  font-weight: 300;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '◆';
  font-size: 6px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── YACHT SECTION ─────────────────────────────────────── */
.yacht-section {
  position: relative;
  overflow: hidden;
}
.yacht-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}
.yacht-section:hover .yacht-bg { transform: scale(1.03); }
.yacht-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.6) 60%, rgba(8,8,8,0.3) 100%);
}
.yacht-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  max-width: 620px;
}
.yacht-content .gold-line { background: linear-gradient(to right, var(--gold), transparent); width: 80px; }
.yacht-content h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.yacht-content p {
  font-size: 15px;
  color: var(--light-gray);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 16px;
}
.yacht-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}
.yacht-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--light-gray);
  font-weight: 400;
}
.yacht-feature-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.yacht-btns { display: flex; gap: 14px; }

/* ── PROMO BAR ─────────────────────────────────────────── */
.promo-bar {
  background: var(--gold);
  padding: 26px 40px;
}
.promo-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.promo-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--black);
}
.promo-text span { font-style: italic; }

/* ── CONTACT BAR ───────────────────────────────────────── */
.contact-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
}
.contact-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.contact-bar-item {
  padding: 0 40px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-bar-item:last-child { border-right: none; }
.contact-bar-item:first-child { padding-left: 0; }
.contact-bar-icon {
  width: 46px; height: 46px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-bar-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.contact-bar-value {
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
}
.contact-bar-value a { transition: color 0.3s; }
.contact-bar-value a:hover { color: var(--gold); }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border-gold);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding: 70px 0 50px;
}
.footer-brand .logo-wrap { margin-bottom: 24px; }
.footer-brand .logo-wrap img { height: 52px; }
.footer-brand p {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 13px;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-gold);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col a::before {
  content: '◆';
  font-size: 5px;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-col a:hover::before { opacity: 1; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
}
.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
}
.footer-bottom a { transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── FLEET PAGE ────────────────────────────────────────── */
.fleet-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 50px;
}
.filter-btn {
  padding: 8px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.fleet-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}

/* ── VEHICLE SINGLE ────────────────────────────────────── */
.vehicle-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3px;
  margin-bottom: 60px;
}
.vehicle-gallery-main img { width: 100%; height: 460px; object-fit: cover; }
.vehicle-gallery-thumbs { display: flex; flex-direction: column; gap: 3px; }
.vehicle-gallery-thumbs img { flex: 1; object-fit: cover; min-height: 0; }
.vehicle-info-grid { display: grid; grid-template-columns: 1fr 380px; gap: 50px; }
.vehicle-specs-table { width: 100%; border-collapse: collapse; margin-top: 30px; }
.vehicle-specs-table td {
  padding: 14px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}
.vehicle-specs-table td:first-child { color: var(--gray); width: 40%; }
.vehicle-specs-table td:last-child { color: var(--white); font-weight: 500; }
.booking-widget {
  background: var(--dark2);
  border: 1px solid var(--border-gold);
  padding: 36px;
  position: sticky;
  top: 100px;
}
.booking-widget h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.booking-widget .price {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 28px;
  line-height: 1;
}
.booking-widget .price span { font-size: 15px; color: var(--gray); }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark3);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--gray); }
.form-control option { background: var(--dark2); }

/* ── BOOKING PAGE ──────────────────────────────────────── */
.booking-section {
  background: var(--dark2);
  padding: 80px 0;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}
.booking-form-wrap {
  background: var(--dark3);
  border: 1px solid var(--border-gold);
  padding: 48px;
}
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.booking-info-card {
  background: var(--dark3);
  border: 1px solid var(--border-gold);
  padding: 30px;
}
.booking-info-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group-full { grid-column: 1 / -1; }
textarea.form-control { min-height: 100px; resize: vertical; }

/* ── ABOUT PAGE ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img { position: relative; }
.about-img img { width: 100%; }
.about-img-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--border-gold);
  z-index: -1;
}
.about-img-years {
  position: absolute;
  top: 30px;
  right: -30px;
  background: var(--gold);
  color: var(--black);
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-img-years .num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.about-img-years .label { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* ── CONTACT PAGE ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: start;
}
.map-embed { width: 100%; height: 400px; border: 1px solid var(--border-gold); filter: grayscale(100%) invert(1); }

/* ── YACHT PAGE ────────────────────────────────────────── */
.yacht-page-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}
.yacht-fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.yacht-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.yacht-card-img { height: 380px; overflow: hidden; }
.yacht-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.yacht-card:hover .yacht-card-img img { transform: scale(1.05); }
.yacht-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 36px;
  transition: background 0.4s;
}
.yacht-card:hover .yacht-card-overlay { background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.3) 50%); }
.yacht-card-info h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  transition: color 0.3s;
}
.yacht-card:hover .yacht-card-info h3 { color: var(--gold); }
.yacht-card-info .yacht-type {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.yacht-card-info .yacht-price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
}
.yacht-coming-soon {
  background: var(--dark3);
  border: 1px dashed var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  padding: 40px;
}

/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.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; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .features-inner { grid-template-columns: 1fr; }
  .features-image { min-height: 320px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .vehicle-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container, .container-sm { padding: 0 20px; }
  .section { padding: 60px 0; }
  .header-inner { padding: 0 20px; }
  .header-nav, .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .hero-title { font-size: 42px; }
  .booking-bar-inner { flex-direction: column; height: auto; padding: 20px; gap: 16px; }
  .booking-field { border-right: none; padding: 0; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
  .booking-submit { padding: 0; }
  .fleet-grid, .fleet-page-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-bar-grid { grid-template-columns: 1fr; }
  .contact-bar-item { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 0; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .intro-strip-inner { flex-direction: column; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .yacht-fleet-grid { grid-template-columns: 1fr; }
  .dark-cta-content { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .promo-bar-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 28px 20px; }
}
