/* Responsive Styles */

/* Large Devices (Desktops) */
@media (max-width: 1199.98px) {
  .hero-title-1 {
    font-size: 3rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.3rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.2rem;
  }
  
  .hero-shape {
    width: 400px;
    height: 400px;
  }
  
  .hero-shape-2 {
    width: 250px;
    height: 250px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .team-img {
    width: 150px;
    height: 150px;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-title-1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  .hero-desc-1 {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-shape {
    width: 300px;
    height: 300px;
  }
  
  .hero-shape-2 {
    width: 200px;
    height: 200px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .about-img {
    margin-bottom: 2rem;
  }
  
  .review-item {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  footer {
    padding: 3rem 0 2rem;
  }
  
  /* Disable animations for accessibility */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
    }
  }
  
  .swiper-container {
    padding-bottom: 3rem;
  }
  
  .swiper-pagination {
    bottom: 0 !important;
  }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575.98px) {
  section {
    padding: 2rem 0;
  }
  
  .hero-title-1 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1rem;
  }
  
  .hero-shape {
    width: 200px;
    height: 200px;
  }
  
  .hero-shape-2 {
    width: 150px;
    height: 150px;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .section-title h2:after {
    width: 40px;
  }
  
  .team-img {
    width: 120px;
    height: 120px;
  }
  
  .review-author {
    flex-direction: column;
    text-align: center;
  }
  
  .review-author-img {
    margin: 0 auto 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .blog-img {
    height: 200px;
  }
  
  .gallery-item {
    height: 200px;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-pagination-bullet-inactive-opacity: 1;
  }
  
  .service-card:hover,
  .price-card:hover,
  .about-feature:hover,
  .core-info-item:hover {
    transform: none !important;
  }
  
  .service-card:hover .service-img img,
  .blog-card:hover .blog-img img,
  .gallery-item:hover img {
    transform: none !important;
  }
} 