/* Premium Motus — Ultra-Luxury Showroom */
/* Self-contained CSS, no external dependencies */

:root {
  --primary: #1a1a1a;
  --secondary: #2d2d2d;
  --accent: #d4af37;
  --accent-light: #e8c547;
  --text: #f5f5f5;
  --text-dark: #333333;
  --border: #3d3d3d;
  --bg-light: #0f0f0f;
  --bg-lighter: #1f1f1f;
  --success: #10b981;
  --danger: #ef4444;

  --sp: 1.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 3rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--primary);
  letter-spacing: 0.5px;
}

.demo-bar {
  background-color: var(--bg-lighter);
  color: var(--text);
  padding: var(--sp-sm);
  text-align: center;
  font-size: 0.875rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.demo-bar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.demo-bar a:hover {
  color: var(--accent-light);
}

/* Header & Navigation */
header {
  background-color: var(--primary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 30px;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--sp);
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 4px;
  color: var(--primary);
}

.logo-icon svg {
  stroke: var(--primary);
}

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

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent);
}

.nav-cta a {
  background-color: var(--accent);
  color: var(--primary);
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-cta a:hover {
  background-color: var(--accent-light);
  color: var(--primary);
}

/* Hamburger Menu */
#nav-toggle {
  display: none;
}

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

.nav-burger span {
  width: 25px;
  height: 2.5px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

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

  #nav-toggle:checked ~ nav {
    display: flex;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--secondary);
    padding: 1rem;
  }

  #nav-toggle:checked ~ nav ul {
    flex-direction: column;
    gap: 0;
  }

  #nav-toggle:checked ~ nav a {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-burger {
    display: flex;
  }

  #nav-toggle:checked ~ .nav-burger span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  #nav-toggle:checked ~ .nav-burger span:nth-child(2) {
    opacity: 0;
  }

  #nav-toggle:checked ~ .nav-burger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp);
}

/* Hero Section */
.hero {
  padding: var(--sp-lg) var(--sp);
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-lighter) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.125rem;
  color: #ccc;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-silhouette {
  width: 100%;
  height: auto;
}

.car-silhouette svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.1));
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
  border: 2px solid var(--accent);
  color: var(--accent);
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--primary);
}

/* Why Us Section */
.why-us {
  padding: var(--sp-lg) var(--sp);
  background-color: var(--bg-lighter);
  border-bottom: 1px solid var(--border);
}

.why-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--primary);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.feature-card p {
  color: #aaa;
  font-size: 0.95rem;
}

/* Showcase Section */
.showcase {
  padding: var(--sp-lg) var(--sp);
  background-color: var(--primary);
  border-bottom: 1px solid var(--border);
}

.showcase h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.showcase-card {
  background-color: var(--bg-lighter);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.showcase-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
  transform: translateY(-5px);
}

.card-image {
  position: relative;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.car-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.card-image svg {
  width: 100%;
  height: 100%;
  padding: 20px;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  margin: 1rem 0;
}

.card-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  display: inline-block;
  margin-top: 1rem;
}

.card-link:hover {
  color: var(--accent-light);
}

.showcase-cta {
  text-align: center;
}

/* CTA Section */
.cta-section {
  padding: var(--sp-lg) var(--sp);
  background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--secondary) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-box {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  padding: var(--sp-lg);
  border-radius: 12px;
  text-align: center;
  color: var(--primary);
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--primary);
  opacity: 0.95;
}

.cta-box .btn {
  background-color: var(--primary);
  color: var(--accent);
}

.cta-box .btn:hover {
  background-color: var(--text);
  color: var(--primary);
}

/* Page Header */
.page-header {
  padding: var(--sp-lg) var(--sp);
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-lighter) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.page-header p {
  color: #aaa;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Collection Section */
.collection {
  padding: var(--sp-lg) var(--sp);
  background-color: var(--primary);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.collection-item {
  background-color: var(--bg-lighter);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.collection-item:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.collection-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.collection-image svg {
  width: 90%;
  height: 90%;
}

.collection-content {
  padding: 1.5rem;
}

.collection-content h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.spec-subtitle {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.spec-text {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.price-tag {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
  margin: 1rem 0;
}

/* Specs Section */
.specs-section {
  padding: var(--sp-lg) var(--sp);
  background-color: var(--primary);
}

.specs-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.specs-vehicle {
  background-color: var(--bg-lighter);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.specs-vehicle h2 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.spec-group h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-list {
  list-style: none;
}

.spec-list li {
  padding: 0.65rem 0;
  color: #ccc;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.spec-list li:last-child {
  border-bottom: none;
}

.label {
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  min-width: 120px;
}

/* Testimonials */
.testimonials {
  padding: var(--sp-lg) var(--sp);
  background-color: var(--primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background-color: var(--bg-lighter);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
  transform: translateY(-5px);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.testimonial-text {
  color: #bbb;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-vehicle {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.stats-section {
  padding: var(--sp-lg) var(--sp);
  background-color: var(--bg-lighter);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-description {
  color: #aaa;
  font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
  padding: var(--sp-lg) var(--sp);
  background-color: var(--primary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 2rem;
}

.info-group {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.info-text {
  flex: 1;
}

.info-label {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.info-text p {
  color: #bbb;
  line-height: 1.6;
}

.info-text a {
  color: var(--accent);
  text-decoration: none;
}

.info-text a:hover {
  color: var(--accent-light);
}

.service-list {
  list-style: none;
  column-count: 2;
  column-gap: 1.5rem;
}

.service-list li {
  color: #bbb;
  padding: 0.5rem 0;
  break-inside: avoid;
}

.service-list li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Form */
.contact-form-wrapper h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  background-color: var(--bg-lighter);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 4px;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
  resize: vertical;
}

/* FAQ */
.faq-section {
  padding: var(--sp-lg) var(--sp);
  background-color: var(--bg-lighter);
  border-top: 1px solid var(--border);
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--text);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background-color: var(--primary);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.faq-item h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.faq-item p {
  color: #aaa;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Footer */
footer {
  background-color: var(--bg-lighter);
  border-top: 1px solid var(--border);
  padding: var(--sp-lg) var(--sp) var(--sp-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-section a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--accent-light);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --sp: 1rem;
    --sp-lg: 2rem;
    --sp-md: 1.5rem;
  }

  .nav-wrap {
    padding: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .service-list {
    column-count: 1;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1rem;
    letter-spacing: 0;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .showcase h2,
  .why-us h2 {
    font-size: 1.75rem;
  }

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

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

/* Print Styles */
@media print {
  .demo-bar,
  header,
  .cta-section,
  footer {
    display: none;
  }
}
