/* Responsive Styles */

/* Extra Large Devices (>=1200px) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large Devices (>=992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .service-item {
    padding: 25px;
  }
  
  .team-member .team-img {
    width: 180px;
    height: 180px;
  }
}

/* Medium Devices (>=768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  section {
    padding: 60px 0;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .about-feature {
    margin-bottom: 30px;
  }
  
  .service-item {
    margin-bottom: 30px;
  }
  
  .feature-item {
    margin-bottom: 30px;
  }
  
  .price-item {
    margin-bottom: 30px;
  }
  
  .team-member {
    margin-bottom: 40px;
  }
}

/* Small Devices (>=576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 50px 0;
  }
  
  .hero-section {
    min-height: 60vh;
  }
  
  .hero-section h1 {
    font-size: 2.25rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .about-feature {
    margin-bottom: 30px;
  }
  
  .service-item {
    margin-bottom: 30px;
  }
  
  .feature-item {
    margin-bottom: 30px;
  }
  
  .price-item {
    margin-bottom: 30px;
  }
  
  .team-member {
    margin-bottom: 40px;
  }
  
  footer {
    padding: 40px 0 20px;
  }
  
  .contact-form {
    padding: 30px;
    margin-bottom: 30px;
  }
}

/* Extra Small Devices (<576px) */
@media (max-width: 575.98px) {
  section {
    padding: 40px 0;
  }
  
  h1, h2, h3 {
    margin-bottom: 1rem;
  }
  
  .hero-section {
    min-height: 50vh;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .about-feature {
    margin-bottom: 30px;
  }
  
  .service-item {
    margin-bottom: 30px;
  }
  
  .feature-item {
    margin-bottom: 30px;
  }
  
  .price-item {
    margin-bottom: 30px;
  }
  
  .team-member {
    margin-bottom: 40px;
  }
  
  .team-member .team-img {
    width: 150px;
    height: 150px;
  }
  
  .blog-item .blog-img {
    height: 180px;
  }
  
  .contact-form {
    padding: 25px;
    margin-bottom: 30px;
  }
  
  footer {
    padding: 40px 0 20px;
  }
  
  footer .footer-col {
    margin-bottom: 30px;
  }

  /* Disable animations on mobile */
  @media (prefers-reduced-motion: reduce) {
    .animate-fade-up,
    .animate-fade-in {
      transition: none;
      transform: none;
      opacity: 1;
    }
    
    .swiper-slide {
      transition: none;
    }
  }
} 