.efss-protected-badge {
    margin-top: 12px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.efss-protected-badge a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 20px !important;
    border-radius: 9999px !important;
    background: #1e293b !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    letter-spacing: 0.3px !important;
}

.efss-protected-badge a:hover {
    background: #0f172a !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(-1px) !important;
    color: #ffffff !important;
}

.efss-badge-icon {
    font-size: 16px !important;
    line-height: 1 !important;
    color: #ffffff !important;
}

.efss-badge-text {
    line-height: 1 !important;
    color: #ffffff !important;
}

/* Ensure badge appears below button */
.elementor-field-type-submit {
    position: relative;
}

/* Validation error messages */
.efss-validation-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 0;
    animation: slideIn 0.3s ease;
}

.efss-validation-error p {
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
    margin: 4px 0;
    line-height: 1.5;
}

.efss-validation-error p:first-child {
    margin-top: 0;
}

.efss-validation-error p:last-child {
    margin-bottom: 0;
}

/* Disabled submit button */
.elementor-button.efss-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
