﻿:root {
  --bg: #0b0e12;
  --bg-soft: #121720;
  --accent: #ffb800;
  --accent-2: #ff5f2e;
  --accent-3: #4be3ff;
  --text: #f5f6f7;
  --muted: #9aa4af;
  --card: #151c23;
  --stroke: #222b33;
  --glow: rgba(255, 184, 0, 0.4);
  --glow-2: rgba(75, 227, 255, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 20% 20%, #1b232c, var(--bg)),
    radial-gradient(circle at 80% 10%, rgba(75, 227, 255, 0.12), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(255, 95, 46, 0.12), transparent 45%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: rgba(8, 10, 12, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
  animation: headerIn 0.9s ease;
}

.logo {
  font-family: "Anton", sans-serif;
  letter-spacing: 2px;
  font-size: 1.4rem;
}

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

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

.cta,
.ghost {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #111;
  box-shadow: 0 12px 30px rgba(255, 184, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 184, 0, 0.4);
}

.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
}

.cta:hover::after {
  left: 120%;
}

.ghost {
  background: transparent;
  border: 1px solid var(--stroke);
  color: var(--text);
}

.ghost:hover {
  border-color: var(--accent-3);
  box-shadow: 0 12px 30px rgba(75, 227, 255, 0.2);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 96px 6vw 80px;
  align-items: center;
}

.hero-bg span {
  position: absolute;
  border-radius: 50%;
}

.hero-bg span::before {
  content: \"\";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(0px);
  animation: float 12s ease-in-out infinite;
}

.hero-bg span:nth-child(1) {
  width: 240px;
  height: 240px;
  top: -60px;
  left: -40px;
}

.hero-bg span:nth-child(1)::before {
  background: rgba(255, 184, 0, 0.15);
}

.hero-bg span:nth-child(2) {
  width: 320px;
  height: 320px;
  bottom: -80px;
  left: 20%;
}

.hero-bg span:nth-child(2)::before {
  background: rgba(255, 107, 53, 0.2);
  animation-delay: -4s;
}

.hero-bg span:nth-child(3) {
  width: 280px;
  height: 280px;
  top: 20%;
  right: -80px;
}

.hero-bg span:nth-child(3)::before {
  background: rgba(255, 255, 255, 0.05);
  animation-delay: -8s;
}

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

.hero-content {
  position: relative;
  z-index: 1;
}

.tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  margin-bottom: 18px;
  animation: titleGlow 4s ease-in-out infinite;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.hero-stats h3 {
  font-size: 1.6rem;
}

.hero-stats p {
  color: var(--muted);
}

.hero-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, rgba(255, 184, 0, 0.08), rgba(21, 28, 35, 0.9));
  border: 1px solid rgba(255, 184, 0, 0.15);
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(0);
  animation: lift 6s ease-in-out infinite;
}

@keyframes lift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-card-top h2 {
  margin-bottom: 6px;
}

.booking {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.booking label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.booking input,
.booking select {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
}

section {
  padding: 72px 6vw;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  box-shadow: 0 0 20px var(--glow-2);
  transform-origin: left;
  animation: lineSweep 3s ease-in-out infinite;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: start;
}

.car-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  align-self: start;
}

.car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

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

.car-media {
  height: 180px;
  position: relative;
  background: linear-gradient(130deg, rgba(255, 184, 0, 0.2), rgba(255, 107, 53, 0.1));
  overflow: hidden;
}

.car-image {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78%;
  max-height: 120px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
  animation: carFloat 6s ease-in-out infinite;
  z-index: 2;
}

@keyframes carFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-8px); }
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(255, 184, 0, 0.2);
  border: 1px solid rgba(255, 184, 0, 0.5);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.car-shape {
  width: 120%;
  height: 120%;
  position: absolute;
  bottom: -40px;
  left: -10%;
  z-index: 1;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  animation: spin 16s linear infinite;
}

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

.car-body {
  padding: 22px;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.car-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.steps {
  background: var(--bg-soft);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  background: var(--card);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
}

.step h3 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.deals {
  padding-top: 40px;
}

.deal-card {
  background: linear-gradient(130deg, rgba(255, 107, 53, 0.15), rgba(12, 15, 18, 0.9));
  border-radius: 26px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(255, 107, 53, 0.4);
  box-shadow: 0 20px 60px rgba(255, 95, 46, 0.12);
}

.deal-art {
  position: relative;
  min-height: 200px;
}

.deal-art span {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 16px;
  border: 1px solid rgba(255, 184, 0, 0.4);
  transform: rotate(25deg);
  animation: wiggle 6s ease-in-out infinite;
}

.deal-art span:nth-child(2) {
  top: 40px;
  left: 60px;
  border-color: rgba(255, 107, 53, 0.5);
  animation-delay: -3s;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(20deg) translateY(0); }
  50% { transform: rotate(12deg) translateY(-12px); }
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.contact-card {
  background: var(--card);
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
}

.site-footer {
  padding: 32px 6vw 48px;
  border-top: 1px solid var(--stroke);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes headerIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes titleGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(255, 184, 0, 0); }
  50% { text-shadow: 0 12px 40px rgba(255, 184, 0, 0.25); }
}

@keyframes lineSweep {
  0%, 100% { transform: scaleX(0.6); opacity: 0.7; }
  50% { transform: scaleX(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

@media (max-width: 880px) {
  .nav { display: none; }
  .hero { padding-top: 64px; }
}

@media (max-width: 600px) {
  .site-header { flex-wrap: wrap; gap: 12px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

