/* Responsive Styles */

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-desc {
    font-size: 0.95rem;
  }
  
  /* Static Hero Responsive */
  .static-hero {
    padding-top: 60px;
  }
  
  .static-hero .hero-content {
    padding: 2rem 0;
    text-align: center;
  }
  
  .static-hero .hero-bg::before {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
  }
  
  .team-member-img {
    width: 150px;
    height: 150px;
  }
  
  .service-item-img {
    height: 160px;
  }
  
  .price-item {
    margin-bottom: 1.5rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  /* Static Hero Responsive */
  .static-hero {
    padding-top: 70px;
  }
  
  .static-hero .hero-content {
    padding: 2rem 0;
    text-align: center;
  }
  
  .static-hero .hero-bg::before {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
  }
  
  .service-item-img {
    height: 180px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0.75rem;
  }
  
  .hero-content {
    max-width: 90%;
    margin: 0 auto;
  }
  
  /* Static Hero Responsive */
  .static-hero .hero-content {
    text-align: center;
    padding: 2rem 0;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
  
  .hero-content {
    max-width: 700px;
  }
}

/* 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;
  }
}

/* Landscape orientation on mobile devices */
@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 480px;
  }
  
  .hero-slide {
    height: auto;
    min-height: 480px;
  }
  
  .hero-content {
    padding: 4rem 2rem;
  }
} 