/* Responsive Styles */

/* 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.2rem;
  }
  
  .team-member img {
    width: 180px;
    height: 180px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-feature,
  .services-item,
  .features-item,
  .price-plan,
  .core-info-item {
    margin-bottom: 2rem;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  .contact-info {
    margin-top: 3rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1rem;
  }
  
  .section-title p {
    font-size: 0.9rem;
  }
  
  .about-feature,
  .services-item,
  .features-item,
  .price-plan,
  .core-info-item {
    margin-bottom: 2rem;
  }
  
  .contact-info {
    margin-top: 3rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-padding {
    padding: 2rem 0;
  }
  
  .hero-section {
    min-height: 450px;
  }
  
  .hero-content h1 {
    font-size: 1rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .section-title h2::after {
    width: 30px;
  }
  
  .section-title p {
    font-size: 0.9rem;
  }
  
  .about-feature,
  .services-item,
  .features-item,
  .price-plan,
  .team-member,
  .core-info-item {
    margin-bottom: 2rem;
  }
  
  .services-item img {
    height: 180px;
  }
  
  .review-item {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .contact-info {
    margin-top: 2rem;
    padding: 2rem;
  }
  
  footer {
    padding: 2rem 0 1rem;
  }
  
  footer h4 {
    margin-bottom: 1.5rem;
  }
  
  footer .col-md-3 {
    margin-bottom: 2rem;
  }
  
  /* Disable animations on mobile for better performance */
  .team-member:hover,
  .services-item:hover,
  .price-plan:hover,
  .core-info-item:hover,
  .blog-item:hover,
  .about-feature:hover {
    transform: none;
  }
  
  /* Respect prefers-reduced-motion */
  @media (prefers-reduced-motion: reduce) {
    .team-member,
    .services-item,
    .price-plan,
    .core-info-item,
    .blog-item,
    .about-feature {
      transition: none;
    }
    
    .team-member:hover,
    .services-item:hover,
    .price-plan:hover,
    .core-info-item:hover,
    .blog-item:hover,
    .about-feature:hover {
      transform: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .swiper-container {
      --swiper-theme-color: var(--primary-2);
    }
    
    .swiper-button-next,
    .swiper-button-prev {
      display: none;
    }
  }
} 