/* Responsive Styles */

/* For devices with reduced motion preference */
@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: 999999s;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.25rem;
  }
  
  .section-title h2 {
    font-size: 2.25rem;
  }
  
  .about-feature, .coreinfo-item {
    padding: 1.5rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .about-feature, .service-card, .coreinfo-item {
    margin-bottom: 2rem;
  }
  
  .price-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
    min-height: 450px;
  }
  
  .hero-content {
    padding-top: 6rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .about-feature-icon, .coreinfo-item-icon {
    font-size: 2rem;
  }
  
  .about-feature h3, .coreinfo-item h3 {
    font-size: 1.25rem;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 1.75rem;
  }
  
  .service-card-img, .blog-card-img {
    height: 180px;
  }
  
  .footer {
    padding: 3rem 0 0;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .hero {
    min-height: 400px;
  }
  
  .hero-content {
    padding-top: 5rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-desc {
    font-size: 0.875rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .section-title p {
    font-size: 0.875rem;
  }
  
  .about-feature, .coreinfo-item {
    padding: 1.25rem;
  }
  
  .service-card-img, .blog-card-img {
    height: 160px;
  }
  
  .service-price {
    font-size: 0.875rem;
    padding: 0.4rem 1.25rem;
  }
  
  .price-card-header {
    padding: 2rem 1rem;
  }
  
  .price-card-price {
    font-size: 2.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer-widget h3 {
    font-size: 1.25rem;
  }
  
  .page-header {
    min-height: 250px;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
}

/* Fix for mobile nav */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid var(--color-neutral);
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
  
  .nav-link:after {
    display: none;
  }
} 