/* 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-content h1 {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.25rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-slide, .hero-slider {
    height: 70vh;
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-feature, .feature-item, .coreinfo-item {
    padding: 1.5rem;
  }
  
  .service-img, .blog-img {
    height: 170px;
  }
  
  .team-img {
    height: 250px;
  }
  
  .price-card {
    padding: 2rem 1.5rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero-slide, .hero-slider {
    height: 60vh;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .section-title h2:after {
    width: 40px;
  }
  
  .service-img, .blog-img {
    height: 160px;
  }
  
  .team-img {
    height: 220px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  section {
    padding: 2.5rem 0;
  }
  
  .hero-slide, .hero-slider {
    height: 50vh;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-title h2 {
    font-size: 1rem;
  }
  
  .section-title h2:after {
    width: 30px;
  }
  
  .about-feature, .feature-item, .coreinfo-item {
    margin-bottom: 1.5rem;
  }
  
  .service-img, .blog-img {
    height: 180px;
  }
  
  .team-img {
    height: 200px;
  }
  
  .review-item {
    padding: 1.5rem;
  }
  
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .contact-form {
    margin-bottom: 2rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
    text-align: center;
  }
  
  .footer-title {
    margin-top: 1.5rem;
  }
  
  /* Disable animations for smaller devices for better performance */
  .animate-up {
    animation: none;
  }
}

/* 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;
  }
} 