/* ==============================
   RESPONSIVE DESIGN
   ============================== */

/* Tablets */
@media (max-width: 992px) {
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .auth-section {
    margin-top: 0.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .header-top {
    padding: 0.7rem 0;
    text-align: center;
  }

  .contact-info {
    justify-content: center;
  }

  .logo-section {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .brand-title {
    font-size: 1.2rem;
  }

  .brand-subtitle {
    font-size: 0.8rem;
  }

  .modern-nav-link {
    justify-content: center;
    margin: 0.3rem 0;
  }

  .footer-content {
    padding: 2rem 0;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .social-links {
    justify-content: center;
  }

  .footer-logos {
    justify-content: center;
    margin-top: 1rem;
  }

  .copyright-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}

/* Mobile Small */
@media (max-width: 576px) {
  .brand-title {
    font-size: 1.1rem;
  }

  .contact-item {
    padding: 0.8rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }
}
