/* ── Hero text alignment fix (desktop) ──────────────────── */
.hero-content {
  max-width: 860px;
  padding-right: 2rem;
}
.hero .display {
  font-size: clamp(2.25rem, 5vw, 4.5rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -.01em;
}
@media (min-width: 1024px) {
  .hero .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .hero-content {
    max-width: 760px;
  }
}
@media (max-width: 639px) {
  .hero .display {
    font-size: clamp(1.875rem, 8vw, 2.5rem) !important;
  }
  .hero .btn-primary, .hero .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ── Card hover image zoom ──────────────────────────────── */
.card:hover img, .card-dark:hover img {
  transform: scale(1.05);
}

/* ── Swiper fleet slide size fix ────────────────────────── */
.swiper-fleet { padding-bottom: 1rem; }
.swiper-fleet .swiper-slide {
  width: 320px;
  height: auto;
}
@media(min-width:1024px) {
  .swiper-fleet .swiper-slide { width: 380px; }
}

/* ── Section padding ────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-lg { padding: 9rem 0; }

/* ── WhatsApp floating button ──────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
