document.addEventListener('DOMContentLoaded', () => { // Mobile menu toggle const mobileBtn = document.querySelector('.mobile'); const nav = document.querySelector('.nav'); if (mobileBtn && nav) { mobileBtn.addEventListener('click', () => { nav.classList.toggle('show-mobile'); }); } // Sticky shadow on scroll const header = document.querySelector('.site-header'); window.addEventListener('scroll', () => { if (window.scrollY > 10) { header.style.boxShadow = '0 10px 30px rgba(0,0,0,.06)'; } else { header.style.boxShadow = 'none'; } }); // Toast function toast(msg, ok = true) { const el = document.createElement('div'); el.textContent = msg; el.style.cssText = ` position:fixed;right:20px;bottom:20px;z-index:9999; padding:14px 18px;border-radius:12px;color:#fff; background:${ok ? '#14b8a6' : '#ef4444'}; box-shadow:0 20px 40px rgba(0,0,0,.18); font-weight:700; `; document.body.appendChild(el); setTimeout(() => el.remove(), 2800); } // AJAX forms document.querySelectorAll('form[data-ajax="true"]').forEach(form => { form.addEventListener('submit', async (e) => { e.preventDefault(); const btn = form.querySelector('button[type="submit"]'); const old = btn ? btn.innerHTML : ''; if (btn) { btn.disabled = true; btn.innerHTML = 'Please wait...'; } try { const fd = new FormData(form); const res = await fetch(form.action, { method: 'POST', body: fd, headers: { 'X-Requested-With': 'XMLHttpRequest' } }); const data = await res.json(); if (data.success) { toast(data.message || 'Success'); form.reset(); } else { toast(data.message || 'Something went wrong', false); } } catch (err) { toast('Network error', false); } if (btn) { btn.disabled = false; btn.innerHTML = old; } }); }); });
Your Privacy Matters

Privacy Policy

This Privacy Policy explains how SimbaCareUSA collects, uses, stores, and protects your information when you use our website and services.

Information We Collect

We may collect personal and non-personal information when you interact with our website.

  • Name and contact details
  • Email address
  • Messages or inquiries you send
  • Usage data, browser type, and device information
  • Cookies and analytics data

How We Use Information

Your information may be used to improve services, respond to inquiries, process requests, and enhance website performance.

  • Provide customer support
  • Improve user experience
  • Send updates or newsletters (if subscribed)
  • Maintain security and fraud prevention
  • Analyze traffic and engagement

Cookies & Tracking

We may use cookies and similar technologies to remember preferences, analyze traffic, and improve website functionality.

You can disable cookies through your browser settings, though some features may not function properly.

Third-Party Services

We may use trusted third-party providers such as analytics platforms, email tools, payment processors, or advertising partners.

These services may process information according to their own privacy policies.

Data Security

We use commercially reasonable safeguards to protect your information. However, no method of transmission or storage is completely secure.

Your Rights

Depending on your location, you may have rights regarding your personal information, including access, correction, deletion, or opting out of certain communications.

Children's Privacy

Our website is not intended for children under the age required by applicable law, and we do not knowingly collect personal information from children.

Policy Updates

We may update this Privacy Policy from time to time. Revised versions will be posted on this page with updated effective dates where appropriate.

Contact Us

If you have questions regarding this Privacy Policy or your data, please contact us through our contact page.

By using SimbaCareUSA, you acknowledge this Privacy Policy and consent to applicable data practices described here.

Need Help With Privacy Questions?

Our team is available to answer questions regarding data use and privacy practices.

Contact Us