/* Responsive CSS */

/* Extra Large Devices (Large Desktops) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large Devices (Desktops) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-title-1 {
    font-size: 3rem;
  }
  
  .service-image {
    height: 180px;
  }
  
  .team-image {
    height: 250px;
  }
}

/* Medium Devices (Tablets) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
  }
  
  .feature-card, 
  .service-card, 
  .team-card, 
  .blog-card,
  .price-card,
  .coreinfo-card {
    margin-bottom: 2rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .team-image {
    height: 220px;
  }
  
  .gallery-image {
    height: 200px;
  }
}

/* Small Devices (Mobile Landscape) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-section {
    padding: 6rem 0 3rem;
    text-align: center;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .hero-title-1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .section-desc {
    font-size: 0.95rem;
  }
  
  .feature-card, 
  .service-card, 
  .team-card, 
  .blog-card,
  .price-card,
  .coreinfo-card {
    margin-bottom: 2rem;
  }
  
  .review-slider .swiper-button-next,
  .review-slider .swiper-button-prev {
    display: none;
  }
  
  .gallery-image {
    height: 180px;
  }
  
  footer {
    text-align: center;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
}

/* Extra Small Devices (Mobile Portrait) */
@media (max-width: 575px) {
  .hero-section {
    padding: 6rem 0 3rem;
    text-align: center;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .hero-title-1 {
    font-size: 2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  .hero-desc-1 {
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section-desc {
    font-size: 0.9rem;
  }
  
  .feature-card, 
  .service-card, 
  .team-card, 
  .blog-card,
  .price-card,
  .coreinfo-card {
    margin-bottom: 1.5rem;
  }
  
  .review-slider .swiper-button-next,
  .review-slider .swiper-button-prev {
    display: none;
  }
  
  .gallery-image {
    height: 160px;
  }
  
  footer {
    text-align: center;
    padding: 3rem 0 1.5rem;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  /* Prevent landscape scrolling on smaller phones */
  @media (max-height: 500px) {
    .hero-section {
      min-height: auto;
      padding: 8rem 0 3rem;
    }
  }
}

/* Reduced Motion Preferences */
@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: 0;
  }
  
  .service-card:hover,
  .feature-card:hover,
  .team-card:hover,
  .blog-card:hover,
  .price-card:hover,
  .gallery-item:hover .gallery-image {
    transform: none;
  }
} 