/* 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: 1199.98px) {
  .hero-section {
    min-height: 90vh;
  }

  .shape-blob-1 {
    width: 150px;
    height: 150px;
  }

  .shape-blob-2 {
    width: 250px;
    height: 250px;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }

  .hero-section {
    min-height: 80vh;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .shape-blob-1, .shape-blob-2 {
    display: none;
  }

  .service-card, .price-card, .review-card, .team-card {
    margin-bottom: 2rem;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-10px);
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }

  .hero-section {
    min-height: 70vh;
    text-align: center;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .shape-blob-1, .shape-blob-2 {
    display: none;
  }

  .service-card, .price-card, .review-card, .team-card, .blog-card, .about-feature {
    margin-bottom: 2rem;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-10px);
  }

  .hero-section .btn {
    margin-bottom: 1rem;
  }

  .contact-form-container {
    padding: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  section {
    padding: 2.5rem 0;
  }

  .hero-section {
    min-height: 60vh;
    text-align: center;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .shape-blob-1, .shape-blob-2 {
    display: none;
  }

  .service-card, .price-card, .review-card, .team-card, .blog-card, .about-feature, .feature-item, .coreinfo-item {
    margin-bottom: 1.5rem;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-10px);
  }

  .hero-section .btn {
    margin-bottom: 1rem;
    display: block;
    width: 100%;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  footer {
    text-align: center;
  }

  footer h4 {
    margin-top: 2rem;
  }

  .gallery-img img {
    height: 200px;
  }

  .team-img {
    height: 250px;
  }
}

/* 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; /* Effectively disable autoplay */
  }
}

/* Fix for Swiper slider on mobile */
@media (max-width: 767.98px) {
  .swiper-container {
    --swiper-autoplay-delay: 999999s; /* Disable autoplay on mobile */
  }

  .swiper-button-next, .swiper-button-prev {
    display: none; /* Hide navigation arrows on mobile */
  }
} 