/* Extra Large Screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  :root {
    --fs-xl: 4rem;
    --fs-heading: 3rem;
    --fs-subheading: 2rem;
  }
}

/* Large Screens */
@media (max-width: 1199.98px) {
  :root {
    --fs-xl: 3rem;
    --fs-heading: 2.25rem;
    --fs-subheading: 1.5rem;
    --fs-medium: 1.125rem;
  }
  
  .hero-shape {
    width: 400px;
    height: 400px;
  }
}

/* Medium Screens */
@media (max-width: 991.98px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-lg: 2.5rem;
  }
  
  .navbar-toggler {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
  }
  
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: var(--spacing-lg);
    overflow-y: auto;
  }
  
  .navbar-collapse.show {
    right: 0;
  }
  
  .navbar-nav {
    flex-direction: column;
    margin-top: var(--spacing-lg);
  }
  
  .nav-item {
    margin-left: 0;
    margin-bottom: var(--spacing-sm);
  }
  
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .hero-content,
  .hero-image {
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  #hero .row {
    flex-direction: column-reverse;
  }
  
  .hero-image {
    margin-bottom: var(--spacing-lg);
  }
  
  .hero-shape {
    display: none;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Screens */
@media (max-width: 767.98px) {
  :root {
    --fs-xl: 2.5rem;
    --fs-heading: 2rem;
    --fs-subheading: 1.25rem;
    --spacing-xl: 3rem;
    --spacing-lg: 2rem;
  }
  
  section {
    padding: var(--spacing-lg) 0;
  }
  
  .about-features,
  .services-grid,
  .features-grid,
  .pricing-grid,
  .team-grid,
  .coreinfo-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .service-options {
    grid-template-columns: 1fr;
  }
  
  .pricing-item {
    margin-bottom: var(--spacing-md);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Disable autoplay and fancy animations for users that prefer reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
      transition: none;
    }
    
    .service-item:hover,
    .pricing-item:hover,
    .about-feature-item:hover,
    .team-member:hover,
    .blog-item:hover,
    .coreinfo-item:hover {
      transform: none;
    }
    
    .service-item:hover .service-image img,
    .team-member:hover .team-image img,
    .blog-item:hover .blog-image img,
    .gallery-item:hover img {
      transform: none;
    }
  }
}

/* Extra Small Screens */
@media (max-width: 575.98px) {
  :root {
    --fs-xl: 2.25rem;
    --fs-heading: 1.75rem;
    --fs-subheading: 1.25rem;
    --fs-medium: 1rem;
    --spacing-xl: 2.5rem;
    --spacing-lg: 1.5rem;
    --spacing-md: 1.25rem;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: var(--spacing-xs);
  }
  
  .contact-form-container {
    padding: var(--spacing-md);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
} 