/* Responsive CSS */

/* Large Devices (less than 1200px) */
@media (max-width: 1199.98px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .section-padding {
    padding: 80px 0;
  }
}

/* Medium Devices (less than 992px) */
@media (max-width: 991.98px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  h3 {
    font-size: 1.8rem;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .navbar-nav {
  flex-direction: row;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--light-1);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex-direction: column;
  }
  
  .navbar-nav.active {
    display: flex;
  }
  
  .nav-item {
    margin-left: 0;
    margin-bottom: 15px;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-title, .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-feature, 
  .services-item, 
  .team-member, 
  .priceplan-item,
  .blog-item {
    margin-bottom: 40px;
  }
}

/* Small Devices (less than 768px) */
@media (max-width: 767.98px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 80px;
  }
  
  .features-item {
    flex-direction: column;
  }
  
  .features-item-icon {
    margin-bottom: 20px;
    margin-right: 0;
  }
  
  .reviews-item {
    padding: 30px 20px;
  }
  
  .coreinfo-item {
    flex-direction: column;
  }
  
  .coreinfo-item-icon {
    margin-bottom: 20px;
    margin-right: 0;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .footer-content {
    text-align: center;
  }
  
  .footer-content [class*="col-"] {
    margin-bottom: 30px;
  }
  
  .footer-contact-item {
    justify-content: center;
  }
}

/* Extra Small Devices (less than 576px) */
@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .services-item,
  .priceplan-item,
  .reviews-item {
    padding: 25px 15px;
  }
}

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 