/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 80px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .service-card,
  .price-card,
  .review-card,
  .contact-form {
    padding: 20px;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  .feature-icon,
  .service-icon,
  .core-info-icon {
    font-size: 2.5rem;
  }
  
  .team-member {
    margin-bottom: 20px;
  }
  
  .blog-card {
    margin-bottom: 20px;
  }
  
  .swiper-slide {
    padding: 0 15px;
  }
  
  /* Disable animations on mobile */
  @media (prefers-reduced-motion: reduce) {
    .shape-1,
    .shape-2 {
      animation: none;
    }
    
    .service-card:hover,
    .price-card:hover,
    .blog-card:hover,
    .core-info-item:hover {
      transform: none;
    }
    
    .team-member:hover .team-img img,
    .blog-card:hover .blog-img img,
    .gallery-item:hover img {
      transform: none;
    }
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 80px;
  }
  
  section {
    padding: 70px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .team-member {
    margin-bottom: 25px;
  }
  
  .blog-card {
    margin-bottom: 25px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .service-card,
  .price-card,
  .review-card {
    padding: 25px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Styles for large devices */
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

/* Disable autoplay on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .swiper-autoplay {
    animation: none !important;
    transition: none !important;
  }
  
  .swiper {
    --swiper-autoplay-delay: 0 !important;
  }
}

/* Print styles */
@media print {
  header,
  footer,
  .breadcrumb-section,
  .hero,
  .contact-form,
  .gallery-item,
  .shape {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  .container {
    max-width: 100%;
    width: 100%;
  }
} 