/* ✅ FULLY MOBILE-OPTIMIZED CONTACT MODAL */
@media (max-width: 768px) {
  .cs-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999 !important;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .cs-modal.cs-active {
    display: flex !important;
  }

  .cs-modal_container {
    background: #fff;
    border-radius: 16px;
    width: 90% !important;
    max-width: 380px !important;
    padding: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
  }

  .cs-wallet_secton h2 {
    font-size: 18px !important;
    margin-bottom: 16px;
    color: #222;
  }

  .cs-wallet_secton ul {
    padding: 0;
    margin: 0 auto;
    list-style: none;
  }

  .cs-wallet_secton ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px !important;
    padding: 12px 16px !important;
    margin-bottom: 12px;
    background: #0b2e4c;
    color: #fff;
    border-radius: 10px !important;
    text-decoration: none;
  }

  .cs-close_modal {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 28px;
    height: 28px;
    font-size: 16px;
    background: #a04ca0;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }

  .cs-wallet_secton p {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
  }
}