/* Extra large devices (large desktops, 1200px and up) */
@media (max-width: 1399.98px) {
  .hero-title {
    font-size: 3rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  section {
    padding: 4rem 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
  .hero {
    text-align: center;
  }
  
  .hero-img {
    margin-top: 2rem;
  }
  
  .hero-desc {
    margin: 0 auto 2.5rem;
  }
  
  .contact-info {
    margin-top: 2rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
  .hero {
    min-height: auto;
    padding: 8rem 0 5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .about-feature, 
  .services-item, 
  .features-item, 
  .priceplan-item, 
  .team-member, 
  .coreinfo-item, 
  .blog-item {
    margin-bottom: 2rem;
  }
  
  footer {
    padding: 3rem 0 1rem;
  }
  
  .footer-col {
    margin-bottom: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .reviews-item {
    margin: 0 0 1rem;
  }
}

/* Animation Control for 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;
  }
} 