/* 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-title {
    font-size: 3rem;
  }
  
  .section {
    padding: 5rem 0;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .services-item,
  .priceplan-item,
  .about-feature,
  .features-item,
  .coreinfo-item {
    padding: 1.5rem;
  }
  
  .services-price {
    font-size: 1.5rem;
  }
  
  .priceplan-price {
    font-size: 2.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  section {
    padding: 3.5rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-item,
  .priceplan-item,
  .about-feature,
  .features-item,
  .coreinfo-item,
  .review-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .services-price {
    font-size: 1.4rem;
  }
  
  .priceplan-price {
    font-size: 2.2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-title {
    margin-top: 2rem;
  }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .services-item,
  .priceplan-item,
  .about-feature,
  .features-item,
  .coreinfo-item,
  .review-item {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .services-price {
    font-size: 1.3rem;
  }
  
  .priceplan-price {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 1.2rem;
  }
  
  .footer {
    padding: 2.5rem 0 1rem;
  }
  
  .footer-title {
    margin-top: 2rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .blog-content {
    padding: 1.2rem;
  }
  
  .blog-title {
    font-size: 1.2rem;
  }
  
  .faq-accordion .accordion-button {
    padding: 1rem;
  }
  
  .faq-accordion .accordion-body {
    padding: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .team-details {
    padding: 1rem;
  }
  
  .team-name {
    font-size: 1.2rem;
  }
}

/* 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;
  }
} 