:root {
  --yellow: #f5c700;
  --yellow-deep: #e6b800;
  --white: #ffffff;
  --text: #0b2a4a;
  --muted: #425466;
  --card-bg: #ffffff;
  --section-bg: #f7f7f7;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar {
  background: var(--white);
  color: var(--text);
}

.top-bar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap:20px;
}

.logo img {
  height: 66px;
  width: auto;
}

.top-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
}

.menu-toggle {
  display: none;
  background: #cc4c4c;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
}

.main-nav {
  background: var(--yellow);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  padding: 12px 0;
}

.main-nav a,
.mobile-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.mobile-nav {
  display: none;
  background: var(--white);
  padding: 20px 0;
}

.mobile-nav ul {
  list-style: none;
  display: grid;
  gap: 16px;
  padding-left: 6%;
}

.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero__label {
  position: absolute;
  left: 50%;
  top: 66%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.6);
  color: var(--white);
  font-weight: 700;
  font-size: 36px;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
  padding: 10px 24px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero__tag {
  background: rgba(245, 199, 0, 0.95);
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #1f2f52;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
}

.stats {
  background: var(--yellow);
  color: var(--text);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 28px 0 32px;
  gap: 16px;
}

.stat h3 {
  font-size: 28px;
  font-weight: 700;
}

.stat p {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

.section {
  padding: 54px 0;
  background: var(--white);
}

.section-alt {
  background: var(--section-bg);
}

.section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: #0d2e5b;
}

.section-subtitle {
  text-align: center;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.cards-grid {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.cars-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.reviews-media {
  margin-top: 24px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.car-card img {
  height: 150px;
  object-fit: contain;
  margin: 10px auto;
}

.car-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0d2e5b;
}

.car-card p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.btn {
  display: inline-block;
  margin-top: 16px;
  padding: 9px 18px;
  background: var(--yellow);
  color: var(--text);
  text-decoration: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.card-actions .btn {
  margin-top: 0;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.icon {
  font-size: 26px;
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 16px;
  color: var(--text);
  font-weight: 700;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.about__text h2 {
  text-align: left;
}

.about__text h3 {
  font-size: 20px;
  margin: 12px 0;
  color: #0d2e5b;
}

.about__text p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.about__text ul {
  list-style: none;
  margin-top: 14px;
}

.about__text li {
  font-size: 14px;
  color: #0d2e5b;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.about__text li::before {
  content: "✓";
  color: var(--yellow);
  position: absolute;
  left: 0;
}

.about__media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.review-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 12px 0;
}

.review-card h4 {
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
}

.stars {
  color: var(--yellow-deep);
  font-size: 18px;
}

.site-footer {
  background: var(--yellow);
  color: var(--text);
  padding-top: 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-bottom: 20px;
  align-items: start;
  text-align: left;
}

.site-footer h3 {
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-footer p {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.08);
  color: var(--text);
  text-decoration: none;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 12px 0;
  font-size: 12px;
}

.fab {
  position: fixed;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  box-shadow: var(--shadow);
  z-index: 80;
}

.fab-call {
  bottom: 100px;
  background: #d64b4b;
}

.fab-whatsapp {
  bottom: 40px;
  background: #25d366;
}

.fab svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  display: block;
}

.fab-whatsapp img {
  width: 26px;
  height: 26px;
  display: block;
}

@media (max-width: 900px) {
  .top-info {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav.active {
    display: block;
  }

  .hero {
    height: 320px;
  }

  .hero h1 {
    font-size: 26px;
    padding: 0 20px;
  }

  .hero__label {
    font-size: 22px;
    padding: 8px 18px;
  }

  .hero__tag {
    font-size: 11px;
    padding: 5px 14px;
  }

  .hero__overlay {
    gap: 10px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cars-grid,
  .service-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .top-bar__content {
    padding: 10px 0;
  }

  .logo img {
    width: 80px;
  }

  .section {
    padding: 42px 0;
  }

  .section h2 {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .card {
    padding: 16px;
  }
}
