/* Responsive Styles */

/* Extra large devices (large desktops, 1200px and up) */
@media (max-width: 1399.98px) {
  .hero {
    min-height: 90vh;
  }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 1199.98px) {
  .section-title {
    font-size: 2.25rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .about-feature,
  .service-item,
  .feature-item,
  .price-item,
  .coreinfo-item {
    margin-bottom: 30px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .hero {
    min-height: auto;
    padding: 8rem 0 5rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-img {
    margin-top: 3rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  footer {
    padding: 3rem 0 2rem;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
  
  .review-item {
    margin-bottom: 30px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .blog-item {
    margin-bottom: 30px;
  }
}

/* Animation disabling for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  
  .fade-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .service-item:hover,
  .feature-item:hover,
  .price-item:hover,
  .about-feature:hover,
  .coreinfo-item:hover,
  .blog-item:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
  
  .swiper-container {
    --swiper-theme-color: var(--primary-1);
  }
  
  .swiper-pagination-bullet {
    opacity: 0.5;
  }
  
  .swiper-pagination-bullet-active {
    opacity: 1;
  }
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--neutral-100);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2890, 106, 207, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
} 