/* ============================================
   RESPONSIVE FINE-TUNING
   ============================================ */

/* Small phones */
@media (max-width: 374px) {
  .hero-cta .btn {
    width: 100%;
  }
  .trust-indicators {
    gap: var(--space-sm) var(--space-md);
  }
}

/* Phones: full-width CTAs, tighter section padding */
@media (max-width: 639px) {
  section {
    padding-block: var(--space-xl);
  }
  .hero-cta .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
  .trust-indicators {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-destination {
    flex-basis: 160px;
  }
}

/* Ensure body offsets for the fixed mobile contact bar */
@media (max-width: 1023px) {
  body {
    padding-bottom: 64px;
  }
  .whatsapp-float {
    bottom: calc(64px + var(--space-md));
  }
}

/* Tablet and up: restore normal body padding since contact bar hides at 1024px */
@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
  .whatsapp-float {
    bottom: var(--space-md);
  }
}

/* Large desktop: slightly larger container breathing room */
@media (min-width: 1440px) {
  .container {
    width: min(calc(100% - 64px), var(--container-width));
  }
}
