:root {
  --bg: #f8fafc;
  --text: #1f2937;
  --muted: #4b5563;
  --primary: #0b3d91;
  --accent: #f59e0b;
  --card: #ffffff;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #0f172a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  font-size: 1.2rem;
  color: #ffffff;
}

.brand-cks {
  color: #dc2626;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f59e0b;
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-links a.is-active {
  color: #fbbf24;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 6.5rem 0;
  min-height: 72vh;
  display: flex;
  align-items: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  filter: saturate(1.08) contrast(1.04);
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(11, 61, 145, 0.45), rgba(15, 23, 42, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.8rem;
}

.hero-content p {
  max-width: 720px;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #111827;
  text-decoration: none;
  font-weight: bold;
  padding: 0.75rem 1.1rem;
  border-radius: 8px;
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.hero-prev {
  left: 14px;
}

.hero-next {
  right: 14px;
}

.section {
  padding: 3.5rem 0;
  scroll-margin-top: 88px;
}

.section h3 {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.section > .container > p {
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 800px;
}

.alt-bg {
  background: #e5e7eb;
}

.grid {
  display: grid;
  gap: 1rem;
}

.three-col {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.four-col {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.card h4 {
  margin-bottom: 0.4rem;
  color: var(--primary);
}

.car-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.car-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

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

.stat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.stat-card h4 {
  color: #0b3d91;
  margin-bottom: 0.3rem;
}

.image-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  grid-auto-rows: 180px;
}

.image-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.image-showcase img.face {
  object-position: center 20%;
}

.image-showcase img:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.image-showcase .wide {
  grid-column: span 2;
}

.image-showcase .tall {
  grid-row: span 2;
}

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

.testimonial-card {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.stars {
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.author {
  margin-top: 0.7rem;
  font-weight: bold;
  color: #0b3d91;
}

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

.faq-card {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.faq-card h4 {
  color: #0b3d91;
  margin-bottom: 0.35rem;
}

.contact-box p {
  margin-bottom: 0.5rem;
}

.map-wrap {
  margin-top: 1.2rem;
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.map-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
}

.site-footer {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
}

.site-footer a {
  color: #fbbf24;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  min-height: 54px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover {
  background: #1ebe5d;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 700px) {
  .nav-wrap {
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero-control {
    width: 36px;
    height: 36px;
  }

  .image-showcase {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .image-showcase .wide,
  .image-showcase .tall {
    grid-column: auto;
    grid-row: auto;
  }
}
