/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .team-card, 
  .blog-card,
  .service-card,
  .price-card {
    margin-bottom: 30px;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  /* Disable animations on tablet and below */
  .blob, 
  .shape {
    display: none;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-section {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-image {
    margin-top: 40px;
  }
  
  .section-title {
    margin-bottom: 3rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  footer {
    padding: 60px 0 30px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
  
  /* Disable swiper autoplay on mobile */
  .swiper-autoplay {
    display: none;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
} 