/* 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-content h1 {
    font-size: 3.5rem;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .hero-image {
    margin-top: 3rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .services-item {
    margin-bottom: 2rem;
  }
  
  .team-info {
    margin-top: -30px;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero-image {
    margin-top: 3rem;
    text-align: center;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .services-item,
  .priceplan-item,
  .team-member,
  .coreinfo-item {
    margin-bottom: 2rem;
  }
  
  .reviews-item {
    margin: 0 0 1rem;
  }
  
  .team-info {
    margin-top: -25px;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  html {
    font-size: 14px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .hero-image {
    margin-top: 3rem;
    text-align: center;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .services-item,
  .priceplan-item,
  .team-member,
  .coreinfo-item,
  .blog-item {
    margin-bottom: 2rem;
  }
  
  .reviews-item {
    margin: 0 0 1rem;
  }
  
  .team-info {
    margin-top: -20px;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .priceplan-price {
    font-size: 2.5rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
  }
}

/* Respect 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: 0 !important;
  }
  
  .swiper-container .swiper-wrapper {
    transition-timing-function: linear !important;
  }
}

/* Mobile - disable autoplay */
@media (max-width: 768px) {
  .swiper-container {
    --swiper-autoplay-delay: 0 !important;
  }
} 