

@media (max-width: 992px) {

 
  .completed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }


  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image img {
    max-height: 350px;
  }
  

  .hero-slide {
    height: 60vh;
  }
}



@media (max-width: 720px) {

  nav {
    position: relative;
  }

  #nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    padding: 14px;
    border-radius: 8px;
    position: absolute;
    right: 16px;
    top: 60px;
    width: 190px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
  }

  #nav-links.show {
    display: flex;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }

  .mobile-only {
    display: block;
  }

  .completed-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    height: 55vh;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .completed-img {
    height: 180px;
  }
}



@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .section {
    padding: 50px 0;
  }
}

@media (max-width: 720px) {

  .completed-grid,
  .cards-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .contact-phones .vinc-title,
  .contact-phones .vinc-phone {
    display: block;
  }

  .contact-phones strong:last-of-type,
  .contact-phones a[href^="mailto"] {
    display: block;
  }
}

