:root {
  --midnight: #0d1b2a;
  --charcoal: #1b2838;
  --accent: #e8a020;
  --accent-light: #f0b840;
  --silver: #c8cdd6;
  --silver-dim: #6b7280;
  --white: #f5f6f8;
  --hairline: rgba(232,160,32,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--midnight);
  color: var(--silver);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .nav__name, .stats__value, .section__label, .eyebrow, .btn, .footer__badge {
  font-family: 'Rajdhani', sans-serif;
}

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

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,27,42,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow 0.3s;
}
.nav--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.5rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.75rem; }
.nav__logo { width: 52px; height: 52px; border-radius: 50%; }
.nav__name { font-weight: 700; font-size: 1.1rem; color: var(--white); text-transform: uppercase; letter-spacing: 0.05em; }
.nav__of { color: var(--accent); }
.nav__links { display: flex; gap: 1.5rem; }
.nav__links a { color: var(--silver); font-family: 'Rajdhani', sans-serif; font-weight: 500; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.03em; transition: color 0.2s; }
.nav__links a:hover { color: var(--accent); }

/* BUTTONS */
.btn {
  display: inline-block; padding: 0.65rem 1.5rem;
  font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em;
  border-radius: 4px; transition: background 0.2s, border-color 0.2s, transform 0.2s; cursor: pointer;
}
.btn--primary { background: var(--accent); color: var(--midnight); border: 1px solid var(--accent); }
.btn--primary:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--white); border: 1px solid var(--silver-dim); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* HERO */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  background: url('hero-bg.png') center/cover no-repeat;
  padding: 6rem 1.5rem 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.88), rgba(27,40,56,0.8));
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(232,160,32,0.04) 59px, rgba(232,160,32,0.04) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(232,160,32,0.04) 59px, rgba(232,160,32,0.04) 60px);
}
.hero__overlay { display: none; }
.hero__content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto 0 0; padding-left: 5vw; }
.eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow__line { display: inline-block; width: 2rem; height: 2px; background: var(--accent); }
.hero__title { font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 0.25rem; }
.hero__outline {
  font-family: 'Rajdhani', sans-serif; font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px var(--silver); margin-bottom: 1rem;
}
.hero__address { color: var(--accent); -webkit-text-stroke: 0; }
.hero__desc { font-size: 1.05rem; color: var(--silver); max-width: 480px; margin-bottom: 1.5rem; }
.hero__buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__socials {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-bottom: 2rem;
  font-size: 0.85rem; color: var(--silver-dim);
}
.hero__socials a {
  color: var(--accent); font-weight: 500; transition: color 0.2s;
}
.hero__socials a:hover { color: var(--white); }

/* STATS */
.stats {
  position: relative; z-index: 1; margin-top: auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline); padding: 1.5rem 5vw;
}
.stats__item { text-align: center; }
.stats__value { display: block; font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.stats__label { display: block; font-size: 0.75rem; color: var(--silver-dim); text-transform: uppercase; letter-spacing: 0.05em; font-family: 'Rajdhani', sans-serif; }

/* SECTION */
.section { max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem; position: relative; }
.section__label {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent); margin-bottom: 0.5rem;
}
.section__title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.section__desc { color: var(--silver-dim); margin-bottom: 2rem; }
.section__note { color: var(--silver-dim); font-size: 0.9rem; margin-top: 1.5rem; text-align: center; }
.outline-text { color: transparent; -webkit-text-stroke: 1px var(--silver); }

/* SERVICE CARDS */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--hairline); border-radius: 8px; overflow: hidden; margin-top: 2rem;
}
.card {
  position: relative; padding: 2rem; min-height: 260px;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  transition: transform 0.3s;
}
.card-engine { background-image: url('service-engine.png'); }
.card-suspension { background-image: url('service-suspension.png'); }
.card-fluids { background-image: url('service-fluids.png'); }
.card-detailing { background-image: url('service-detailing.png'); }
.card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.88), rgba(27,40,56,0.75));
  transition: background 0.3s;
}
.card:hover .card__overlay { background: linear-gradient(135deg, rgba(13,27,42,0.75), rgba(27,40,56,0.6)); }
.card__body { position: relative; z-index: 1; }
.card__title { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.card__list { font-size: 0.9rem; }
.card__list li { padding: 0.2rem 0; color: var(--silver); }
.card__list li::before { content: '—'; color: var(--accent); margin-right: 0.5rem; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 2rem; }
.why-item { padding: 1.5rem; border-left: 2px solid var(--accent); }
.why-num { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--accent); margin-bottom: 0.25rem; }
.why-title { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.why-desc { font-size: 0.9rem; color: var(--silver-dim); line-height: 1.7; }

/* TEAM */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem;
}
.team-card { transition: transform 0.3s; }
.team-card:hover { transform: translateY(-5px); }
.team-card__img {
  aspect-ratio: 1; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal), #1f3040);
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.team-card__img svg { width: 45%; height: 45%; color: var(--accent); opacity: 0.6; }
.team-card__name {
  font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700;
  color: var(--white);
}
.team-card__role {
  font-size: 0.85rem; color: var(--silver-dim); margin-top: 0.15rem;
}

/* DIAGONAL STRIPE ACCENT */
.section:nth-of-type(even)::after {
  content: ''; position: absolute; top: -2px; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent 10%, var(--accent) 40%, var(--accent) 60%, transparent 90%);
  opacity: 0.4;
}

/* REVIEWS */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--hairline); border-radius: 8px; overflow: hidden;
}
.testimonial { background: var(--charcoal); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.testimonial__stars { color: var(--accent); font-size: 1.2rem; letter-spacing: 2px; }
.testimonial__quote { font-style: italic; color: var(--silver); font-size: 0.95rem; line-height: 1.7; flex: 1; }
.testimonial__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--accent);
}
.testimonial__name { display: block; color: var(--white); font-weight: 500; font-size: 0.9rem; }
.testimonial__car { display: block; color: var(--silver-dim); font-size: 0.8rem; }

/* VIDEO / SHORTS */
.shorts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem;
}
.short-card {
  position: relative; display: block; border-radius: 12px; overflow: hidden;
  aspect-ratio: 9/16; background: var(--charcoal);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.short-card:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(0,0,0,0.5); }
.short-card img { width: 100%; height: 100%; object-fit: cover; }
.short-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(232,160,32,0.9); color: var(--midnight);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: background 0.3s, transform 0.3s;
}
.short-card:hover .short-play { background: var(--accent-light); transform: translate(-50%,-50%) scale(1.1); }
.video-link { display: inline-block; margin-top: 1.5rem; font-weight: 500; }

/* FAQ */
.faq-list { max-width: 800px; margin-top: 2rem; }
.faq-list details { border-bottom: 1px solid var(--hairline); padding: 1.25rem 0; }
.faq-list summary {
  font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--white);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { display: none; }
.faq-list summary::after { content: '+'; font-size: 1.5rem; color: var(--accent); transition: transform 0.3s; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { padding-top: 0.75rem; font-size: 0.95rem; color: var(--silver); line-height: 1.7; }

/* CTA BAND */
.cta-band { background: var(--accent); padding: 3rem 1.5rem; text-align: center; }
.cta-band__inner { max-width: 600px; margin: 0 auto; }
.cta-band__title { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; color: var(--midnight); margin-bottom: 0.5rem; }
.cta-band__desc { color: rgba(13,27,42,0.7); margin-bottom: 1.5rem; }
.btn--dark { background: var(--midnight); color: var(--white); border: 1px solid var(--midnight); }
.btn--dark:hover { background: transparent; color: var(--midnight); border-color: var(--midnight); }

/* MODAL */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9);
  background: var(--charcoal); border: 1px solid var(--hairline); border-radius: 12px;
  padding: 2.5rem 2rem; max-width: 380px; width: 90%; z-index: 2001;
  text-align: center; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s;
}
.modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.modal__close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  color: var(--silver-dim); font-size: 1.2rem; cursor: pointer; transition: color 0.2s;
}
.modal__close:hover { color: var(--white); }
.modal__title { font-family: 'Rajdhani', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.modal__desc { color: var(--silver); font-size: 0.9rem; margin-bottom: 0.75rem; }
.modal__btn { width: 100%; text-align: center; margin-bottom: 1.25rem; font-size: 1.1rem; padding: 0.85rem 1.5rem; }

/* FLOATING CTA */
.floating-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: var(--midnight);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(232,160,32,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: floatingPulse 2s ease-in-out infinite;
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(232,160,32,0.6); }
.floating-cta svg { width: 24px; height: 24px; }
@keyframes floatingPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,160,32,0.4); }
  50% { box-shadow: 0 4px 30px rgba(232,160,32,0.7); }
}

/* CONTACTS */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.contacts__info p { padding: 0.6rem 0; font-size: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.contacts__info svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.contacts__info a { color: var(--accent); }
.contacts__map { border-radius: 8px; overflow: hidden; min-height: 300px; }
.contacts__map iframe { width: 100%; height: 100%; border: none; min-height: 300px; }
.map-link { display: block; text-align: center; margin-top: 0.75rem; font-size: 0.9rem; font-weight: 500; }

/* FOOTER */
.footer {
  max-width: 1200px; margin: 0 auto; padding: 2rem 1.5rem;
  border-top: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem; color: var(--silver-dim);
}
.footer__badge {
  padding: 0.4rem 1rem; border: 1px solid var(--accent); border-radius: 4px;
  font-size: 0.8rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em;
}

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.reviews-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.reviews-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0; transform: translateY(30px);
    animation: revealUp 0.6s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }
  @keyframes revealUp { to { opacity: 1; transform: none; } }
}

/* BURGER & MOBILE MENU */
.burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 1001;
}
.burger span {
  display: block; width: 100%; height: 2px; background: var(--white);
  position: absolute; left: 0; transition: all 0.3s ease;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }
.burger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100%;
  background: var(--charcoal); z-index: 1000;
  padding: 5rem 2rem 2rem;
  transition: right 0.3s ease;
  border-left: 1px solid var(--hairline);
}
.mobile-menu.open { right: 0; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu__links a {
  font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 600;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.03em;
}
.mobile-menu__links a:hover { color: var(--accent); }
.mobile-menu__links .btn { margin-top: 1rem; text-align: center; }

.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 999; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .burger { display: block; }
}

@media (max-width: 767px) {
  .nav__inner { padding: 0.6rem 1rem; }
  .nav__name { font-size: 0.95rem; }

  .hero { padding: 5rem 1rem 0; min-height: auto; }
  .hero__content { padding-left: 0; }
  .hero__title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero__outline { font-size: clamp(1.2rem, 5vw, 1.8rem); }
  .hero__desc { font-size: 0.95rem; }
  .hero__buttons { flex-direction: column; gap: 0.75rem; }
  .hero__buttons .btn { text-align: center; width: 100%; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; padding: 1.25rem 1rem; }
  .stats__value { font-size: 1.25rem; }
  .stats__label { font-size: 0.65rem; }

  .section { padding: 3.5rem 1rem; }
  .section__title { font-size: clamp(1.5rem, 6vw, 2rem); }

  .services-grid { grid-template-columns: 1fr; }
  .card { min-height: 200px; }

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

  .team-grid { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }

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

  .shorts-grid { gap: 0.75rem; }
  .short-card { border-radius: 8px; }

  .faq-list summary { font-size: 1rem; }

  .contacts-grid { grid-template-columns: 1fr; }
  .contacts__map { min-height: 250px; }
  .contacts__map iframe { min-height: 250px; }

  .cta-band { padding: 2.5rem 1rem; }
  .cta-band__title { font-size: 1.5rem; }

  .footer { flex-direction: column; text-align: center; padding: 1.5rem 1rem; }

  .floating-cta { bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px; font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; animation: none; }
  .floating-cta { animation: none; }
  html { scroll-behavior: auto; }
}
