/* ============================================================
   PERFECT CHOICE — Responsive Breakpoints
   Mobile-first progressive enhancement
   ============================================================ */

/* ── Mobile: 0 – 480px (default) ─────────────────────── */

/* Show mobile bar on small screens */
@media (max-width: 767px) {
  .mobile-bar {
    display: block;
  }

  /* Add bottom padding to body for mobile bar */
  body {
    padding-bottom: 72px;
  }

  .whatsapp-float {
    bottom: 80px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  /* Header mobile */
  .header__nav,
  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__logo img {
    height: 75px;
  }

  .header--scrolled .header__logo img {
    height: 60px;
  }

  /* Hero mobile */
  .hero {
    min-height: 85vh;
    align-items: flex-end;
    padding-bottom: var(--space-12);
  }

  .hero__content {
    padding-top: var(--space-12);
  }

  .hero__title {
    font-size: var(--text-4xl);
  }

  .hero__subtitle {
    font-size: var(--text-lg);
  }

  .hero__description {
    font-size: var(--text-base);
  }

  .hero__overlay {
    background: linear-gradient(
      to top,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(10, 10, 10, 0.7) 50%,
      rgba(10, 10, 10, 0.3) 100%
    );
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  /* Trust strip mobile: horizontal scroll */
  .trust-strip__inner {
    justify-content: flex-start;
    padding: 0 var(--space-4);
  }

  .trust-strip .trust-badge {
    min-width: 170px;
    padding: var(--space-4);
  }

  /* Enquiry mobile */
  .enquiry__card {
    padding: var(--space-6);
  }

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

  .enquiry__actions {
    flex-direction: column;
  }

  .enquiry__actions .btn {
    width: 100%;
  }

  /* Grids mobile */
  .why-section__grid,
  .fleet-section__grid,
  .offers-section__grid,
  .reviews-section__grid {
    grid-template-columns: 1fr;
  }

  .nri-section__grid {
    grid-template-columns: 1fr;
  }

  .monthly-section__highlights {
    grid-template-columns: 1fr 1fr;
  }

  .how-section__timeline {
    flex-direction: column;
    gap: var(--space-6);
    align-items: flex-start;
  }

  .how-section__timeline::before {
    display: none;
  }

  .how-section__timeline .step-card {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .how-section__timeline .step-card__description {
    margin: 0;
  }

  .destinations-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }

  .destination-card {
    aspect-ratio: 3 / 4;
  }

  /* Footer mobile */
  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
  }

  .footer__bottom-info {
    flex-direction: column;
    gap: var(--space-1);
    justify-content: center;
    text-align: center;
  }

  .footer__divider {
    display: none;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
  }

  /* Section header mobile */
  .section-header {
    margin-bottom: var(--space-8);
  }

  /* Split mobile */
  .split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .split--reverse {
    direction: ltr;
  }

  /* Page hero mobile */
  .page-hero {
    padding: calc(var(--space-24) + var(--space-4)) 0 var(--space-12);
  }

  .page-hero__title {
    font-size: var(--text-4xl);
  }

  /* Form row mobile */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Final CTA mobile */
  .final-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .final-cta__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Grid utilities mobile */
  .grid--2,
  .grid--3,
  .grid--4,
  .grid--5 {
    grid-template-columns: 1fr;
  }
}

/* ── Small Tablet: 480px – 767px ─────────────────────── */
@media (min-width: 480px) and (max-width: 767px) {
  .why-section__grid,
  .fleet-section__grid,
  .offers-section__grid,
  .reviews-section__grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* ── Tablet: 768px ───────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__cta {
    display: block;
  }

  .why-section__grid,
  .fleet-section__grid,
  .offers-section__grid {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-section__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nri-section__grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .how-section__timeline {
    flex-wrap: wrap;
    justify-content: center;
  }

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

/* ── Desktop: 1024px+ ────────────────────────────────── */
@media (min-width: 1024px) {
  .header__hamburger {
    display: none;
  }

  .header__nav,
  .header__cta {
    display: flex;
  }
}

/* ── Large Desktop: 1280px+ ──────────────────────────── */
@media (min-width: 1280px) {
  .destinations-section__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ── Scroll Snap for swipeable mobile cards ──────────── */
@media (max-width: 767px) {
  .swipeable {
    display: flex;
    gap: var(--space-4);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--space-4);
    margin: 0 calc(var(--container-padding) * -1);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }

  .swipeable::-webkit-scrollbar {
    display: none;
  }

  .swipeable > * {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 85%;
    max-width: 320px;
  }

  .swipeable--wide > * {
    width: 90%;
    max-width: 360px;
  }
}
