/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575.98px) {
  .hero {
    text-align: center;
    padding-top: 80px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 3rem 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .about-feature,
  .service-card,
  .price-card,
  .team-member,
  .core-info-item,
  .blog-card,
  .gallery-item {
    margin-bottom: 1.5rem;
  }

  footer {
    padding: 3rem 0 1.5rem;
    text-align: center;
  }

  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Small Devices (Landscape Phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero {
    text-align: center;
    padding-top: 80px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  section {
    padding: 4rem 0;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Medium Devices (Tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero h1 {
    font-size: 3rem;
  }

  .section-title h2 {
    font-size: 2.3rem;
  }

  .about-feature,
  .service-card,
  .price-card,
  .team-member,
  .core-info-item,
  .blog-card {
    margin-bottom: 2rem;
  }

  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Large Devices (Desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero h1 {
    font-size: 3.2rem;
  }
}

/* Extra Large Devices (Large Desktops) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Animation and Motion Preference */
@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;
  }

  .swiper-container,
  .swiper-wrapper {
    transition: none !important;
  }
} 