/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  h1, .hero-title {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    height: auto;
    padding: 6rem 0;
  }
  
  .hero::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.3;
  }
  
  .hero-img {
    margin-top: 3rem;
  }
  
  .service-card,
  .team-card,
  .blog-card,
  .price-card,
  .contact-form {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  #sitename {
    font-size: 1.5rem;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
    text-align: center;
  }
  
  footer .col-md-3 {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  h1, .hero-title {
    font-size: 3rem;
  }
  
  .hero {
    height: auto;
    padding: 6rem 0;
  }
  
  .hero::before {
    width: 60%;
  }
  
  .hero-img {
    margin-top: 3rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .service-card,
  .team-card,
  .blog-card,
  .price-card {
    margin-bottom: 2rem;
  }
  
  footer {
    padding: 4rem 0 2rem;
  }
  
  footer .col-md-3 {
    margin-bottom: 2rem;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  h1, .hero-title {
    font-size: 3.2rem;
  }
  
  .hero {
    height: auto;
    min-height: 80vh;
    padding: 6rem 0;
  }
  
  .section {
    padding: 4.5rem 0;
  }
  
  .service-card,
  .team-card,
  .blog-card {
    margin-bottom: 2rem;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero {
    min-height: 90vh;
  }
}

/* Extra Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* Disable animations for users who prefer 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: 0ms !important;
  }
} 