/* =========================================================
   ===== SITE FX: START =====
   Site-wide visual effects: 3D tilt cards, custom cursor glow,
   animated gradient blobs, glow-border cards, magnetic buttons,
   scroll-reveal animation, animated counters.
   Safe to delete this file (and its <link>/<script> tags) to
   remove all "wow factor" effects without touching page content.
   ========================================================= */

/* ---------- Text selection color -----------------------------------
   The theme defines a subtle gray ::selection, but it wasn't reliably
   applying everywhere (some text, e.g. the footer address, was falling
   back to the browser's harsh default blue highlight). Redeclaring it
   here — after the theme CSS — guarantees a consistent, on-brand
   selection color across the whole site. */
::selection {
    background: rgba(91, 107, 255, 0.25) !important;
    color: #1b2240 !important;
}
::-moz-selection {
    background: rgba(91, 107, 255, 0.25) !important;
    color: #1b2240 !important;
}

/* ---------- Page load fade-in ---------- */
body {
    animation: fxPageFade 0.6s ease both;
}
@keyframes fxPageFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ---------- Custom cursor glow (desktop only) ---------- */
.fx-cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 420px;
    height: 420px;
    margin-left: -210px;
    margin-top: -210px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    background: radial-gradient(circle, rgba(91, 107, 255, 0.14) 0%, rgba(91, 107, 255, 0.06) 35%, transparent 70%);
    transform: translate(-9999px, -9999px);
    transition: transform 0.12s ease-out, opacity 0.3s ease;
    will-change: transform;
    opacity: 0;
}
.fx-cursor-glow.fx-active { opacity: 1; }

@media (max-width: 991px), (hover: none) {
    .fx-cursor-glow { display: none; }
}

/* ---------- 3D Tilt Cards ---------- */
.fx-tilt {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.15s ease-out, box-shadow 0.25s ease;
    will-change: transform;
}
.fx-tilt .fx-tilt-glare {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0) 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.fx-tilt:hover .fx-tilt-glare { opacity: 1; }
.fx-tilt:hover {
    box-shadow: 0 30px 60px -20px rgba(30, 40, 90, 0.35);
}

/* ---------- Glow-border cards ---------- */
.fx-glow-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
}
.fx-glow-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(from var(--fx-angle, 0deg), #5b6bff, #f43f5e, #5b6bff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    animation: fxSpinAngle 3.5s linear infinite paused;
}
.fx-glow-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}
@property --fx-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes fxSpinAngle {
    to { --fx-angle: 360deg; }
}

/* ---------- Floating animated gradient blobs (section backdrops) ---------- */
.fx-blob-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.fx-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    animation: fxFloat 14s ease-in-out infinite;
}
.fx-blob.b1 { width: 380px; height: 380px; top: -80px; left: -60px; background: #5b6bff; animation-delay: 0s; }
.fx-blob.b2 { width: 300px; height: 300px; bottom: -60px; right: -40px; background: #f43f5e; animation-delay: 2.5s; }
.fx-blob.b3 { width: 240px; height: 240px; top: 40%; left: 55%; background: #22c1a1; animation-delay: 5s; }
@keyframes fxFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(30px, -25px) scale(1.08); }
    66%      { transform: translate(-25px, 20px) scale(0.95); }
}
.fx-section-relative { position: relative; z-index: 1; }

/* ---------- Scroll reveal ---------- */
.fx-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.fx-reveal.fx-in {
    opacity: 1;
    transform: translateY(0);
}
.fx-reveal.fx-d1 { transition-delay: 0.08s; }
.fx-reveal.fx-d2 { transition-delay: 0.16s; }
.fx-reveal.fx-d3 { transition-delay: 0.24s; }
.fx-reveal.fx-d4 { transition-delay: 0.32s; }
.fx-reveal.fx-d5 { transition-delay: 0.40s; }
.fx-reveal.fx-d6 { transition-delay: 0.48s; }

/* ---------- Magnetic buttons ---------- */
.fx-magnetic {
    display: inline-block;
    transition: transform 0.18s ease-out;
    will-change: transform;
}

/* ---------- Animated stat counters ---------- */
.fx-stat {
    text-align: center;
}
.fx-stat .fx-stat-num {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #5b6bff, #f43f5e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: inline-block;
}
.fx-stat .fx-stat-lbl {
    margin-top: 8px;
    font-size: 14px;
    color: #69708a;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ---------- Gradient animated headline text ---------- */
.fx-gradient-text {
    background: linear-gradient(90deg, #5b6bff, #f43f5e, #5b6bff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fxGradientMove 6s linear infinite;
}
@keyframes fxGradientMove {
    to { background-position: 200% center; }
}

/* ---------- Feature icon boxes (About / Services pages) ---------- */
.fx-feature-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(135deg, #5b6bff, #7d8bff);
    box-shadow: 0 14px 30px -10px rgba(91,107,255,0.55);
    margin-bottom: 18px;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.fx-feature-card:hover .fx-feature-icon {
    transform: translateY(-6px) rotate(-6deg) scale(1.06);
}

/* ---------- Page hero banner (used on About / Services / Contact) ---------- */
.fx-page-hero {
    position: relative;
    padding: 160px 0 90px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(160deg, #0f1224 0%, #1c2154 55%, #2a1e5c 100%);
    color: #fff;
}
.fx-page-hero h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.fx-page-hero p {
    color: #c6cbf5;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.fx-breadcrumb {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    font-size: 13px;
    color: #9aa1e0;
    letter-spacing: 0.03em;
}
.fx-breadcrumb a { color: #fff; text-decoration: none; }
.fx-breadcrumb a:hover { text-decoration: underline; }

@media (max-width: 767px) {
    .fx-page-hero { padding: 130px 0 60px; }
    .fx-page-hero h1 { font-size: 30px; }
    .fx-cursor-glow { display: none; }
}

/* ---------- Mobile navigation (hamburger menu) -----------------------
   The base theme hides .custom-nav .nav-list entirely below 1150px
   width but never actually styles or wires up a working replacement
   toggle button, so mobile visitors had no way to open the nav at
   all. This builds a real one: a visible 3-bar hamburger icon that
   animates to an X, and a slide-down panel for the nav links. */
.fx-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: #f2f3ff;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    z-index: 20;
}
.fx-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #1b2240;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.fx-mobile-toggle.fx-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fx-mobile-toggle.fx-active span:nth-child(2) { opacity: 0; }
.fx-mobile-toggle.fx-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.fx-mobile-submenu { display: none; }
#mainNavList .fx-mobile-only-item { display: none !important; }

@media only screen and (max-width: 1150px) {
    .fx-mobile-toggle { display: flex; }

    #mainNavList {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        box-shadow: 0 20px 40px -12px rgba(15,18,40,0.18);
        border-radius: 0 0 16px 16px;
        padding: 10px 22px 20px;
        max-height: 75vh;
        overflow-y: auto;
    }
    #mainNavList.fx-mobile-open { display: flex; }
    #mainNavList li { width: 100%; }
    #mainNavList a.menu-links {
        display: block;
        line-height: 1.5 !important;
        padding: 14px 4px !important;
        border-bottom: 1px solid #f0f1fa;
    }
    #mainNavList .sbmenu .nx-dropdown { display: none !important; } /* hover flyout disabled on touch */
    #mainNavList li.sbmenu {
        display: block !important; /* theme sets this li to display:flex for desktop, which
                                       forces the Services link and submenu list onto one row */
    }
    #mainNavList .fx-mobile-submenu {
        display: block;
        list-style: none;
        margin: 0 0 6px;
        padding: 0 0 6px 14px;
        border-bottom: 1px solid #f0f1fa;
    }
    #mainNavList .fx-mobile-submenu li a {
        display: block;
        padding: 10px 4px;
        font-size: 13.5px;
        color: #69708a;
        text-decoration: none;
    }
    #mainNavList .fx-mobile-submenu li a:hover { color: #5b6bff; }
    #mainNavList .fx-mobile-only-item { display: block !important; }
}

/* ---------- Nav visibility fix -----------------------------------
   The base theme only gives the header a solid background after the
   page scrolls past 80px ("sticky" class), and dark nav text sits
   directly over dark hero backgrounds until then, making it
   unreadable. Force a permanent, always-visible header background
   and text so the nav never disappears, on every page. */
header.main-header {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 24px rgba(15, 18, 40, 0.08);
}
/* The theme sets .nav-list to display:flex but never explicitly
   removes the default <li> bullet marker, so some browsers still
   render a small dot/square before "Home" and other nav items. */
.custom-nav .nav-list,
.custom-nav .nav-list li {
    list-style: none;
}
header.main-header .custom-nav .nav-list li a.menu-links {
    color: #1b2240 !important;
}
header.main-header .custom-nav .nav-list li a.menu-links:hover,
header.main-header .custom-nav .nav-list li a.menu-links.active-lnk {
    color: #5b6bff !important;
}

/* ---------- Nav account / cart icons ---------- */
.fx-nav-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f2f3ff;
    color: #1b2240;
    font-size: 15px;
    margin-left: 8px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.fx-nav-icon:hover {
    background: #5b6bff;
    color: #fff;
    transform: translateY(-2px);
}
.fx-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #f43f5e;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    min-width: 17px;
    height: 17px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}
.fx-account-menu {
    position: relative;
}
.fx-account-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 50px -15px rgba(15,18,40,0.3);
    padding: 10px;
    min-width: 190px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 60;
}
.fx-account-menu:hover .fx-account-dropdown,
.fx-account-menu:focus-within .fx-account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.fx-account-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1b2240;
    text-decoration: none;
}
.fx-account-dropdown a:hover { background: #f2f3ff; color: #5b6bff; }

/* ---------- Auth forms (Login / Register) ---------- */
.fx-auth-card {
    background: #fff;
    border-radius: 22px;
    padding: 42px 38px;
    box-shadow: 0 25px 60px -20px rgba(20, 20, 60, 0.28);
    position: relative;
    overflow: hidden;
}
.fx-auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #5b6bff, #f43f5e, #5b6bff);
    background-size: 200% auto;
    animation: fxGradientMove 6s linear infinite;
}
.fx-auth-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: linear-gradient(135deg, #5b6bff, #7d8bff);
    box-shadow: 0 14px 30px -10px rgba(91,107,255,0.5);
}
.fx-auth-logo {
    height: 30px;
    margin-bottom: 18px;
    opacity: 0.9;
}
.fx-input-group {
    position: relative;
    margin-bottom: 16px;
}
.fx-input-group > i.fx-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa1c9;
    font-size: 14px;
    pointer-events: none;
    transition: color 0.2s ease;
}
.fx-input-group input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid #e7eaf3;
    border-radius: 12px;
    font-size: 14.5px;
    font-family: inherit;
    background: #fbfcff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
}
.fx-input-group input::placeholder { color: #a7adc9; }
.fx-input-group input:focus {
    outline: none;
    border-color: #5b6bff;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(91,107,255,0.12);
}
.fx-input-group:focus-within > i.fx-input-icon { color: #5b6bff; }
.fx-input-group input.fx-has-toggle { padding-right: 44px; }
.fx-password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    color: #9aa1c9;
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    line-height: 1;
}
.fx-password-toggle:hover { color: #5b6bff; }
.fx-field-hint {
    font-size: 12px;
    color: #9aa1c9;
    margin: -10px 0 16px 4px;
}
.fx-auth-divider {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f0f1fa;
    font-size: 13.5px;
    color: #69708a;
}
.fx-auth-divider a {
    color: #5b6bff;
    font-weight: 700;
    text-decoration: none;
}
.fx-auth-divider a:hover { text-decoration: underline; }
.fx-auth-error {
    background: #fdeaec;
    color: #e0435a;
    border: 1px solid #f6c3ca;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13.5px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ---------- Footer redesign ---------- */
/* The base theme leaves a large empty gap between the footer content
   (logo/contact/company/payment columns) and the copyright bar below
   it (80px bottom padding + 30px top padding = ~110px of dead space).
   Tighten both so the footer reads as one cohesive block. */
footer .footer-row2 {
    padding: 50px 0 30px !important;
}
footer .footer-brands {
    padding: 22px 0 !important;
}
footer {
    position: relative;
    overflow: hidden;
}
footer .footer-row2 {
    position: relative;
}
footer .footer-row2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5b6bff, #f43f5e, #22c1a1, #5b6bff);
    background-size: 300% auto;
    animation: fxGradientMove 8s linear infinite;
}
footer .ftr-brand-pp img { transition: transform 0.3s ease; }
footer .ftr-brand-pp img:hover { transform: scale(1.05) rotate(-2deg); }
footer h5 {
    position: relative;
    padding-bottom: 10px;
}
footer h5::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #5b6bff, #f43f5e);
    transition: width 0.3s ease;
}
footer .col-lg-3:hover h5::after { width: 54px; }
footer .footer-address-list.link-hover li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.25s ease, color 0.25s ease;
}
footer .footer-address-list.link-hover li a::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    color: #5b6bff;
}
footer .footer-address-list.link-hover li a:hover {
    color: #5b6bff;
    transform: translateX(4px);
}
footer .footer-address-list.link-hover li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}
footer .footer-address-list.ftr-details li {
    transition: transform 0.25s ease;
}
footer .footer-address-list.ftr-details li:hover {
    transform: translateX(4px);
}
footer .footer-address-list.ftr-details li span:first-child {
    transition: background 0.25s ease, transform 0.25s ease;
}
footer .footer-address-list.ftr-details li:hover span:first-child {
    background: linear-gradient(135deg, #5b6bff, #7d8bff);
    transform: scale(1.08);
}
footer .footer-social-media-icons a {
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.25s ease, color 0.25s ease;
}
footer .footer-social-media-icons a:hover {
    transform: translateY(-4px) scale(1.1);
    background: linear-gradient(135deg, #5b6bff, #f43f5e);
    color: #fff !important;
}
footer .col-lg-3 img[alt="Payment methods"] {
    transition: transform 0.3s ease, filter 0.3s ease;
}
footer .col-lg-3 img[alt="Payment methods"]:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 18px rgba(91,107,255,0.25));
}

/* ---------- Home page: Contact Us section ---------- */
.fx-home-contact { background: #fafbff; }
.fx-contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    height: 100%;
    border: 1px solid #eef0f8;
    box-shadow: 0 10px 30px -12px rgba(20,20,60,0.08);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.fx-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 46px -14px rgba(91,107,255,0.28);
    border-color: transparent;
}
.fx-contact-card .fx-feature-icon { margin: 0 auto 20px; }
.fx-contact-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: #172b43;
}
.fx-contact-card p,
.fx-contact-card p a {
    color: #6a6a8e;
    font-size: 15px;
    line-height: 24px;
    margin: 0;
}
.fx-contact-card p a:hover { color: #5b6bff; }
.fx-contact-card.fx-c2 .fx-feature-icon {
    background: linear-gradient(135deg, #f43f5e, #ff7a90);
    box-shadow: 0 14px 30px -10px rgba(244,63,94,0.45);
}
.fx-contact-card.fx-c3 .fx-feature-icon {
    background: linear-gradient(135deg, #22c1a1, #57ddc0);
    box-shadow: 0 14px 30px -10px rgba(34,193,161,0.45);
}

/* ---------- Fixed floating buttons: stacked bottom-right, scroll-to-top above WhatsApp ---------- */
.fx-float-stack {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.fx-scroll-top {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5b6bff, #7d8bff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow: 0 10px 26px -8px rgba(91,107,255,0.6);
    border: 0;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.25s ease;
}
.fx-scroll-top.fx-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.fx-scroll-top:hover {
    background: linear-gradient(135deg, #4756e6, #5b6bff);
    transform: translateY(-3px);
}

.fx-whatsapp-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 10px 30px -8px rgba(37,211,102,0.7);
    position: relative;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.fx-whatsapp-btn:hover {
    transform: scale(1.08);
    color: #fff;
}
.fx-whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    animation: fxWhatsappPulse 2.2s ease-out infinite;
    z-index: -1;
}
@keyframes fxWhatsappPulse {
    0%   { transform: scale(1);   opacity: 0.55; }
    100% { transform: scale(1.9); opacity: 0; }
}

@media (max-width: 767px) {
    .fx-float-stack { right: 14px; bottom: 14px; gap: 10px; }
    .fx-scroll-top { width: 40px; height: 40px; font-size: 15px; }
    .fx-whatsapp-btn { width: 46px; height: 46px; font-size: 21px; }
}
@media (prefers-reduced-motion: reduce) {
    .fx-whatsapp-btn::before { animation: none; }
}

.menu-links.active-lnk { position: relative; }
.menu-links.active-lnk::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

/* ---------- Respect reduced motion preference ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .fx-cursor-glow { display: none; }
}

/* ---------- Copy/selection deterrent (paired with protect.js) ---------- */
/* Disables text selection site-wide as a CSS-level backup to the JS
   listeners in protect.js. Inputs/textareas stay selectable so forms
   keep working normally. This is a deterrent, not real protection —
   view-source and DevTools' Network tab bypass it entirely. */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
input, textarea, [contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* ---------- Footer developer credit ---------- */
.ftr-dev-credit {
    color: #5b6bff !important;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease;
}
.ftr-dev-credit:hover {
    color: #f43f5e !important;
    text-decoration: underline;
}

/* =========================================================
   ===== SITE FX: END =====
   ========================================================= */
