/* Responsive Styles */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 15px;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .team-img {
    height: 250px;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-section {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .section-title {
    margin-bottom: 3rem;
  }
  
  .section-title h2 {
    font-size: 1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .service-img {
    height: 180px;
  }
  
  .team-img {
    height: 220px;
  }
  
  .footer-heading {
    margin-top: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .hero-section {
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
  }
  
  .hero-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-desc {
    font-size: 0.9rem;
  }
  
  .section-title {
    margin-bottom: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .section-title h2:after {
    bottom: -10px;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .about-feature {
    padding: 1.5rem;
  }
  
  .service-img {
    height: 160px;
  }
  
  .service-content {
    padding: 1.2rem;
  }
  
  .service-price {
    font-size: 1rem;
  }
  
  .team-img {
    height: 200px;
  }
  
  .footer-heading {
    margin-top: 2rem;
    font-size: 1.3rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .coreinfo-item {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .btn-submit {
    padding: 0.6rem 1.5rem;
  }
  
  .price-header {
    padding: 1.5rem;
  }
  
  .price-content {
    padding: 1.5rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 999999s;
  }
  
  .about-feature:hover,
  .service-card:hover,
  .feature-item:hover,
  .price-card:hover,
  .team-card:hover,
  .coreinfo-item:hover,
  .blog-card:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .rotating-bg {
    animation: none;
  }
} 