/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
  .section-padding {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
  }
  
  /* Services Section */
  .services-item {
    margin-bottom: 20px;
  }
  
  /* Team Section */
  .team-member-img {
    width: 150px;
    height: 150px;
  }
  
  /* Reviews Section */
  .reviews-item {
    padding: 20px;
  }
  
  /* Gallery Section */
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  /* Blog Section */
  #blog_grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  footer .col-md-3 {
    margin-bottom: 30px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-padding {
    padding: 70px 0;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
  }
  
  /* Services Section */
  .services-item {
    margin-bottom: 20px;
  }
  
  /* Gallery Section */
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  /* Blog Section */
  #blog_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Footer */
  footer .col-md-3 {
    margin-bottom: 30px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }
  
  /* Services Section */
  .services-item {
    margin-bottom: 30px;
  }
  
  /* Gallery Section */
  .gallery-item {
    height: 200px;
  }
  
  /* Blog Section */
  #blog_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-padding {
    padding: 90px 0;
  }
}

/* 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;
  }
  
  .hero-img img, .blog-item-img img, .gallery-item img, .services-item, .about-feature,
  .features-item, .priceplan-item, .team-member, .reviews-item, .coreinfo-item, .blog-item {
    transition: none !important;
    transform: none !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0ms !important;
  }
} 