/* 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-title-1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-feature,
  .service-card,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .team-image {
    height: 250px;
  }
  
  .gallery-image,
  .blog-image {
    height: 200px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: auto;
    padding: 5rem 0;
  }
  
  .hero-title-1 {
    font-size: 2.25rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  .hero-desc-1 {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .about-feature,
  .service-card,
  .price-card,
  .coreinfo-item {
    margin-bottom: 1.5rem;
  }
  
  .review-card {
    margin: 0.5rem;
  }
  
  .team-image {
    height: 220px;
  }
  
  .gallery-image,
  .blog-image {
    height: 180px;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  section {
    padding: 2.5rem 0;
  }
  
  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .hero-title-1 {
    font-size: 2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1rem;
  }
  
  .hero-desc-1 {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .service-card,
  .about-feature,
  .price-card,
  .team-card,
  .coreinfo-item,
  .blog-card,
  .gallery-item {
    margin-bottom: 1.5rem;
  }
  
  .team-image {
    height: 200px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  footer {
    padding: 2.5rem 0 1.5rem;
    text-align: center;
  }
  
  footer .col-md-4 {
    margin-bottom: 1.5rem;
  }
}

/* Respect prefers-reduced-motion setting */
@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 {
    --swiper-autoplay-delay: 999999s;
  }
} 