body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #121212;
  color: #e5e5e5;
  box-sizing: border-box;
}

img, video {
  max-width: 100%;
  height: auto;
}

.logo {
  height: 80px;
  width: auto;
  max-width: 100%;
}

footer .logo {
  margin-bottom: 0.5rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
}

.nav-links {
  display: flex;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  margin-left: 1rem;
}

.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  padding-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #451717, #0a2540);
  color: #fff;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0,0,0,0.4), rgba(0,0,0,0.75));
}

.hero-photo {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep the image centered around the steering wheel (about 80% from
     the top of the picture). */
  object-position: 50% 80%;
  animation: heroPan 40s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.tagline {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.btn {
  display: inline-block;
  padding: 0.85em 2em;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: #ff7a2e;
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(239,68,68,0.08);
}
.btn-primary:hover {
  background: #cc5500;
}
.btn-secondary {
  background: #1e1e1e;
  color: #ff7a2e;
  border: 2px solid #ff7a2e;
  margin-top: 1rem;
}
.btn-secondary:hover {
  background: #ff7a2e;
  color: #fff;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem 1.5rem 1.2rem;
}
.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ff9f5f;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.service-card {
  background: #1e1e1e;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.6);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  flex: 1 1 270px;
  max-width: 320px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  margin: 1rem;
}
.service-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.8);
}
.service-card h3 {
  margin-top: 0;
  color: #ff9f5f;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.time {
  font-size: 0.95rem;
  color: #aaa;
  margin-top: -0.5rem;
  margin-bottom: 0.8rem;
}
.price {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ff9f5f;
}
.price span {
  font-weight: 400;
  color: #aaa;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  text-align: left;
}
.service-card ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.2em;
  position: relative;
}
.service-card ul li:before {
  content: "✔";
  color: #ff7a2e;
  position: absolute;
  left: 0;
  font-size: 1em;
}
.addon {
  text-align: center;
  margin-top: 1.5rem;
  background: #2a2a2a;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.addon h4 {
  margin: 0 0 0.3rem 0;
  color: #ff9f5f;
}
.addon-title {
  font-weight: 700;
  margin: 0.2rem 0;
}

.addon-price {
  color: #ff7a2e;
  font-weight: 700;
  margin: 0.3rem 0;
}

.addon-desc {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #ccc;
}

.why-choose-us {
  margin-top: 3.5rem;
  background: #1e1e1e;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.6);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
}
.why-choose-us h2 {
  text-align: center;
  color: #ff9f5f;
  margin-bottom: 2rem;
}

.contact {
  margin-top: 3rem;
  text-align: center;
}
.contact a {
  color: #ff7a2e;
  text-decoration: none;
}
.reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.reason {
  flex: 1 1 220px;
  max-width: 300px;
  min-width: 200px;
  text-align: center;
  margin: 1rem;
}
.reason h3 {
  color: #ff9f5f;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

footer {
  background: #000a1c;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1rem;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founded {
  color: #ff5555;
  margin: 0.2rem 0;
}
@media (max-width: 900px) {
  .service-list, .reasons {
    flex-direction: column;
    align-items: center;
  }
  .service-card, .reason {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 40vh;
    min-height: 250px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .tagline {
    font-size: 1rem;
  }
  main {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .why-choose-us {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
} 

.about-intro {
  max-width: 700px;
  margin: 3rem auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-intro p {
  margin-bottom: 1rem;
}
@keyframes heroPan {
  /* Focus pan & zoom around the steering wheel area (about 80% from
     the top of the image) */
  0% {
    transform: scale(1.15);
    object-position: 50% 80%;
  }
  25% {
    transform: scale(1.3);
    object-position: 50% 90%;
  }
  50% {
    transform: scale(1.15);
    object-position: 50% 70%;
  }
  75% {
    transform: scale(1.3);
    object-position: 50% 90%;
  }
  100% {
    transform: scale(1.15);
    object-position: 50% 80%;
  }
}
