/* Extra Large Devices (Large Desktops) */
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Large Devices (Desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title-1 {
    font-size: 3rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.3rem;
  }
  
  .hero {
    height: 90vh;
  }
}

/* Medium Devices (Tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.2rem;
  }
  
  .hero {
    height: auto;
    padding: 100px 0;
  }
  
  .hero-img {
    margin-top: 50px;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-img {
    margin-bottom: 40px;
  }
  
  .float-animation {
    animation: none;
  }
  
  @media (prefers-reduced-motion) {
    .float-animation {
      animation: none;
    }
  }
}

/* Small Devices (Landscape Phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title-1 {
    font-size: 2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  .hero {
    height: auto;
    padding: 80px 0;
  }
  
  .hero-img {
    margin-top: 40px;
    text-align: center;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .about-img {
    margin-bottom: 30px;
  }
  
  .navbar-collapse {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
  
  .float-animation {
    animation: none;
  }
  
  .navbar-brand {
    font-size: 24px;
  }
  
  .team-item, .service-item, .price-item {
    margin-bottom: 20px;
  }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575.98px) {
  .hero-title-1 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1rem;
  }
  
  .hero {
    height: auto;
    padding: 60px 0;
  }
  
  .hero-img {
    margin-top: 30px;
    text-align: center;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .section-title h2::after {
    width: 40px;
    bottom: -8px;
  }
  
  .about-img {
    margin-bottom: 30px;
  }
  
  .navbar-collapse {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .navbar-brand {
    font-size: 22px;
  }
  
  .team-item, .service-item, .price-item {
    margin-bottom: 20px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .footer {
    padding: 50px 0 20px;
    text-align: center;
  }
  
  .footer-contact-item {
    justify-content: center;
  }
  
  .footer-logo {
    margin-bottom: 30px;
  }
  
  .float-animation {
    animation: none;
  }
}

/* Media query for motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .float-animation {
    animation: none;
  }
  
  .swiper-slide,
  .swiper-wrapper {
    transition-timing-function: linear !important;
  }
  
  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
} 