/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-section {
    min-height: auto;
    padding: 100px 0;
  }
  
  .hero-img {
    margin-top: 30px;
  }
  
  .about-feature-card,
  .services-card,
  .features-item,
  .price-plan-card,
  .team-card,
  .review-card,
  .core-info-card,
  .blog-card {
    margin-bottom: 30px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .shape {
    display: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.9rem;
  }
  
  .hero-section {
    min-height: auto;
    padding: 120px 0;
  }
  
  .hero-img {
    margin-top: 30px;
  }
  
  .about-feature-card,
  .services-card,
  .features-item,
  .price-plan-card,
  .team-card,
  .review-card,
  .core-info-card,
  .blog-card {
    margin-bottom: 30px;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .shape {
    transform: scale(0.7);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: auto;
    padding: 150px 0;
  }
  
  .about-feature-card,
  .services-card,
  .price-plan-card,
  .team-card,
  .core-info-card,
  .blog-card {
    margin-bottom: 30px;
  }
  
  .shape {
    transform: scale(0.8);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-padding {
    padding: 90px 0;
  }
  
  .hero-section {
    min-height: 80vh;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* Prefers reduced motion */
@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-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    transition: none !important;
  }
  
  .card:hover,
  .about-feature-card:hover,
  .price-plan-card:hover,
  .core-info-card:hover,
  .team-card:hover .team-img,
  .blog-card:hover .blog-img,
  .gallery-item:hover .gallery-img {
    transform: none !important;
  }
} 