/* ============================================
   FIXPAY LANDING — Shared Base Styles
   (Topbar + Navbar + Footer)
   ============================================ */
:root {
    --fp-primary:   #d63384;
    --fp-secondary: #7b2cbf;
    --fp-dark:      #1a0533;
    --fp-dark2:     #3b0764;
    --fp-light:     #faf8ff;
    --fp-light2:    #f3eefe;
    --fp-border:    #ede8f8;
    --fp-grad:      linear-gradient(135deg, #d63384 0%, #7b2cbf 100%);
    --fp-grad-dark: linear-gradient(135deg, #1a0533 0%, #3b0764 60%, #1a0533 100%);
    --fp-shadow:    0 8px 32px rgba(214,51,132,0.22);
}
html, body { font-family: 'Poppins', sans-serif !important; overflow-x: hidden; background: #fff; color: #2d2d3f; }

/* ── TOP BAR ── */
.fp-topbar { background: var(--fp-dark); padding: 7px 0; border-bottom: 1px solid rgba(214,51,132,0.25); }
.fp-topbar-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.fp-topbar-contact a { color: rgba(255,255,255,.7); font-size: 12.5px; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.fp-topbar-contact a i { color: var(--fp-primary); }
.fp-topbar-contact a:hover { color: #fff; }
.fp-topbar-social { display: flex; justify-content: flex-end; gap: 8px; }
.fp-topbar-social a { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 7px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); font-size: 13px; text-decoration: none; transition: all .2s; }
.fp-topbar-social a:hover { background: var(--fp-grad); color: #fff; }

/* ── NAVBAR ── */
.fp-main-nav { background: var(--fp-grad-dark) !important; padding: 10px 0; box-shadow: 0 4px 24px rgba(0,0,0,.28); position: sticky; top: 0; z-index: 999; }
.fp-main-nav .navbar-brand img { height: 44px; }
.fp-main-nav .navbar-nav .nav-link { color: rgba(255,255,255,.82) !important; font-size: 14px; font-weight: 500; padding: 8px 16px !important; border-radius: 7px; transition: all .2s; }
.fp-main-nav .navbar-nav .nav-link:hover, .fp-main-nav .navbar-nav .nav-link.active { color: #fff !important; background: rgba(214,51,132,.18); }
.fp-auth-btns { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fp-btn-outline { color: #fff !important; border: 1.5px solid rgba(214,51,132,.55); padding: 7px 20px; border-radius: 8px; font-size: 13.5px; font-weight: 600; text-decoration: none; transition: all .2s; white-space: nowrap; }
.fp-btn-outline:hover { background: rgba(214,51,132,.18); border-color: var(--fp-primary); color: #fff !important; text-decoration: none; }
.fp-btn-solid { background: var(--fp-grad); color: #fff !important; padding: 7px 20px; border-radius: 8px; font-size: 13.5px; font-weight: 600; text-decoration: none; box-shadow: var(--fp-shadow); transition: all .2s; white-space: nowrap; }
.fp-btn-solid:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(214,51,132,.38); color: #fff !important; text-decoration: none; }
.fp-toggler { border: 1.5px solid rgba(214,51,132,.5) !important; background: none; padding: 6px 10px; border-radius: 7px; display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.fp-toggler span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.85); border-radius: 2px; }

/* ── FOOTER ── */
.fp-footer { background: var(--fp-dark); padding: 60px 0 40px; border-top: 1px solid rgba(214,51,132,.2); }
.fp-foot-logo { height: 46px; margin-bottom: 14px; }
.fp-foot-desc { color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.fp-footer-desc { color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.fp-foot-title { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; letter-spacing: .4px; }
.fp-foot-links { list-style: none; padding: 0; margin: 0; }
.fp-foot-links li { margin-bottom: 9px; }
.fp-foot-links li a { color: rgba(255,255,255,.52); font-size: 13px; text-decoration: none; transition: color .2s; }
.fp-foot-links li a:hover { color: var(--fp-primary); }
.fp-foot-contact { list-style: none; padding: 0; margin: 0 0 10px; }
.fp-foot-contact li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.52); font-size: 13px; margin-bottom: 10px; }
.fp-foot-contact li i { color: var(--fp-primary); margin-top: 2px; flex-shrink: 0; }
.fp-foot-contact li a { color: rgba(255,255,255,.52); text-decoration: none; transition: color .2s; }
.fp-foot-contact li a:hover { color: var(--fp-primary); }
.fp-foot-social { display: flex; gap: 8px; }
.fp-foot-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); font-size: 15px; text-decoration: none; transition: all .2s; }
.fp-foot-social a:hover { background: var(--fp-grad); color: #fff; transform: translateY(-2px); }
.fp-footer-bottom { background: rgba(0,0,0,.25); border-top: 1px solid rgba(255,255,255,.06); padding: 14px 0; text-align: center; }
.fp-footer-bottom p { color: rgba(255,255,255,.38); font-size: 12.5px; margin: 0; }

/* ── MOBILE ── */
@media (max-width: 991px) {
    .fp-main-nav .navbar-collapse { background: var(--fp-dark); padding: 14px 16px; border-radius: 0 0 12px 12px; margin-top: 8px; }
    .fp-auth-btns { padding: 10px 0 6px; }
    .fp-topbar { display: none; }
}
