/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large Devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title-1 {
    font-size: 3rem;
  }
  
  .service-card {
    height: 100%;
  }
}

/* Medium Devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
  
  .navbar-toggler {
    display: block;
  }
  
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: white;
    padding: 20px;
    transition: all 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
  }
  
  .navbar-collapse.show {
    left: 0;
  }
  
  .navbar-nav {
  flex-direction: row;
    display: block;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-img, .about-text {
    width: 100%;
  }
  
  .services-grid,
  .features-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .priceplan-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid,
  .features-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
  
  .hero-title-1 {
    font-size: 2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .service-card,
  .review-card {
    margin-bottom: 20px;
  }
}

/* Handle Reduced Motion Preference */
@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-pagination-bullet-inactive-opacity: 0.5;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  .gallery-item:hover .gallery-img {
    transform: none;
  }
} 