/* 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-section {
    min-height: 90vh;
  }
  
  .team-image {
    width: 180px;
    height: 180px;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-section {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .team-image {
    width: 160px;
    height: 160px;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
  }
  
  .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
  }
  
  .reviews-slider .swiper-slide {
    padding: 0 1rem;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  section {
    padding: 3rem 0;
  }
  
  .section-heading {
    margin-bottom: 2.5rem;
  }
  
  .hero-section {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 3rem;
    text-align: center;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .services-card, 
  .price-card, 
  .info-card {
    margin-bottom: 1.5rem;
  }
  
  .team-card {
    margin-bottom: 2.5rem;
  }
  
  .team-image {
    width: 150px;
    height: 150px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .reviews-slider .swiper-slide {
    padding: 0 0.5rem;
  }
  
  footer {
    text-align: center;
  }
  
  footer .col-md-3 {
    margin-bottom: 2rem;
  }
  
  #site-copyright {
    margin-top: 1rem;
  }
  
  .shape-1, .shape-2 {
    display: none;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  section {
    padding: 2.5rem 0;
  }
  
  .section-heading {
    margin-bottom: 2rem;
  }
  
  .hero-section {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 2.5rem;
    text-align: center;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .services-card, 
  .price-card, 
  .info-card,
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .team-card {
    margin-bottom: 2.5rem;
  }
  
  .team-image {
    width: 140px;
    height: 140px;
  }
  
  .contact-form {
    padding: 1.25rem;
  }
  
  .reviews-slider .swiper-slide {
    padding: 0;
  }
  
  footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  footer .col-md-3 {
    margin-bottom: 1.5rem;
  }
  
  #site-copyright {
    margin-top: 1rem;
    font-size: 0.8rem;
  }
  
  .shape-1, .shape-2 {
    display: none;
  }
  
  .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  p {
    font-size: 0.95rem;
  }
}

/* Accessibility: Respect 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: 0 !important;
  }
} 