/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero {
    min-height: 80vh;
  }
  
  .shape-1 {
    width: 250px;
    height: 250px;
  }
  
  .shape-2 {
    width: 200px;
    height: 200px;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .shape-1, .shape-2 {
    width: 180px;
    height: 180px;
  }
  
  .navbar-brand {
    font-size: 1.6rem;
  }
  
  .service-card, .price-card, .team-card, .blog-card {
    margin-bottom: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }
  
  .shape-1, .shape-2 {
    width: 150px;
    height: 150px;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .about-feature, .service-card, .feature-card, .price-card, .team-card, .info-card, .blog-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  
  footer {
    padding: 3rem 0 2rem;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  section {
    padding: 2.5rem 0;
  }
  
  .hero {
    min-height: auto;
    padding: 8rem 0 3rem;
  }
  
  .shape-1, .shape-2 {
    width: 120px;
    height: 120px;
  }
  
  .navbar-brand {
    font-size: 1.4rem;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .section-title {
    margin-bottom: 1.5rem;
  }
  
  .about-feature, .service-card, .feature-card, .price-card, .team-card, .info-card, .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  footer {
    padding: 2.5rem 0 1.5rem;
  }
  
  .footer-widget {
    margin-bottom: 1.5rem;
  }
  
  .btn-primary, .btn-secondary {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  /* Swiper adjustments */
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}

/* 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;
  }
} 