.toggle-nav p {
    display: none;
}

@media (max-width: 991px) {

    .toggle-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;

    }

    .toggle-nav p {
        margin: 0;
        display: block;
        color: white;
    }

    /* Base styling and shimmer background */
    .toggle-nav {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        position: relative;
        z-index: 1;
        color: white;
        padding: 10px 16px;
        cursor: pointer;
        overflow: hidden;
        border-radius: 4px;
        /* optional for a polished look */
    }

    /* Shimmer effect */
    .toggle-nav::before {
        content: "";
        position: absolute;
        top: 0;
        left: -150%;
        width: 200%;
        height: 100%;
        background: linear-gradient(120deg,
                transparent,
                rgba(255, 255, 255, 0.7),
                transparent);
        transform: skewX(-20deg);
        animation: shimmer 3s infinite;
        z-index: -1;
    }

    @keyframes shimmer {
        0% {
            left: -150%;
        }

        50% {
            left: 150%;
        }

        100% {
            left: 150%;
        }
    }

    /* Ensure <p> stays above shimmer */
    .toggle-nav p {
        margin: 0;
        position: relative;
        z-index: 2;
    }
}



#scroll-to-form {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%; /* Full window width */
    background: linear-gradient(90deg, #ff6700, #ff4500); /* Matches site gradient */
    color: white;
    padding: 12px 0;
    border: none;
    border-radius: 0; /* Fully rectangular */
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
}

#scroll-to-form:hover {
    background: linear-gradient(90deg, #ff4500, #ff6700); /* Reverse gradient on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Show button only on mobile (screen width <= 768px) */
@media (max-width: 768px) {
    #scroll-to-form {
        display: block;
    }
}