/* ==========================================================================
   MEL PET SHOP - Responsive Styles & Mobile First Breakpoints
   ========================================================================== */

/* Breakpoint Mobile Extra Small (< 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    padding-top: 40px;
    padding-bottom: 70px;
    text-align: center;
  }

  .hero-title {
    font-size: 1.95rem;
    line-height: 1.22;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-img-backdrop {
    width: 95%;
    height: 95%;
  }

  .handwritten-badge {
    font-size: 1.25rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-badge-position {
    top: 10px;
    right: 5px;
  }

  /* Spacing Adjustments Mobile */
  .section-padding {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section-subtitle {
    font-size: 1.02rem;
  }

  /* Benefits bar 2x2 grid */
  .benefits-wrapper {
    margin-top: -45px;
  }

  .benefits-card {
    padding: 1.2rem 1rem;
  }

  .benefit-item {
    gap: 0.6rem;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }

  .benefit-title {
    font-size: 0.88rem;
  }

  /* Cards & Badges */
  .service-card {
    padding: 1.5rem 1.25rem;
  }

  .service-img-card img {
    max-height: 280px;
  }

  .taxi-dog-card {
    padding: 1.5rem 1.25rem;
  }

  .cta-final-banner {
    padding: 2.2rem 1.2rem;
    text-align: center;
  }

  .cta-final-title {
    font-size: 1.7rem;
  }

  .cta-final-subtitle {
    font-size: 1.05rem;
  }

  /* Chips */
  .feature-chip {
    font-size: 0.88rem;
    padding: 0.5rem 0.9rem;
  }
}

/* Breakpoint Tablet Small (576px - 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-padding {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-title {
    font-size: 1.85rem;
  }
}

/* Breakpoint Medium / Tablet (768px - 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .section-padding {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

/* Breakpoint Large Desktop (>= 992px) */
@media (min-width: 992px) {
  .hero-title {
    font-size: 2.85rem;
  }
}

/* Reduced motion preference for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
