/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .service-card, .price-card {
    height: calc(100% - 2rem);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .service-card, .price-card, .blog-card {
    margin-bottom: 1.5rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  section {
    padding: 2.5rem 0;
  }
  
  .hero-section {
    min-height: 60vh;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .service-card, .price-card, .blog-card, .about-feature, .coreinfo-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item {
    margin-bottom: 15px;
  }
  
  footer {
    text-align: center;
    padding: 3rem 0 1.5rem;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
}

/* Animation reduction for 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;
  }
  
  .service-card:hover,
  .price-card:hover,
  .blog-card:hover,
  .about-feature:hover,
  .gallery-item:hover img {
    transform: none !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0ms;
  }
} 