:root {
  --red: #c0392b;
  --red-dark: #921c11;
  --red-glow: rgba(192, 57, 43, 0.4);
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #141414;
  --border: rgba(255,255,255,0.07);
  --text: #f0f0f0;
  --text-muted: #888;
  --white: #ffffff;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ───── NAVBAR ───── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.7);
  border-bottom: 1px solid var(--border);
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.nav-instagram {
  color: var(--white) !important;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8,8,8,0.97);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--red);
}

.mobile-close {
  position: absolute;
  top: 25px;
  right: 30px;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('2025-08-03.jpg') center center / cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#hero:hover .hero-bg {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.45) 0%,
    rgba(8,8,8,0.55) 60%,
    rgba(8,8,8,0.9) 100%
  );
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 25px;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
  color: var(--red);
}

.hero-subtitle {
  display: inline-block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0 auto 35px auto;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 12px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
}

.btn-primary {
  background: var(--white);
  color: #000;
}

.btn-primary:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}

.hero-scroll {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

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

/* ───── SECTIONS COMMON ───── */
section {
  padding: 100px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}

.section-line {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 18px auto 0;
  border-radius: 2px;
}

/* ───── ABOUT ───── */
#about {
  background: var(--bg2);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 30px var(--red-glow);
}

.about-img-badge .big {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-img-badge .small {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 18px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.about-feature i {
  color: var(--red);
  font-size: 16px;
  width: 20px;
  flex-shrink: 0;
}

/* ───── VEHICLES ───── */
#vehicles {
  background: var(--bg);
}

.vehicles-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.vehicle-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  cursor: pointer;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  border-color: rgba(192, 57, 43, 0.4);
}

.vehicle-img {
  position: relative;
  height: 200px;
  background: #1a1a1a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-img i {
  font-size: 64px;
  color: #2a2a2a;
}

.vehicle-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.vehicle-body {
  padding: 22px;
}

.vehicle-name {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.vehicle-year {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.vehicle-specs {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.vehicle-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.vehicle-spec i {
  color: var(--red);
  font-size: 11px;
}

.vehicle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.vehicle-price {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.vehicle-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s;
}

.vehicle-card:hover .vehicle-link {
  gap: 9px;
}

.vehicles-cta {
  text-align: center;
  margin-top: 50px;
}

/* ───── TESTIMONIALS ───── */
#testimonials {
  background: var(--bg2);
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192,57,43,0.3);
}

.testimonial-stars {
  color: #f0b429;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

.testimonial-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ───── CONTACT ───── */
#contact {
  background: var(--bg);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  text-decoration: none;
  color: var(--text);
  transition: color 0.3s;
}

.contact-item:hover {
  color: var(--white);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--red);
  flex-shrink: 0;
  transition: background 0.3s;
}

.contact-item:hover .contact-icon {
  background: rgba(192,57,43,0.15);
}

.contact-item-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(220,39,67,0.3);
}

.social-link.instagram:hover {
  box-shadow: 0 8px 30px rgba(220,39,67,0.5);
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 350px;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px;
  text-align: center;
}

.contact-map i {
  font-size: 48px;
  color: var(--red);
}

.contact-map h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}

.contact-map p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.map-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.3s, transform 0.3s;
  color: var(--white);
}

.map-btn i {
  font-size: 18px;
  color: var(--white);
}

.map-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.map-btn.google { background: #4285F4; }
.map-btn.yandex { background: #FC3F1D; }
.map-btn.apple  { background: #333; border: 1px solid #555; }

/* ───── HOURS ───── */
#hours {
  background: var(--bg2);
  padding: 60px 20px;
}

.hours-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hours-inner h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
}

.hours-row.closed {
  opacity: 0.5;
}

.hours-day {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.hours-time {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.hours-row.closed .hours-time {
  color: var(--text-muted);
}

/* ───── FOOTER ───── */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 40px 20px 30px;
  text-align: center;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0.7;
}

.footer-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.footer-copy {
  font-size: 11px;
  color: #444;
  letter-spacing: 0.5px;
}

/* ───── MODALS ───── */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.93);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.modal.open {
  display: flex;
}

.modal-content {
  background: var(--bg3);
  padding: 35px 30px;
  border: 1px solid #333;
  border-radius: 14px;
  text-align: center;
  width: 90%;
  max-width: 380px;
  position: relative;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.modal h2 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 25px;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 1px;
}

.modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  margin-bottom: 10px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  border-radius: 8px;
  color: var(--white);
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 1px;
}

.modal-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.modal-btn.call   { background: #1a1a1a; border: 1px solid #333; font-size: 18px; }
.modal-btn.google { background: #4285F4; }
.modal-btn.yandex { background: #FC3F1D; }
.modal-btn.apple  { background: #333; border: 1px solid #555; }

.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  color: #777;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.close-btn:hover { color: var(--white); }

/* ───── ANIMATIONS ───── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

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

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-wrap img {
    height: 320px;
  }

  .about-img-badge {
    bottom: -15px;
    right: 10px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #navbar {
    padding: 16px 20px;
  }

  section {
    padding: 70px 16px;
  }

  .hero-title {
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 11px;
    padding: 8px 14px;
    margin-bottom: 20px;
    max-width: 280px;
    line-height: 1.5;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .btn {
    width: 100%;
    padding: 14px 24px;
  }

  .contact-map {
    min-height: 280px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}
