/* 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-title {
    font-size: 2.2rem;
  }
}

/* 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.3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .service-card,
  .price-card,
  .team-member,
  .feature-item,
  .coreinfo-item {
    padding: 20px 15px;
  }
  
  .service-name,
  .price-name {
    font-size: 1.3rem;
  }
  
  .service-price,
  .price-amount {
    font-size: 1rem;
  }
}

/* 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.2rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .about-feature,
  .service-card,
  .price-card,
  .team-member,
  .feature-item,
  .coreinfo-item {
    margin-bottom: 15px;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-desc {
    font-size: 0.9rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .about-feature,
  .service-card,
  .price-card,
  .team-member,
  .feature-item,
  .coreinfo-item {
    margin-bottom: 15px;
    padding: 15px;
  }
  
  .service-name,
  .price-name,
  .team-member-name,
  .feature-name,
  .coreinfo-item-title {
    font-size: 1.1rem;
  }
  
  .service-price,
  .price-amount {
    font-size: 1rem;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .footer {
    padding: 30px 0 15px;
  }
  
  .footer-column {
    margin-bottom: 20px;
  }
  
  .blog-item-title {
    font-size: 1.1rem;
  }
}

/* Specific adjustments for navigation on mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #fff;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-link {
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .nav-link:last-child {
    border-bottom: 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;
  }
} 