/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  section {
    padding: 50px 0;
  }
  
  .priceplan-item.featured {
    transform: scale(1);
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .team-member img {
    height: 300px;
  }
  
  .blog-item img {
    height: 200px;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .gallery-item img {
    height: 200px;
  }

  .hero-section {
    height: auto;
    padding: 120px 0 50px;
  }
}

/* Small devices (tablets, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .priceplan-item.featured {
    transform: scale(1.03);
  }
  
  .hero-section {
    height: auto;
    min-height: 80vh;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .team-member img {
    height: 350px;
  }
  
  .priceplan-item.featured {
    transform: scale(1.04);
  }
  
  .hero-section {
    height: auto;
    min-height: 80vh;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .team-member img {
    height: 380px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0ms !important;
  }
  
  .review-item, .services-item, .about-feature, .features-item, .team-member, .blog-item, .priceplan-item, .gallery-item img {
    transform: none !important;
    transition: none !important;
  }
  
  .priceplan-item.featured {
    transform: none !important;
  }
  
  .about-feature:hover, .services-item:hover, .features-item:hover, .team-member:hover, .blog-item:hover, .gallery-item:hover img {
    transform: none !important;
  }
}

/* Mobile devices with device width less than 768px */
@media (max-width: 767.98px) {
  .swiper-container {
    --swiper-autoplay-delay: 0ms !important;
  }
  
  .navbar-nav .nav-link {
    padding: 10px 15px;
  }
  
  .hero-content {
    text-align: center;
    padding: 0 20px;
  }
  
  .about-feature, .services-item, .features-item, .priceplan-item, .team-member, .coreinfo-item, .blog-item {
    margin-bottom: 20px;
  }
  
  footer {
    text-align: center;
  }
  
  footer ul {
    margin-bottom: 30px;
  }
  
  .contact-info {
    text-align: center;
    margin-top: 30px;
  }
} 