/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  .hero-grid,
  .opportunities-grid,
  .testimonials-grid,
  .footer-grid {
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: var(--spacing-lg) 0;
  }
  
  /* Nav Mobile */
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    transition: left 0.3s ease;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-actions {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  /* Grids */
  .hero-grid,
  .opportunities-grid,
  .testimonials-grid,
  .about-hero-grid,
  .about-mission-grid,
  .mv-grid,
  .values-grid,
  .about-features-grid,
  .jobs-grid,
  .res-cards-grid,
  .contact-layout,
  .features-grid,
  .hc-specialties-layout,
  .hc-specialties-list {
    grid-template-columns: 1fr !important;
  }
  
  .hero-image-wrapper {
    margin-top: 2rem;
  }
  
  .floating-badge {
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    justify-content: center;
  }
  
  .hero-btns {
    flex-direction: column;
  }
  
  .hero-btns .btn {
    width: 100%;
  }
  
  .stats-bar {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
