/* Responsive Breakpoints */

/* Laptop / Smaller Desktops */
@media (max-width: 1200px) {
  h1 { font-size: 2.5rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Tablet */
@media (max-width: 992px) {
  .two-col-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .three-col-layout.cards-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .hero-section {
    text-align: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .images-flow {
    margin-top: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    height: calc(100vh - 80px);
    width: 250px;
    flex-direction: column;
    background: var(--primary-blue);
    padding: 2rem;
    transition: 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: white;
    font-size: 1.2rem;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .contact-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .funds-bar-wrapper {
    flex-direction: column;
    height: 100px;
  }
  
  .fund-bar {
    width: 100% !important;
  }
  .bar-80 { height: 80%; }
  .bar-20 { height: 20%; }
  
  .quadrant-grid {
    grid-template-columns: 1fr;
  }
}

/* Very Small Mobile */
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .hero-cta { flex-direction: column; }
  .form-container { padding: 1.5rem; }
}
