/* Responsive CSS for Disability Appeal Accelerator */

/* Extra large devices (large desktops) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-content {
    max-width: 600px;
  }
}

/* Large devices (desktops) */
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
  
  .hero {
    min-height: 90vh;
  }
}

/* Medium devices (tablets) */
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
  
  .hero {
    min-height: 80vh;
    padding: 7rem 0;
  }
  
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
  }
  
  .mobile-toggle span {
    background-color: var(--primary-1);
    border-radius: 10px;
    height: 3px;
    margin: 3px 0;
    transition: .4s ease;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  .nav-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-menu li {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
  }
  
  .nav-menu a::after {
    display: none;
  }
  
  .contact-form-container {
    grid-template-columns: 1fr;
  }
  
  .services-grid,
  .features-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones) */
@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
  
  .hero {
    min-height: auto;
    padding: 6rem 0;
  }
  
  .hero-title, 
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero-subtitle, 
  .section-subtitle {
    font-size: 1.2rem;
  }
  
  .services-grid,
  .features-grid,
  .team-grid,
  .core-info-grid,
  .price-plans {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .review-card {
    padding: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Extra small devices (portrait phones) */
@media (max-width: 575.98px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }
  
  .hero {
    padding: 5rem 0;
  }
  
  .hero-title, 
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .hero-subtitle, 
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    gap: 2rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
  
  .services-checkbox-group {
    grid-template-columns: 1fr;
  }
}

/* Support for prefers-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;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0ms;
  }
} 