/* Variables */
:root {
  --primary: #011627;
  --secondary: #3c526e;
  --accent: #0074d9;
  --light: #f5f5f5;
  --dark-text: #1a1a1a;
  --whatsapp: #25d366;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  background-color: var(--light);
  line-height: 1.6;
}

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

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

.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 0;
}

/* Navigation */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--primary);
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
  padding: 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 70px;
  padding: 0.5rem 0;
}

.logo {
  width: 160px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: clamp(1rem, 5vw, 2.5rem);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
}

.nav-links li a {
  color: #ffffff;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-links li a:hover {
  opacity: 0.8;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 4rem 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #005fa3;
}

/* Sections */
section {
  padding: 4rem 0;
}

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

/* About */
.about p {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.value {
  flex: 1 1 200px;
  text-align: center;
  padding: 1rem;
}

.value i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.value h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.value p {
  font-size: 0.95rem;
  color: var(--secondary);
}

/* Services */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service {
  flex: 1 1 250px;
  text-align: center;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-4px);
}

.service i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.service h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.service p {
  font-size: 0.95rem;
  color: var(--secondary);
}

/* Quote Form */
.quote form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

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

.form-group label {
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group select {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.btn-secondary {
  background: var(--primary);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}

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

/* Vehicle */
.vehicle {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.vehicle__grid {
  display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.vehicle__media {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(1, 22, 39, 0.12);
}

.vehicle__media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

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

.vehicle__content h2 {
  text-align: left;
}

.vehicle__description {
  color: var(--secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.vehicle__specs {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  padding: 0;
}

.vehicle__specs li {
  font-size: 0.98rem;
  color: var(--dark-text);
}

.vehicle__specs li strong {
  font-weight: 700;
  color: var(--primary);
  margin-right: 0.35rem;
}

.vehicle__cta {
  align-self: flex-start;
}

/* Contact */
.contact {
  text-align: center;
}

.contact-kicker {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.contact-card {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(1, 22, 39, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-description {
  color: var(--secondary);
  font-size: 1rem;
}

.contact-info {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.contact-info li {
  font-size: 1.05rem;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.contact-info i {
  color: var(--accent);
  font-size: 1.2rem;
}

.contact-btn {
  padding: 0.9rem 2.5rem;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 116, 217, 0.25);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 116, 217, 0.3);
}

.map {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(1, 22, 39, 0.12);
}

.map iframe {
  width: 100%;
  border: none;
  height: 320px;
}

/* Footer */
footer {
  background: var(--primary);
  color: #ffffff;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.social-links a {
  color: #ffffff;
  margin-left: 0.75rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 55px;
  height: 55px;
  background: var(--whatsapp);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 767px) {
  header .container {
    padding: 0.5rem 0;
  }
  .logo {
    width: 120px;
    margin-left: 0;
  }
  .nav-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-height: auto;
    padding: 0.75rem 0;
  }
  .nav-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
    margin-left: 0;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .values, .service-list {
    flex-direction: column;
    align-items: center;
  }
  .vehicle__grid {
    grid-template-columns: 1fr;
  }
  .vehicle__media {
    max-width: 520px;
    margin: 0 auto;
  }
  .vehicle__content {
    text-align: center;
    align-items: center;
  }
  .vehicle__content h2 {
    text-align: center;
  }
  .vehicle__specs {
    text-align: left;
  }
  .vehicle__cta {
    align-self: center;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
