/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
  --bg: #05060a;
  --bg-2: #0a0d18;
  --surface: rgba(20, 24, 40, 0.6);
  --surface-hover: rgba(30, 36, 60, 0.8);
  --border: rgba(120, 140, 220, 0.15);
  --border-hi: rgba(0, 229, 255, 0.4);
  --text: #e6ecff;
  --text-dim: #8a92b2;
  --accent-1: #00e5ff;
  --accent-2: #7c5cff;
  --accent-3: #ff3d8a;
  --glow: 0 0 40px rgba(0, 229, 255, 0.25);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========== BACKGROUND EFFECTS ========== */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 140, 220, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 140, 220, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 800px;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 229, 255, 0.15), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(124, 92, 255, 0.18), transparent 55%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(40px); }
}

/* ========== LAYOUT ========== */
.header, .hero, .section, .footer { position: relative; z-index: 1; }

/* ========== HEADER ========== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(5, 6, 10, 0.6);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
}

.logo-mark {
  color: var(--accent-1);
  font-size: 24px;
  text-shadow: 0 0 12px var(--accent-1);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: rotate(0deg); }
  50% { opacity: 0.6; transform: rotate(180deg); }
}

.logo-accent {
  color: var(--accent-1);
}

.nav {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}

.nav a {
  color: var(--text-dim);
  transition: color 0.2s ease;
  position: relative;
}

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

.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-1);
  transition: width 0.3s ease;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  color: #06070d;
  font-weight: 600;
  box-shadow: 0 4px 30px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 229, 255, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hi);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; padding: 16px; }

.arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ========== HERO ========== */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 48px 120px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - 80px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-1);
  box-shadow: 0 0 10px var(--accent-1);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 60%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid var(--border);
  border-radius: 50%;
  border-top-color: var(--accent-1);
  animation: spin 20s linear infinite;
}

.orbit-2 {
  width: 280px;
  height: 280px;
  border-color: var(--border);
  border-right-color: var(--accent-2);
  animation: spin 14s linear infinite reverse;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.car-glyph {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.5));
}

.car-glyph svg { width: 320px; height: auto; }

/* ========== SECTIONS ========== */
.section {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-head.left { text-align: left; margin: 0 0 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--accent-1);
  margin-bottom: 16px;
}

.section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-head p {
  color: var(--text-dim);
  font-size: 17px;
}

/* ========== CARDS (Services) ========== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(135deg, transparent, rgba(0, 229, 255, 0.4), transparent);
  border-radius: 16px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  background: var(--surface-hover);
  border-color: var(--border-hi);
}

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

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(124, 92, 255, 0.1));
  border: 1px solid var(--border-hi);
  border-radius: 12px;
  font-size: 22px;
  color: var(--accent-1);
  margin-bottom: 20px;
}

.card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.card p {
  color: var(--text-dim);
  font-size: 15px;
}

.card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-1);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ========== FLEET ========== */
.fleet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.fleet-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.fleet-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.04) 100%);
  pointer-events: none;
}

.fleet-card.featured {
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.06) 0%, rgba(124, 92, 255, 0.04) 100%);
  border-color: var(--border-hi);
  box-shadow: var(--glow);
}

.fleet-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hi);
}

.fleet-tag {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 16px;
}

.fleet-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  margin-bottom: 24px;
}

.fleet-card ul li {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 15px;
  position: relative;
  padding-left: 22px;
}

.fleet-card ul li::before {
  content: '◇';
  position: absolute;
  left: 0;
  color: var(--accent-1);
}

/* ========== ABOUT ========== */
.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 { margin-top: 16px; }

.about-text p {
  color: var(--text-dim);
  margin-bottom: 16px;
  font-size: 16px;
}

.checklist {
  margin-top: 28px;
}

.checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  color: var(--text);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #000;
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
}

.about-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 20px;
  padding: 56px 40px 40px;
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
  color: var(--text);
  box-shadow: var(--glow);
}

.quote-mark {
  position: absolute;
  top: -10px;
  left: 32px;
  font-family: 'Orbitron', sans-serif;
  font-size: 80px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

/* ========== CONTACT ========== */
.section-contact {
  padding-bottom: 140px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s ease;
}

a.contact-line:hover {
  border-color: var(--border-hi);
  background: var(--surface-hover);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(124, 92, 255, 0.12));
  border: 1px solid var(--border-hi);
  border-radius: 12px;
  color: var(--accent-1);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
}

.contact-value {
  font-size: 16px;
  color: var(--text);
  margin-top: 2px;
}

/* Form */
.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form input,
.form textarea {
  background: rgba(5, 6, 10, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  text-transform: none;
  letter-spacing: normal;
  transition: all 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  background: rgba(5, 6, 10, 0.9);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form textarea { resize: vertical; }

.form-note {
  margin-top: 4px;
  font-size: 14px;
  color: var(--accent-1);
  min-height: 20px;
}

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 48px 32px;
  background: rgba(5, 6, 10, 0.6);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.footer-text {
  color: var(--text-dim);
  font-size: 14px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.footer-links a {
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--accent-1); }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .header { padding: 16px 24px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(5,6,10,0.95); flex-direction: column; padding: 24px; border-bottom: 1px solid var(--border); gap: 20px; }
  .nav.open { display: flex; }
  .menu-toggle { display: flex; }
  .header .btn { display: none; }
  .hero { grid-template-columns: 1fr; padding: 40px 24px 80px; gap: 40px; }
  .hero-visual { height: 320px; }
  .orbit { width: 300px; height: 300px; }
  .orbit-2 { width: 200px; height: 200px; }
  .car-glyph svg { width: 240px; }
  .section { padding: 80px 24px; }
  .about { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .hero-stats { gap: 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .stat-num { font-size: 26px; }
  .btn { padding: 12px 22px; font-size: 14px; }
}

/* ========== REVEAL ANIM ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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