/* Responsive CSS */

/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 5rem 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .service-img {
    height: 180px;
  }
  
  .team-img {
    height: 250px;
  }
  
  .gallery-img {
    height: 200px;
  }
  
  .footer-col {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 5rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .service-img {
    height: 200px;
  }
  
  .team-img {
    height: 275px;
  }
  
  .gallery-img {
    height: 220px;
  }
  
  .footer-col {
    margin-bottom: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
  }
  
  .service-img {
    height: 180px;
  }
  
  .team-img {
    height: 250px;
  }
  
  .gallery-img {
    height: 200px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
  }
  
  .service-img {
    height: 190px;
  }
  
  .team-img {
    height: 275px;
  }
  
  .gallery-img {
    height: 220px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-content h1 {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 2.75rem;
  }
  
  .section-subtitle {
    font-size: 1.3rem;
  }
  
  .service-img {
    height: 200px;
  }
  
  .team-img {
    height: 300px;
  }
  
  .gallery-img {
    height: 250px;
  }
}

/* Utility classes for responsive design */
@media (max-width: 767.98px) {
  .text-center-sm {
    text-align: center !important;
  }
  
  .mb-4-sm {
    margin-bottom: 1.5rem !important;
  }
  
  .mt-4-sm {
    margin-top: 1.5rem !important;
  }
}

/* Respect prefers-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;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 999999s;
  }
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-toggler {
    border: none;
    color: var(--neutral-color-light);
    font-size: 1.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .nav-link {
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
} 