/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
  .hero-title-1 {
    font-size: 2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-heading h2 {
    font-size: 1.8rem;
  }
  
  .team-member-img {
    width: 150px;
    height: 150px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .service-item, 
  .about-feature, 
  .price-plan-item, 
  .core-info-item {
    padding: 1.5rem;
  }
  
  footer {
    padding: 2rem 0 1rem;
  }
  
  .shape-decorator {
    display: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  section {
    padding: 3.5rem 0;
  }
  
  .service-item, 
  .about-feature, 
  .price-plan-item, 
  .core-info-item {
    padding: 1.75rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title-1 {
    font-size: 3rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .team-member-img {
    width: 180px;
    height: 180px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title-1 {
    font-size: 3.2rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
  }
}

/* Reduce animations for users who prefer 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;
  }
  
  .animate-fadeInUp {
    animation: none !important;
    opacity: 1;
    transform: translateY(0);
  }
  
  .service-item:hover,
  .about-feature:hover,
  .price-plan-item:hover,
  .core-info-item:hover,
  .blog-item:hover {
    transform: none;
  }
  
  .gallery-img:hover {
    transform: none;
  }
} 