.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0;
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
}

/* Only show on mobile */
@media (min-width: 769px) {
    .sticky-bar {
        display: none !important;
    }
}

.sticky-btn {
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 8px;
}

.sticky-btn img.sticky-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.sticky-btn img.large-wa {
    width: 36px;
    height: 36px;
}

/* Circle mail button */
.mail-btn {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
}

.mail-btn i {
    font-size: 20px;
}

/* Popup form */
.sticky-form-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}
.sticky-form-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
}
.sticky-form-content h3 { margin-top: 0; }
.sticky-form-content input,
.sticky-form-content textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}
.sticky-form-content button {
    background: #0073e6;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.sticky-form-content .close {
    position: absolute;
    right: 10px; top: 10px;
    cursor: pointer;
    font-size: 18px;
}
