/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title h2 {
    font-size: 2.25rem;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 15px;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  
  .shape-blob-1,
  .shape-blob-2 {
    width: 300px;
    height: 300px;
  }
  
  .team-img img {
    height: 300px;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  
  .section-padding {
    padding: 3.5rem 0;
  }
  
  .hero {
    height: auto;
    padding: 6rem 0 4rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-img {
    margin-top: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 1.875rem;
  }
  
  .section-title h2:after {
    width: 60px;
    height: 3px;
  }
  
  .shape-blob-1,
  .shape-blob-2 {
    width: 250px;
    height: 250px;
  }
  
  .about-feature,
  .service-item,
  .pricing-item,
  .team-member,
  .testimonial-item,
  .info-item,
  .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .about-feature:hover,
  .service-item:hover,
  .pricing-item:hover,
  .team-member:hover,
  .info-item:hover,
  .blog-item:hover {
    transform: translateY(-5px);
  }
  
  .team-img img {
    height: 280px;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  html {
    font-size: 14px;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero {
    height: auto;
    padding: 5rem 0 3rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-img {
    margin-top: 2rem;
  }
  
  .hero .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .section-title h2:after {
    width: 50px;
    height: 3px;
  }
  
  .section-title p {
    font-size: 0.9rem;
  }
  
  .shape-blob-1,
  .shape-blob-2 {
    width: 200px;
    height: 200px;
  }
  
  .about-feature,
  .service-item,
  .feature-item,
  .pricing-item,
  .team-member,
  .testimonial-item,
  .info-item,
  .blog-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .about-feature i,
  .feature-item i,
  .info-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .about-feature h3,
  .service-item h3,
  .feature-item h3,
  .info-item h3,
  .blog-content h3 {
    font-size: 1.25rem;
  }
  
  .service-item img {
    height: 180px;
  }
  
  .pricing-header {
    padding: 1.5rem;
  }
  
  .pricing-price {
    font-size: 2rem;
  }
  
  .pricing-body {
    padding: 1.5rem;
  }
  
  .team-img img {
    height: 250px;
  }
  
  .testimonial-item {
    padding: 1.5rem;
  }
  
  .testimonial-item:after {
    font-size: 2rem;
  }
  
  .blog-img img {
    height: 200px;
  }
  
  .blog-content {
    padding: 1.25rem;
  }
  
  .accordion-button,
  .accordion-body {
    padding: 1.25rem;
  }
  
  .footer {
    padding: 2.5rem 0 1rem;
  }
  
  .footer-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  #site-copyright {
    text-align: center;
    margin-top: 1rem;
  }
  
  /* Move prefers-reduced-motion considerations */
  @media (prefers-reduced-motion: reduce) {
    .hero,
    .about-feature,
    .service-item,
    .feature-item,
    .pricing-item,
    .team-member,
    .testimonial-item,
    .info-item,
    .blog-item,
    .gallery-item {
      transition: none;
    }
    
    .shape-blob-1,
    .shape-blob-2 {
      animation: none;
    }
    
    .swiper-container {
      --swiper-autoplay: false;
    }
  }
} 