/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  #hero-title-1 {
    font-size: 4rem;
  }
  
  #hero-subtitle-1 {
    font-size: 2rem;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  #hero-title-1 {
    font-size: 3.5rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1.8rem;
  }
  
  .service-img {
    height: 180px;
  }
  
  .team-img {
    height: 280px;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding: 60px 0;
  }
  
  #hero-title-1 {
    font-size: 3rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1.6rem;
  }
  
  .price-card.featured {
    transform: scale(1.03);
  }
  
  .price-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
  }
  
  .hero-section {
    padding-top: 120px;
    min-height: auto;
  }
  
  .info-number {
    font-size: 2.5rem;
  }
  
  .about-feature, .feature-card, .info-card {
    padding: 1.5rem;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  section {
    padding: 50px 0;
  }
  
  .hero-section {
    padding-top: 100px;
    min-height: auto;
    text-align: center;
  }
  
  #hero-title-1 {
    font-size: 2.5rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1.4rem;
  }
  
  #hero-desc-1 {
    font-size: 1rem;
    margin: 0 auto 2rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .about-feature, .feature-card, .service-card, 
  .price-card, .team-card, .blog-card, .info-card {
    margin-bottom: 20px;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .price-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .info-number {
    font-size: 2.2rem;
  }
  
  .about-feature, .feature-card, .info-card {
    padding: 1.5rem;
  }
  
  .contact-info {
    margin-top: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  section {
    padding: 40px 0;
  }
  
  .hero-section {
    padding-top: 80px;
    min-height: auto;
    text-align: center;
  }
  
  #hero-title-1 {
    font-size: 2rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1.2rem;
  }
  
  #hero-desc-1 {
    font-size: 1rem;
    margin: 0 auto 2rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-feature, .feature-card, .service-card, 
  .price-card, .team-card, .blog-card, .info-card {
    margin-bottom: 20px;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .price-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .service-img {
    height: 180px;
  }
  
  .team-img {
    height: 250px;
  }
  
  .info-number {
    font-size: 2rem;
  }
  
  .about-feature, .feature-card, .info-card {
    padding: 1.25rem;
  }
  
  .contact-info {
    margin-top: 2rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .review-card::before {
    font-size: 3rem;
  }
  
  /* Reduce padding for smaller screens */
  .service-body, .price-body, .team-body, .blog-body {
    padding: 1.25rem;
  }
  
  .accordion-button {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .accordion-body {
    padding: 1rem;
  }
}

/* Motion reduction preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0ms !important;
  }
  
  .service-card:hover, .team-card:hover, .blog-card:hover, 
  .about-feature:hover, .feature-card:hover, .price-card:hover,
  .info-card:hover, .gallery-img:hover {
    transform: none !important;
  }
  
  .service-card:hover .service-img img, 
  .team-card:hover .team-img img, 
  .blog-card:hover .blog-img img {
    transform: none !important;
  }
} 