/* ===== Variables ===== */
:root {
  --bg-dark: #0a0b0f;
  --bg-card: #12141c;
  --bg-elevated: #1a1d28;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dim: rgba(201, 162, 39, 0.15);
  --text: #f0f0f2;
  --text-muted: #8b8d98;
  --accent-blue: #3d7ea6;
  --gradient-gold: linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #c9a227 100%);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===== Animated Background ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.bg-glow--1 {
  top: -200px;
  right: -100px;
  background: var(--gold);
  animation: floatGlow 8s ease-in-out infinite;
}

.bg-glow--2 {
  bottom: -200px;
  left: -100px;
  background: var(--accent-blue);
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

/* ===== Preloader ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulseLogo 1.5s ease-in-out infinite;
}

@keyframes pulseLogo {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.02); }
}

.preloader__bar {
  width: 200px;
  height: 2px;
  background: var(--bg-elevated);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__bar-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-gold);
  animation: loadBar 2s ease forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(10, 11, 15, 0.92);
  backdrop-filter: blur(20px);
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.header__logo span {
  color: var(--gold);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 8rem 4rem 4rem;
  position: relative;
}

.hero__content {
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero__actions.is-visible {
  opacity: 1;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  background: var(--gradient-gold);
  color: var(--bg-dark);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.hero__visual {
  position: relative;
  animation: fadeSlideUp 1s ease 0.5s both;
}

.hero__image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
}

.hero__image-wrap img,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-wrap img {
  animation: kenBurns 15s ease infinite alternate;
}

.hero__video {
  animation: none;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-2%, -1%); }
}

.hero__frame {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  opacity: 0.4;
  animation: frameRotate 20s linear infinite;
}

.hero__frame--tl {
  top: -20px;
  left: -20px;
  border-right: none;
  border-bottom: none;
}

.hero__frame--br {
  bottom: -20px;
  right: -20px;
  border-left: none;
  border-top: none;
  animation-direction: reverse;
}

@keyframes frameRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero__stats {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: var(--bg-card);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 8px;
  padding: 1.25rem 1.75rem;
  display: flex;
  gap: 2rem;
  animation: floatCard 4s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

.stat__number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold-light);
}

.stat__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

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

/* ===== Section Common ===== */
.section {
  padding: 6rem 4rem;
  position: relative;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== About ===== */
.about {
  background: linear-gradient(180deg, transparent, rgba(18, 20, 28, 0.5), transparent);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about__image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), transparent);
  pointer-events: none;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

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

.about__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.highlight {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.highlight:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.highlight__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.highlight__text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Services ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(201, 162, 39, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Vehicles Gallery ===== */
.vehicles {
  background: var(--bg-card);
}

.vehicles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.vehicle-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.vehicle-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.vehicle-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.vehicle-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.vehicle-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 11, 15, 0.88) 0%, rgba(10, 11, 15, 0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 1;
  transform: translateY(0);
  transition: background var(--transition);
}

.vehicle-card:hover .vehicle-card__overlay {
  background: linear-gradient(to top, rgba(10, 11, 15, 0.95) 0%, rgba(10, 11, 15, 0.35) 60%, transparent 100%);
}

.vehicle-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  transform: translateY(0);
}

.vehicle-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ===== Icons (monochrome) ===== */
.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

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

@keyframes iconBreathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes iconDraw {
  0% { stroke-dashoffset: 48; }
  100% { stroke-dashoffset: 0; }
}

.highlight__icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  width: 56px;
  height: 56px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition), background var(--transition);
}

.highlight:hover .highlight__icon {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.highlight__icon .icon {
  width: 26px;
  height: 26px;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: iconDraw 1.2s ease forwards, iconFloat 3.2s ease-in-out 1.2s infinite;
}

.highlight:nth-child(2) .highlight__icon .icon {
  animation-delay: 0.3s, 1.5s;
}

.highlight:nth-child(3) .highlight__icon .icon {
  animation-delay: 0.6s, 1.8s;
}

.contact__icon .icon {
  animation: iconBreathe 3s ease-in-out infinite;
}

.contact__item:nth-child(2) .contact__icon .icon { animation-delay: 0.4s; }
.contact__item:nth-child(3) .contact__icon .icon { animation-delay: 0.8s; }
.contact__item:nth-child(4) .contact__icon .icon { animation-delay: 1.2s; }

.contact__item:hover .contact__icon .icon {
  animation: none;
  transform: scale(1.12) rotate(-6deg);
  opacity: 1;
}

.footer__social a .icon {
  animation: iconBreathe 2.8s ease-in-out infinite;
}

.footer__social a:nth-child(2) .icon { animation-delay: 0.35s; }
.footer__social a:nth-child(3) .icon { animation-delay: 0.7s; }

.footer__social a:hover .icon {
  animation: none;
  transform: scale(1.15);
  opacity: 1;
}

/* ===== Typewriter ===== */
.typewriter::after {
  content: '|';
  margin-left: 2px;
  color: var(--gold);
  animation: blinkCursor 0.8s step-end infinite;
}

.typewriter.is-done::after {
  display: none;
}

.typewriter--gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typewriter--gold::after {
  -webkit-text-fill-color: var(--gold);
}

@keyframes blinkCursor {
  50% { opacity: 0; }
}

/* ===== Typewriter Band ===== */
.typewriter-band {
  padding: 2rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 88px;
}

.typewriter-band__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--text-muted);
  text-align: center;
  min-height: 1.5em;
}

.typewriter-band__cursor {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gold);
  animation: blinkCursor 0.8s step-end infinite;
}

.typewriter-band__cursor.is-hidden {
  opacity: 0;
}

/* ===== Process ===== */
.process__steps {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: linePulse 3s ease infinite;
}

@keyframes linePulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.process__step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.process__circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process__step:hover .process__circle {
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
}

.process__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process__text {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 180px;
  margin: 0 auto;
}

/* ===== Contact ===== */
.contact {
  background: linear-gradient(180deg, transparent, rgba(18, 20, 28, 0.8));
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__info--centered {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition), border-color var(--transition);
}

.contact__item:hover .contact__icon {
  transform: scale(1.08);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact__value {
  font-size: 1rem;
  color: var(--text);
}

.contact__value a:hover {
  color: var(--gold-light);
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2.5rem;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.form__submit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.form__submit:hover::after {
  width: 300px;
  height: 300px;
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 4rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.footer__logo span {
  color: var(--gold);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.footer__social a .icon {
  width: 18px;
  height: 18px;
}

.footer__social a:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
  transform: translateY(-4px);
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 6, 10, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__inner {
  width: min(92vw, 1200px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.lightbox__image {
  width: 100%;
  max-height: calc(90vh - 100px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.lightbox.is-open .lightbox__image {
  transform: scale(1);
}

.lightbox__caption {
  text-align: center;
}

.lightbox__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.lightbox__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.lightbox__counter {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.lightbox__nav:hover {
  transform: translateY(-50%) scale(1.05);
}

body.lightbox-open {
  overflow: hidden;
}

/* ===== Cursor Trail (optional decorative) ===== */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
  mix-blend-mode: difference;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 4rem;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    left: 50%;
    transform: translateX(-50%);
  }

  .about__grid,
  .contact__wrapper {
    grid-template-columns: 1fr;
  }

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

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

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

  .process__steps {
    flex-direction: column;
    gap: 2rem;
  }

  .process__steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav.open {
    right: 0;
  }

  .burger {
    display: flex;
  }

  .section {
    padding: 4rem 1.5rem;
  }

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

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

  .contact__info--centered {
    grid-template-columns: 1fr;
  }

  .header {
    padding: 1rem 1.5rem;
  }

  .typewriter-band {
    padding: 1.5rem;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }

  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }

  .lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
  }
}
