/* 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: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .gallery-container {
    column-count: 3;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  .hero-section {
    min-height: 450px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .gallery-container {
    column-count: 2;
  }
  
  .services-item,
  .features-item,
  .about-feature,
  .team-member,
  .coreinfo-item,
  .priceplan-item {
    margin-bottom: 30px;
  }
  
  .swiper-container {
    padding: 0 30px;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  
  .hero-section {
    min-height: 400px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .gallery-container {
    column-count: 2;
  }
  
  .services-item,
  .features-item,
  .about-feature,
  .team-member,
  .coreinfo-item,
  .priceplan-item {
    margin-bottom: 30px;
  }
  
  .swiper-container {
    padding: 0 20px;
  }
  
  footer {
    padding: 3rem 0 1rem;
  }
  
  .footer-info {
    margin-bottom: 2rem;
  }
  
  .footer-links {
    margin-bottom: 2rem;
  }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  .hero-section {
    min-height: 350px;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .gallery-container {
    column-count: 1;
  }
  
  .services-item,
  .features-item,
  .about-feature,
  .team-member,
  .coreinfo-item,
  .priceplan-item {
    margin-bottom: 30px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  footer {
    padding: 3rem 0 1rem;
  }
  
  .footer-info {
    margin-bottom: 2rem;
  }
  
  .footer-links {
    margin-bottom: 2rem;
  }
  
  .footer-heading {
    margin-top: 2rem;
  }
  
  .swiper-container {
    padding: 0 10px;
  }
  
  #sitename {
    font-size: 1.5rem;
  }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    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;
  }
} 