/* Responsive styles */

/* Large desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Desktop */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .hero-section {
    min-height: 600px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .price-item.featured {
    transform: scale(1.03);
  }
  
  .price-item.featured:hover {
    transform: scale(1.03) translateY(-10px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 1rem;
  }
  
  .hero-section {
    min-height: 500px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 1rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
  }
  
  .hero-image {
    margin-top: 30px;
  }
  
  .about-content {
    padding: 15px 0;
    margin-top: 30px;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .service-item {
    padding: 20px 15px;
  }
  
  .feature-item {
    padding: 20px 15px;
  }
  
  .coreinfo-item {
    padding: 20px 15px;
  }
  
  .price-item {
    padding: 30px 20px;
  }
  
  .price-item.featured {
    transform: none;
  }
  
  .price-item.featured:hover {
    transform: translateY(-10px);
  }
  
  .team-item {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .review-item {
    padding: 20px 15px;
  }
  
  .contact-form {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .contact-info {
    padding: 30px 20px;
  }
  
  .blog-item {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer {
    padding: 60px 0 20px;
  }
  
  .footer-widget {
    margin-bottom: 40px;
  }
  
  /* Animation adjustments */
  @media (prefers-reduced-motion: reduce) {
    .fadeIn {
      animation: none;
    }
    
    .service-item:hover,
    .feature-item:hover,
    .price-item:hover,
    .team-item:hover,
    .blog-item:hover,
    .coreinfo-item:hover,
    .about-feature:hover {
      transform: none;
    }
    
    .about-image img,
    .team-image img,
    .blog-image img {
      transition: none;
    }
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 1rem;
  }
  
  .hero-content h1 {
    font-size: 1rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
  }
  
  .review-author {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .review-author-img {
    margin-bottom: 15px;
  }
}

/* Animation and transitions for mobile devices */
@media (max-width: 767px) {
  .swiper-container {
    height: auto !important;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
} 