body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

header.hero {
  background: url('https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
}

header .overlay {
  background: rgba(17, 40, 80, 0.65); /* deep blue overlay to match BMW/Logo tones */
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.ac-hero-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 720px;
  margin: 1.25rem auto 0;
  padding: 1rem 1.25rem 1.05rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0f7ff 62%, #b7ecff 100%);
  border: 3px solid #38bdf8;
  border-radius: 8px;
  color: #10233f;
  box-shadow:
    0 0 0 4px rgba(250, 204, 21, 0.95),
    0 16px 38px rgba(0, 0, 0, 0.36);
  position: relative;
  overflow: hidden;
}

.ac-hero-promo::after {
  content: "";
  position: absolute;
  inset: auto -3rem -4rem auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.16), transparent 68%);
  pointer-events: none;
}

.ac-promo-icon {
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  background: #1d4ed8;
  border: 4px solid white;
  border-radius: 50%;
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.45);
}

.ac-promo-copy {
  position: relative;
  z-index: 1;
  text-align: left;
}

.ac-promo-copy strong,
.ac-promo-copy span {
  display: block;
}

.ac-promo-copy strong {
  margin: 0.15rem 0 0.25rem;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.ac-kicker {
  width: fit-content;
  margin: 0;
  padding: 0.24rem 0.7rem;
  background: #facc15;
  border-radius: 999px;
  color: #10233f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .ac-hero-promo {
    flex-direction: column;
    gap: 0.65rem;
    text-align: center;
  }

  .ac-promo-copy {
    text-align: center;
  }

  .ac-kicker {
    margin: 0 auto;
  }
}

.logo {
  display: block;
  width: min(200px, 52vw);
  height: auto;
  margin: 0 auto 1rem;
}

@media (max-width: 640px) {
  header.hero {
    align-items: flex-start;
  }

  header .overlay {
    padding: 3.25rem 1rem 2rem;
    padding-top: max(3.25rem, calc(env(safe-area-inset-top, 0px) + 2rem));
  }

  .logo {
    width: min(155px, 44vw);
    margin-bottom: 0.75rem;
  }
}

h1, h2, h3 {
  margin-top: 0;
}

section {
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

section.light {
  background: #f9f9f9;
}

.contact-notes {
  display: inline-block;
  margin: 0.25rem auto 0.75rem;
  padding-left: 1.3rem;
  text-align: left;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.service h3 {
  margin-top: 0.5rem;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.about-content img {
  flex: 1 1 300px;
  max-width: 400px;
  border-radius: 8px;
}

.about-content div {
  flex: 1 1 300px;
}

.review {
  background: #eee;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 8px;
}

.review span {
  display: block;
  text-align: right;
  font-style: italic;
  color: #555;
}

.btn {
  background: #1d4ed8;       /* BMW blue */
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1rem;
  transition: background 0.3s;
}

.btn:hover {
  background: #2563eb;       /* slightly lighter blue on hover */
}

footer {
  background: #111;
  color: #bbb;
  text-align: center;
  padding: 1rem;
}
.award-badge {
  margin-top: 40px;
  text-align: center;
}

.award-badge img {
  width: 100%;
  max-width: 360px;
  height: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  border-radius: 6px;
}

