/* Responsive Styles */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-img {
    width: 150px;
    height: 150px;
  }
  
  .about-features .col-md-3 {
    width: 50%;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card {
    margin-bottom: var(--space-md);
  }
  
  .price-card {
    margin-bottom: var(--space-md);
  }
  
  .team-card {
    margin-bottom: var(--space-xl);
  }
  
  .about-features .col-sm-6 {
    width: 100%;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    margin-bottom: var(--space-md);
  }
  
  .price-card {
    margin-bottom: var(--space-md);
  }
  
  .team-card {
    margin-bottom: var(--space-xl);
  }
  
  .feature-item {
    flex-direction: column;
  }
  
  .feature-icon {
    margin-bottom: var(--space-sm);
  }
  
  .about-features .col-6 {
    width: 100%;
  }
  
  .review-slider .swiper-slide {
    padding: var(--space-xs);
  }
  
  /* Respect prefers-reduced-motion at small screen sizes */
  @media (prefers-reduced-motion: reduce) {
    *, ::after, ::before {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    
    .swiper-container {
      --swiper-autoplay-delay: 0 !important;
    }
  }
} 