/* Additional responsive styles for better mobile experience */

@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}

@media (max-width: 992px) {
  .hero-container {
    gap: 3rem;
  }
  
  .profile-img {
    width: 300px;
    height: 300px;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero {
    padding-top: calc(var(--navbar-height) + 2rem);
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .cert-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .page-header {
    padding: 4rem 0 3rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .hero-social {
    justify-content: center;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
  }
}
