:root {
  --primary-color: #0a0a0a;
  --secondary-color: #00e5ff;
  --tertiary-color: #1c1c1e;
  --text-light: #ffffff;
  --text-muted: #a1a1a6;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-speed: 0.3s;
}

body {
  font-family: var(--font-body) !important;
  background-color: var(--primary-color);
  color: var(--text-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading) !important;
  font-weight: 700;
}

.text-muted {
  color: var(--text-muted) !important;
}

/* Navbar */
.navbar-custom {
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar-custom .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 2px;
}
.navbar-custom .navbar-brand span {
  color: var(--secondary-color);
}
.navbar-custom .nav-link {
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition-speed);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.navbar-custom .nav-link:hover, .navbar-custom .nav-link.active {
  color: var(--secondary-color);
}
.btn-outline-cyan {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  transition: all var(--transition-speed);
}
.btn-outline-cyan:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../img/hero_showroom.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.1) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.6);
}
.hero-title span {
  color: var(--secondary-color);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.9);
  font-weight: 500;
}
.btn-cyan {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed);
}
.btn-cyan:hover {
  background-color: #00b8cc;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
}

/* Sections General */
.section-padding {
  padding: 100px 0;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}
.section-title span {
  color: var(--secondary-color);
}

/* Featured Vehicles */
.vehicle-card {
  background-color: var(--tertiary-color);
  border-radius: 15px;
  overflow: hidden;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  border: 1px solid rgba(255,255,255,0.05);
}
.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 229, 255, 0.15);
}
.vehicle-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.vehicle-details {
  padding: 20px;
}
.vehicle-specs {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}
.spec-item {
  text-align: center;
}
.spec-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
}
.spec-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Why Choose Us & Tech */
.feature-box {
  background: var(--tertiary-color);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
.feature-box:hover {
  border-color: var(--secondary-color);
}
.feature-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Charging Section */
.charging-section {
  background-image: linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.9)), url('../img/charging.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Testimonials */
.testimonial-card {
  background: var(--tertiary-color);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--secondary-color);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(45deg, var(--tertiary-color), var(--primary-color));
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

/* Footer */
.footer-custom {
  background-color: var(--tertiary-color);
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-title {
  color: var(--text-light);
  margin-bottom: 20px;
}
.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-link:hover {
  color: var(--secondary-color);
}
.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  color: var(--text-light);
  margin-right: 10px;
  transition: all 0.3s;
}
.social-icon:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}
