/* Responsive Styles */

/* 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-section {
    min-height: 90vh;
  }
  
  .team-img {
    height: 250px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  html {
    font-size: 95%;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero-section {
    min-height: 75vh;
  }
  
  .about-feature,
  .service-card,
  .price-card,
  .team-member,
  .review-item,
  .core-info-item,
  .blog-item {
    margin-bottom: 2rem;
  }
  
  .team-img {
    height: 220px;
  }
  
  .gallery-img {
    height: 200px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  html {
    font-size: 90%;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 60vh;
  }
  
  .about-feature,
  .service-card,
  .price-card,
  .team-member,
  .review-item,
  .core-info-item,
  .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .team-img {
    height: 200px;
  }
  
  .gallery-img {
    height: 180px;
  }
  
  /* Disable animations on smaller screens */
  .about-feature:hover,
  .service-card:hover,
  .price-card:hover,
  .team-member:hover,
  .core-info-item:hover,
  .blog-item:hover,
  .feature-item:hover {
    transform: none;
  }
  
  .gallery-item:hover .gallery-img {
    transform: none;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  html {
    font-size: 85%;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .hero-section {
    min-height: 50vh;
  }
  
  .about-feature,
  .service-card,
  .price-card,
  .team-member,
  .review-item,
  .core-info-item,
  .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .team-img {
    height: 180px;
  }
  
  .gallery-img {
    height: 150px;
  }
  
  /* Disable animations on mobile */
  .about-feature:hover,
  .service-card:hover,
  .price-card:hover,
  .team-member:hover,
  .core-info-item:hover,
  .blog-item:hover,
  .feature-item:hover {
    transform: none;
  }
  
  .gallery-item:hover .gallery-img {
    transform: none;
  }
  
  /* Stack gallery items on mobile */
  .gallery-item {
    width: 100%;
    margin-right: 0;
  }
  
  /* Reduce padding for accordion */
  .accordion-button {
    padding: 1rem;
  }
  
  .accordion-body {
    padding: 1rem;
  }
  
  /* Footer adjustments */
  .footer-section {
    text-align: center;
  }
  
  .footer-links {
    margin-bottom: 2rem;
  }
}

/* Respect 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;
  }
  
  .about-feature:hover,
  .service-card:hover,
  .price-card:hover,
  .team-member:hover,
  .core-info-item:hover,
  .blog-item:hover,
  .feature-item:hover {
    transform: none;
  }
  
  .gallery-item:hover .gallery-img {
    transform: none;
  }
  
  .swiper-container {
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-inactive-color: var(--light-shade-2);
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
  }
} 