/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* ---------- HEADER ---------- */
  .nav {
    flex-direction: row;
    height: 64px;
  }

  /* Hide desktop links */
  .desktop-nav {
    display: none;
  }

  /* Hamburger icon */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 26px;
    height: 3px;
    background: #0a2540;
    border-radius: 2px;
  }

  /* ---------- MOBILE MENU OVERLAY ---------- */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 2000;
    display: none;
    flex-direction: column;
    padding: 24px;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }

  .mobile-menu-header img {
    height: 40px;
  }

  .mobile-menu-header span {
    font-size: 2rem;
    cursor: pointer;
  }

  /* ---------- MOBILE LINKS ---------- */
  .mobile-links {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }

  .mobile-links a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a2540;
  }

  .mobile-links a.active {
    color: #1fb6aa;
  }

  /* ---------- SOCIAL ICONS ---------- */
  .mobile-socials {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 22px;
    padding-bottom: 20px;
  }

  .mobile-socials a {
    font-size: 1.5rem;
    color: #0a2540;
  }

  /* ---------- HERO ---------- */
  .hero h1 {
    font-size: 2rem;
  }

  /* ---------- SECTIONS ---------- */
  .section {
    padding: 60px 0;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

}
