/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .hero-section {
    min-height: auto;
    padding: 120px 0 60px;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .hero-section .shape {
    display: none;
  }
  
  .about-feature,
  .service-item,
  .feature-item,
  .price-item,
  .team-member,
  .review-item,
  .coreinfo-item,
  .blog-item {
    margin-bottom: 20px;
  }
  
  .gallery-image img {
    height: 200px;
  }
  
  footer {
    padding: 60px 0 30px;
  }
}

/* Small devices (landscape phones, 576px to 768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
  }
  
  .hero-section {
    min-height: auto;
    padding: 150px 0 80px;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-section .shape {
    transform: scale(0.7);
  }
}

/* Medium devices (tablets, 768px to 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
  }
  
  .hero-section {
    min-height: auto;
    padding: 180px 0 100px;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .about-feature,
  .service-item,
  .feature-item,
  .price-item,
  .team-member,
  .coreinfo-item,
  .blog-item {
    margin-bottom: 30px;
  }
}

/* Large devices (desktops, 992px to 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section h1 {
    font-size: 3.5rem;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .float-animation {
    animation: none !important;
  }
  
  .service-item:hover,
  .about-feature:hover,
  .feature-item:hover,
  .price-item:hover,
  .team-member:hover,
  .coreinfo-item:hover,
  .blog-item:hover {
    transform: none;
  }
  
  .service-item:hover .service-image img,
  .team-member:hover .team-image img,
  .blog-item:hover .blog-image img,
  .gallery-item:hover .gallery-image img {
    transform: none;
  }
  
  .swiper-container {
    --swiper-theme-transition-timing-function: step-end;
  }
  
  .nav-link::after {
    transition: none;
  }
} 