/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .team-img {
    height: 250px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .shape {
    display: none;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .shape-1, .shape-3 {
    display: none;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .about-feature, .services-item, .team-card {
    margin-bottom: 30px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.3rem;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* Ensure animations disable for users who prefer 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;
  }
  
  .fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  .swiper-container {
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-opacity: 1;
  }
  
  .swiper-container[data-swiper-autoplay] {
    --swiper-autoplay: false !important;
  }
}

/* Mobile Menu Adjustments */
@media (max-width: 991.98px) {
  header {
    background-color: white;
    position: relative;
  }
  
  .navbar-brand, .nav-link {
    color: var(--primary-color-4-dark) !important;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar-collapse {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-top: 1rem;
  }
} 